portfolio/database/ent/project_create.go
2024-05-19 17:04:15 +02:00

300 lines
8.1 KiB
Go

// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
"errors"
"fmt"
"portfolio/database/ent/project"
"portfolio/database/ent/team"
"portfolio/database/ent/user"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
)
// ProjectCreate is the builder for creating a Project entity.
type ProjectCreate struct {
config
mutation *ProjectMutation
hooks []Hook
}
// SetName sets the "name" field.
func (pc *ProjectCreate) SetName(s string) *ProjectCreate {
pc.mutation.SetName(s)
return pc
}
// SetDescription sets the "description" field.
func (pc *ProjectCreate) SetDescription(s string) *ProjectCreate {
pc.mutation.SetDescription(s)
return pc
}
// SetURL sets the "url" field.
func (pc *ProjectCreate) SetURL(s string) *ProjectCreate {
pc.mutation.SetURL(s)
return pc
}
// SetImageURL sets the "image_url" field.
func (pc *ProjectCreate) SetImageURL(s string) *ProjectCreate {
pc.mutation.SetImageURL(s)
return pc
}
// SetDocURL sets the "doc_url" field.
func (pc *ProjectCreate) SetDocURL(s string) *ProjectCreate {
pc.mutation.SetDocURL(s)
return pc
}
// AddUserIDs adds the "users" edge to the User entity by IDs.
func (pc *ProjectCreate) AddUserIDs(ids ...int) *ProjectCreate {
pc.mutation.AddUserIDs(ids...)
return pc
}
// AddUsers adds the "users" edges to the User entity.
func (pc *ProjectCreate) AddUsers(u ...*User) *ProjectCreate {
ids := make([]int, len(u))
for i := range u {
ids[i] = u[i].ID
}
return pc.AddUserIDs(ids...)
}
// AddTeamIDs adds the "teams" edge to the Team entity by IDs.
func (pc *ProjectCreate) AddTeamIDs(ids ...int) *ProjectCreate {
pc.mutation.AddTeamIDs(ids...)
return pc
}
// AddTeams adds the "teams" edges to the Team entity.
func (pc *ProjectCreate) AddTeams(t ...*Team) *ProjectCreate {
ids := make([]int, len(t))
for i := range t {
ids[i] = t[i].ID
}
return pc.AddTeamIDs(ids...)
}
// Mutation returns the ProjectMutation object of the builder.
func (pc *ProjectCreate) Mutation() *ProjectMutation {
return pc.mutation
}
// Save creates the Project in the database.
func (pc *ProjectCreate) Save(ctx context.Context) (*Project, error) {
return withHooks(ctx, pc.sqlSave, pc.mutation, pc.hooks)
}
// SaveX calls Save and panics if Save returns an error.
func (pc *ProjectCreate) SaveX(ctx context.Context) *Project {
v, err := pc.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (pc *ProjectCreate) Exec(ctx context.Context) error {
_, err := pc.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (pc *ProjectCreate) ExecX(ctx context.Context) {
if err := pc.Exec(ctx); err != nil {
panic(err)
}
}
// check runs all checks and user-defined validators on the builder.
func (pc *ProjectCreate) check() error {
if _, ok := pc.mutation.Name(); !ok {
return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "Project.name"`)}
}
if _, ok := pc.mutation.Description(); !ok {
return &ValidationError{Name: "description", err: errors.New(`ent: missing required field "Project.description"`)}
}
if _, ok := pc.mutation.URL(); !ok {
return &ValidationError{Name: "url", err: errors.New(`ent: missing required field "Project.url"`)}
}
if _, ok := pc.mutation.ImageURL(); !ok {
return &ValidationError{Name: "image_url", err: errors.New(`ent: missing required field "Project.image_url"`)}
}
if _, ok := pc.mutation.DocURL(); !ok {
return &ValidationError{Name: "doc_url", err: errors.New(`ent: missing required field "Project.doc_url"`)}
}
return nil
}
func (pc *ProjectCreate) sqlSave(ctx context.Context) (*Project, error) {
if err := pc.check(); err != nil {
return nil, err
}
_node, _spec := pc.createSpec()
if err := sqlgraph.CreateNode(ctx, pc.driver, _spec); err != nil {
if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return nil, err
}
id := _spec.ID.Value.(int64)
_node.ID = int(id)
pc.mutation.id = &_node.ID
pc.mutation.done = true
return _node, nil
}
func (pc *ProjectCreate) createSpec() (*Project, *sqlgraph.CreateSpec) {
var (
_node = &Project{config: pc.config}
_spec = sqlgraph.NewCreateSpec(project.Table, sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt))
)
if value, ok := pc.mutation.Name(); ok {
_spec.SetField(project.FieldName, field.TypeString, value)
_node.Name = value
}
if value, ok := pc.mutation.Description(); ok {
_spec.SetField(project.FieldDescription, field.TypeString, value)
_node.Description = value
}
if value, ok := pc.mutation.URL(); ok {
_spec.SetField(project.FieldURL, field.TypeString, value)
_node.URL = value
}
if value, ok := pc.mutation.ImageURL(); ok {
_spec.SetField(project.FieldImageURL, field.TypeString, value)
_node.ImageURL = value
}
if value, ok := pc.mutation.DocURL(); ok {
_spec.SetField(project.FieldDocURL, field.TypeString, value)
_node.DocURL = value
}
if nodes := pc.mutation.UsersIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2M,
Inverse: true,
Table: project.UsersTable,
Columns: project.UsersPrimaryKey,
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges = append(_spec.Edges, edge)
}
if nodes := pc.mutation.TeamsIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2M,
Inverse: true,
Table: project.TeamsTable,
Columns: project.TeamsPrimaryKey,
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt),
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges = append(_spec.Edges, edge)
}
return _node, _spec
}
// ProjectCreateBulk is the builder for creating many Project entities in bulk.
type ProjectCreateBulk struct {
config
err error
builders []*ProjectCreate
}
// Save creates the Project entities in the database.
func (pcb *ProjectCreateBulk) Save(ctx context.Context) ([]*Project, error) {
if pcb.err != nil {
return nil, pcb.err
}
specs := make([]*sqlgraph.CreateSpec, len(pcb.builders))
nodes := make([]*Project, len(pcb.builders))
mutators := make([]Mutator, len(pcb.builders))
for i := range pcb.builders {
func(i int, root context.Context) {
builder := pcb.builders[i]
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*ProjectMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
if err := builder.check(); err != nil {
return nil, err
}
builder.mutation = mutation
var err error
nodes[i], specs[i] = builder.createSpec()
if i < len(mutators)-1 {
_, err = mutators[i+1].Mutate(root, pcb.builders[i+1].mutation)
} else {
spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
// Invoke the actual operation on the latest mutation in the chain.
if err = sqlgraph.BatchCreate(ctx, pcb.driver, spec); err != nil {
if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
}
}
if err != nil {
return nil, err
}
mutation.id = &nodes[i].ID
if specs[i].ID.Value != nil {
id := specs[i].ID.Value.(int64)
nodes[i].ID = int(id)
}
mutation.done = true
return nodes[i], nil
})
for i := len(builder.hooks) - 1; i >= 0; i-- {
mut = builder.hooks[i](mut)
}
mutators[i] = mut
}(i, ctx)
}
if len(mutators) > 0 {
if _, err := mutators[0].Mutate(ctx, pcb.builders[0].mutation); err != nil {
return nil, err
}
}
return nodes, nil
}
// SaveX is like Save, but panics if an error occurs.
func (pcb *ProjectCreateBulk) SaveX(ctx context.Context) []*Project {
v, err := pcb.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (pcb *ProjectCreateBulk) Exec(ctx context.Context) error {
_, err := pcb.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (pcb *ProjectCreateBulk) ExecX(ctx context.Context) {
if err := pcb.Exec(ctx); err != nil {
panic(err)
}
}