// Code generated by ent, DO NOT EDIT. package db import ( "context" "errors" "fmt" "time" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" "github.com/chaitin/MonkeyCode/backend/db/admin" "github.com/chaitin/MonkeyCode/backend/db/adminrole" "github.com/chaitin/MonkeyCode/backend/db/role" "github.com/google/uuid" ) // RoleCreate is the builder for creating a Role entity. type RoleCreate struct { config mutation *RoleMutation hooks []Hook conflict []sql.ConflictOption } // SetName sets the "name" field. func (rc *RoleCreate) SetName(s string) *RoleCreate { rc.mutation.SetName(s) return rc } // SetDescription sets the "description" field. func (rc *RoleCreate) SetDescription(s string) *RoleCreate { rc.mutation.SetDescription(s) return rc } // SetCreatedAt sets the "created_at" field. func (rc *RoleCreate) SetCreatedAt(t time.Time) *RoleCreate { rc.mutation.SetCreatedAt(t) return rc } // SetNillableCreatedAt sets the "created_at" field if the given value is not nil. func (rc *RoleCreate) SetNillableCreatedAt(t *time.Time) *RoleCreate { if t != nil { rc.SetCreatedAt(*t) } return rc } // SetID sets the "id" field. func (rc *RoleCreate) SetID(i int64) *RoleCreate { rc.mutation.SetID(i) return rc } // AddAdminIDs adds the "admins" edge to the Admin entity by IDs. func (rc *RoleCreate) AddAdminIDs(ids ...uuid.UUID) *RoleCreate { rc.mutation.AddAdminIDs(ids...) return rc } // AddAdmins adds the "admins" edges to the Admin entity. func (rc *RoleCreate) AddAdmins(a ...*Admin) *RoleCreate { ids := make([]uuid.UUID, len(a)) for i := range a { ids[i] = a[i].ID } return rc.AddAdminIDs(ids...) } // AddAdminRoleIDs adds the "admin_roles" edge to the AdminRole entity by IDs. func (rc *RoleCreate) AddAdminRoleIDs(ids ...uuid.UUID) *RoleCreate { rc.mutation.AddAdminRoleIDs(ids...) return rc } // AddAdminRoles adds the "admin_roles" edges to the AdminRole entity. func (rc *RoleCreate) AddAdminRoles(a ...*AdminRole) *RoleCreate { ids := make([]uuid.UUID, len(a)) for i := range a { ids[i] = a[i].ID } return rc.AddAdminRoleIDs(ids...) } // Mutation returns the RoleMutation object of the builder. func (rc *RoleCreate) Mutation() *RoleMutation { return rc.mutation } // Save creates the Role in the database. func (rc *RoleCreate) Save(ctx context.Context) (*Role, error) { rc.defaults() return withHooks(ctx, rc.sqlSave, rc.mutation, rc.hooks) } // SaveX calls Save and panics if Save returns an error. func (rc *RoleCreate) SaveX(ctx context.Context) *Role { v, err := rc.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (rc *RoleCreate) Exec(ctx context.Context) error { _, err := rc.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (rc *RoleCreate) ExecX(ctx context.Context) { if err := rc.Exec(ctx); err != nil { panic(err) } } // defaults sets the default values of the builder before save. func (rc *RoleCreate) defaults() { if _, ok := rc.mutation.CreatedAt(); !ok { v := role.DefaultCreatedAt() rc.mutation.SetCreatedAt(v) } } // check runs all checks and user-defined validators on the builder. func (rc *RoleCreate) check() error { if _, ok := rc.mutation.Name(); !ok { return &ValidationError{Name: "name", err: errors.New(`db: missing required field "Role.name"`)} } if _, ok := rc.mutation.Description(); !ok { return &ValidationError{Name: "description", err: errors.New(`db: missing required field "Role.description"`)} } if _, ok := rc.mutation.CreatedAt(); !ok { return &ValidationError{Name: "created_at", err: errors.New(`db: missing required field "Role.created_at"`)} } return nil } func (rc *RoleCreate) sqlSave(ctx context.Context) (*Role, error) { if err := rc.check(); err != nil { return nil, err } _node, _spec := rc.createSpec() if err := sqlgraph.CreateNode(ctx, rc.driver, _spec); err != nil { if sqlgraph.IsConstraintError(err) { err = &ConstraintError{msg: err.Error(), wrap: err} } return nil, err } if _spec.ID.Value != _node.ID { id := _spec.ID.Value.(int64) _node.ID = int64(id) } rc.mutation.id = &_node.ID rc.mutation.done = true return _node, nil } func (rc *RoleCreate) createSpec() (*Role, *sqlgraph.CreateSpec) { var ( _node = &Role{config: rc.config} _spec = sqlgraph.NewCreateSpec(role.Table, sqlgraph.NewFieldSpec(role.FieldID, field.TypeInt64)) ) _spec.OnConflict = rc.conflict if id, ok := rc.mutation.ID(); ok { _node.ID = id _spec.ID.Value = id } if value, ok := rc.mutation.Name(); ok { _spec.SetField(role.FieldName, field.TypeString, value) _node.Name = value } if value, ok := rc.mutation.Description(); ok { _spec.SetField(role.FieldDescription, field.TypeString, value) _node.Description = value } if value, ok := rc.mutation.CreatedAt(); ok { _spec.SetField(role.FieldCreatedAt, field.TypeTime, value) _node.CreatedAt = value } if nodes := rc.mutation.AdminsIDs(); len(nodes) > 0 { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2M, Inverse: false, Table: role.AdminsTable, Columns: role.AdminsPrimaryKey, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(admin.FieldID, field.TypeUUID), }, } for _, k := range nodes { edge.Target.Nodes = append(edge.Target.Nodes, k) } _spec.Edges = append(_spec.Edges, edge) } if nodes := rc.mutation.AdminRolesIDs(); len(nodes) > 0 { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.O2M, Inverse: true, Table: role.AdminRolesTable, Columns: []string{role.AdminRolesColumn}, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(adminrole.FieldID, field.TypeUUID), }, } for _, k := range nodes { edge.Target.Nodes = append(edge.Target.Nodes, k) } _spec.Edges = append(_spec.Edges, edge) } return _node, _spec } // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause // of the `INSERT` statement. For example: // // client.Role.Create(). // SetName(v). // OnConflict( // // Update the row with the new values // // the was proposed for insertion. // sql.ResolveWithNewValues(), // ). // // Override some of the fields with custom // // update values. // Update(func(u *ent.RoleUpsert) { // SetName(v+v). // }). // Exec(ctx) func (rc *RoleCreate) OnConflict(opts ...sql.ConflictOption) *RoleUpsertOne { rc.conflict = opts return &RoleUpsertOne{ create: rc, } } // OnConflictColumns calls `OnConflict` and configures the columns // as conflict target. Using this option is equivalent to using: // // client.Role.Create(). // OnConflict(sql.ConflictColumns(columns...)). // Exec(ctx) func (rc *RoleCreate) OnConflictColumns(columns ...string) *RoleUpsertOne { rc.conflict = append(rc.conflict, sql.ConflictColumns(columns...)) return &RoleUpsertOne{ create: rc, } } type ( // RoleUpsertOne is the builder for "upsert"-ing // one Role node. RoleUpsertOne struct { create *RoleCreate } // RoleUpsert is the "OnConflict" setter. RoleUpsert struct { *sql.UpdateSet } ) // SetName sets the "name" field. func (u *RoleUpsert) SetName(v string) *RoleUpsert { u.Set(role.FieldName, v) return u } // UpdateName sets the "name" field to the value that was provided on create. func (u *RoleUpsert) UpdateName() *RoleUpsert { u.SetExcluded(role.FieldName) return u } // SetDescription sets the "description" field. func (u *RoleUpsert) SetDescription(v string) *RoleUpsert { u.Set(role.FieldDescription, v) return u } // UpdateDescription sets the "description" field to the value that was provided on create. func (u *RoleUpsert) UpdateDescription() *RoleUpsert { u.SetExcluded(role.FieldDescription) return u } // SetCreatedAt sets the "created_at" field. func (u *RoleUpsert) SetCreatedAt(v time.Time) *RoleUpsert { u.Set(role.FieldCreatedAt, v) return u } // UpdateCreatedAt sets the "created_at" field to the value that was provided on create. func (u *RoleUpsert) UpdateCreatedAt() *RoleUpsert { u.SetExcluded(role.FieldCreatedAt) return u } // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field. // Using this option is equivalent to using: // // client.Role.Create(). // OnConflict( // sql.ResolveWithNewValues(), // sql.ResolveWith(func(u *sql.UpdateSet) { // u.SetIgnore(role.FieldID) // }), // ). // Exec(ctx) func (u *RoleUpsertOne) UpdateNewValues() *RoleUpsertOne { u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues()) u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) { if _, exists := u.create.mutation.ID(); exists { s.SetIgnore(role.FieldID) } })) return u } // Ignore sets each column to itself in case of conflict. // Using this option is equivalent to using: // // client.Role.Create(). // OnConflict(sql.ResolveWithIgnore()). // Exec(ctx) func (u *RoleUpsertOne) Ignore() *RoleUpsertOne { u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore()) return u } // DoNothing configures the conflict_action to `DO NOTHING`. // Supported only by SQLite and PostgreSQL. func (u *RoleUpsertOne) DoNothing() *RoleUpsertOne { u.create.conflict = append(u.create.conflict, sql.DoNothing()) return u } // Update allows overriding fields `UPDATE` values. See the RoleCreate.OnConflict // documentation for more info. func (u *RoleUpsertOne) Update(set func(*RoleUpsert)) *RoleUpsertOne { u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) { set(&RoleUpsert{UpdateSet: update}) })) return u } // SetName sets the "name" field. func (u *RoleUpsertOne) SetName(v string) *RoleUpsertOne { return u.Update(func(s *RoleUpsert) { s.SetName(v) }) } // UpdateName sets the "name" field to the value that was provided on create. func (u *RoleUpsertOne) UpdateName() *RoleUpsertOne { return u.Update(func(s *RoleUpsert) { s.UpdateName() }) } // SetDescription sets the "description" field. func (u *RoleUpsertOne) SetDescription(v string) *RoleUpsertOne { return u.Update(func(s *RoleUpsert) { s.SetDescription(v) }) } // UpdateDescription sets the "description" field to the value that was provided on create. func (u *RoleUpsertOne) UpdateDescription() *RoleUpsertOne { return u.Update(func(s *RoleUpsert) { s.UpdateDescription() }) } // SetCreatedAt sets the "created_at" field. func (u *RoleUpsertOne) SetCreatedAt(v time.Time) *RoleUpsertOne { return u.Update(func(s *RoleUpsert) { s.SetCreatedAt(v) }) } // UpdateCreatedAt sets the "created_at" field to the value that was provided on create. func (u *RoleUpsertOne) UpdateCreatedAt() *RoleUpsertOne { return u.Update(func(s *RoleUpsert) { s.UpdateCreatedAt() }) } // Exec executes the query. func (u *RoleUpsertOne) Exec(ctx context.Context) error { if len(u.create.conflict) == 0 { return errors.New("db: missing options for RoleCreate.OnConflict") } return u.create.Exec(ctx) } // ExecX is like Exec, but panics if an error occurs. func (u *RoleUpsertOne) ExecX(ctx context.Context) { if err := u.create.Exec(ctx); err != nil { panic(err) } } // Exec executes the UPSERT query and returns the inserted/updated ID. func (u *RoleUpsertOne) ID(ctx context.Context) (id int64, err error) { node, err := u.create.Save(ctx) if err != nil { return id, err } return node.ID, nil } // IDX is like ID, but panics if an error occurs. func (u *RoleUpsertOne) IDX(ctx context.Context) int64 { id, err := u.ID(ctx) if err != nil { panic(err) } return id } // RoleCreateBulk is the builder for creating many Role entities in bulk. type RoleCreateBulk struct { config err error builders []*RoleCreate conflict []sql.ConflictOption } // Save creates the Role entities in the database. func (rcb *RoleCreateBulk) Save(ctx context.Context) ([]*Role, error) { if rcb.err != nil { return nil, rcb.err } specs := make([]*sqlgraph.CreateSpec, len(rcb.builders)) nodes := make([]*Role, len(rcb.builders)) mutators := make([]Mutator, len(rcb.builders)) for i := range rcb.builders { func(i int, root context.Context) { builder := rcb.builders[i] builder.defaults() var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) { mutation, ok := m.(*RoleMutation) 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, rcb.builders[i+1].mutation) } else { spec := &sqlgraph.BatchCreateSpec{Nodes: specs} spec.OnConflict = rcb.conflict // Invoke the actual operation on the latest mutation in the chain. if err = sqlgraph.BatchCreate(ctx, rcb.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 && nodes[i].ID == 0 { id := specs[i].ID.Value.(int64) nodes[i].ID = int64(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, rcb.builders[0].mutation); err != nil { return nil, err } } return nodes, nil } // SaveX is like Save, but panics if an error occurs. func (rcb *RoleCreateBulk) SaveX(ctx context.Context) []*Role { v, err := rcb.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (rcb *RoleCreateBulk) Exec(ctx context.Context) error { _, err := rcb.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (rcb *RoleCreateBulk) ExecX(ctx context.Context) { if err := rcb.Exec(ctx); err != nil { panic(err) } } // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause // of the `INSERT` statement. For example: // // client.Role.CreateBulk(builders...). // OnConflict( // // Update the row with the new values // // the was proposed for insertion. // sql.ResolveWithNewValues(), // ). // // Override some of the fields with custom // // update values. // Update(func(u *ent.RoleUpsert) { // SetName(v+v). // }). // Exec(ctx) func (rcb *RoleCreateBulk) OnConflict(opts ...sql.ConflictOption) *RoleUpsertBulk { rcb.conflict = opts return &RoleUpsertBulk{ create: rcb, } } // OnConflictColumns calls `OnConflict` and configures the columns // as conflict target. Using this option is equivalent to using: // // client.Role.Create(). // OnConflict(sql.ConflictColumns(columns...)). // Exec(ctx) func (rcb *RoleCreateBulk) OnConflictColumns(columns ...string) *RoleUpsertBulk { rcb.conflict = append(rcb.conflict, sql.ConflictColumns(columns...)) return &RoleUpsertBulk{ create: rcb, } } // RoleUpsertBulk is the builder for "upsert"-ing // a bulk of Role nodes. type RoleUpsertBulk struct { create *RoleCreateBulk } // UpdateNewValues updates the mutable fields using the new values that // were set on create. Using this option is equivalent to using: // // client.Role.Create(). // OnConflict( // sql.ResolveWithNewValues(), // sql.ResolveWith(func(u *sql.UpdateSet) { // u.SetIgnore(role.FieldID) // }), // ). // Exec(ctx) func (u *RoleUpsertBulk) UpdateNewValues() *RoleUpsertBulk { u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues()) u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) { for _, b := range u.create.builders { if _, exists := b.mutation.ID(); exists { s.SetIgnore(role.FieldID) } } })) return u } // Ignore sets each column to itself in case of conflict. // Using this option is equivalent to using: // // client.Role.Create(). // OnConflict(sql.ResolveWithIgnore()). // Exec(ctx) func (u *RoleUpsertBulk) Ignore() *RoleUpsertBulk { u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore()) return u } // DoNothing configures the conflict_action to `DO NOTHING`. // Supported only by SQLite and PostgreSQL. func (u *RoleUpsertBulk) DoNothing() *RoleUpsertBulk { u.create.conflict = append(u.create.conflict, sql.DoNothing()) return u } // Update allows overriding fields `UPDATE` values. See the RoleCreateBulk.OnConflict // documentation for more info. func (u *RoleUpsertBulk) Update(set func(*RoleUpsert)) *RoleUpsertBulk { u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) { set(&RoleUpsert{UpdateSet: update}) })) return u } // SetName sets the "name" field. func (u *RoleUpsertBulk) SetName(v string) *RoleUpsertBulk { return u.Update(func(s *RoleUpsert) { s.SetName(v) }) } // UpdateName sets the "name" field to the value that was provided on create. func (u *RoleUpsertBulk) UpdateName() *RoleUpsertBulk { return u.Update(func(s *RoleUpsert) { s.UpdateName() }) } // SetDescription sets the "description" field. func (u *RoleUpsertBulk) SetDescription(v string) *RoleUpsertBulk { return u.Update(func(s *RoleUpsert) { s.SetDescription(v) }) } // UpdateDescription sets the "description" field to the value that was provided on create. func (u *RoleUpsertBulk) UpdateDescription() *RoleUpsertBulk { return u.Update(func(s *RoleUpsert) { s.UpdateDescription() }) } // SetCreatedAt sets the "created_at" field. func (u *RoleUpsertBulk) SetCreatedAt(v time.Time) *RoleUpsertBulk { return u.Update(func(s *RoleUpsert) { s.SetCreatedAt(v) }) } // UpdateCreatedAt sets the "created_at" field to the value that was provided on create. func (u *RoleUpsertBulk) UpdateCreatedAt() *RoleUpsertBulk { return u.Update(func(s *RoleUpsert) { s.UpdateCreatedAt() }) } // Exec executes the query. func (u *RoleUpsertBulk) Exec(ctx context.Context) error { if u.create.err != nil { return u.create.err } for i, b := range u.create.builders { if len(b.conflict) != 0 { return fmt.Errorf("db: OnConflict was set for builder %d. Set it on the RoleCreateBulk instead", i) } } if len(u.create.conflict) == 0 { return errors.New("db: missing options for RoleCreateBulk.OnConflict") } return u.create.Exec(ctx) } // ExecX is like Exec, but panics if an error occurs. func (u *RoleUpsertBulk) ExecX(ctx context.Context) { if err := u.create.Exec(ctx); err != nil { panic(err) } }