mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
467 lines
11 KiB
Go
467 lines
11 KiB
Go
// Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// Code generated by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/facebookincubator/ent/dialect/sql"
|
|
"github.com/facebookincubator/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebookincubator/ent/examples/traversal/ent/group"
|
|
"github.com/facebookincubator/ent/examples/traversal/ent/predicate"
|
|
"github.com/facebookincubator/ent/examples/traversal/ent/user"
|
|
"github.com/facebookincubator/ent/schema/field"
|
|
)
|
|
|
|
// GroupUpdate is the builder for updating Group entities.
|
|
type GroupUpdate struct {
|
|
config
|
|
name *string
|
|
users map[int]struct{}
|
|
admin map[int]struct{}
|
|
removedUsers map[int]struct{}
|
|
clearedAdmin bool
|
|
predicates []predicate.Group
|
|
}
|
|
|
|
// Where adds a new predicate for the builder.
|
|
func (gu *GroupUpdate) Where(ps ...predicate.Group) *GroupUpdate {
|
|
gu.predicates = append(gu.predicates, ps...)
|
|
return gu
|
|
}
|
|
|
|
// SetName sets the name field.
|
|
func (gu *GroupUpdate) SetName(s string) *GroupUpdate {
|
|
gu.name = &s
|
|
return gu
|
|
}
|
|
|
|
// AddUserIDs adds the users edge to User by ids.
|
|
func (gu *GroupUpdate) AddUserIDs(ids ...int) *GroupUpdate {
|
|
if gu.users == nil {
|
|
gu.users = make(map[int]struct{})
|
|
}
|
|
for i := range ids {
|
|
gu.users[ids[i]] = struct{}{}
|
|
}
|
|
return gu
|
|
}
|
|
|
|
// AddUsers adds the users edges to User.
|
|
func (gu *GroupUpdate) AddUsers(u ...*User) *GroupUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return gu.AddUserIDs(ids...)
|
|
}
|
|
|
|
// SetAdminID sets the admin edge to User by id.
|
|
func (gu *GroupUpdate) SetAdminID(id int) *GroupUpdate {
|
|
if gu.admin == nil {
|
|
gu.admin = make(map[int]struct{})
|
|
}
|
|
gu.admin[id] = struct{}{}
|
|
return gu
|
|
}
|
|
|
|
// SetNillableAdminID sets the admin edge to User by id if the given value is not nil.
|
|
func (gu *GroupUpdate) SetNillableAdminID(id *int) *GroupUpdate {
|
|
if id != nil {
|
|
gu = gu.SetAdminID(*id)
|
|
}
|
|
return gu
|
|
}
|
|
|
|
// SetAdmin sets the admin edge to User.
|
|
func (gu *GroupUpdate) SetAdmin(u *User) *GroupUpdate {
|
|
return gu.SetAdminID(u.ID)
|
|
}
|
|
|
|
// RemoveUserIDs removes the users edge to User by ids.
|
|
func (gu *GroupUpdate) RemoveUserIDs(ids ...int) *GroupUpdate {
|
|
if gu.removedUsers == nil {
|
|
gu.removedUsers = make(map[int]struct{})
|
|
}
|
|
for i := range ids {
|
|
gu.removedUsers[ids[i]] = struct{}{}
|
|
}
|
|
return gu
|
|
}
|
|
|
|
// RemoveUsers removes users edges to User.
|
|
func (gu *GroupUpdate) RemoveUsers(u ...*User) *GroupUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return gu.RemoveUserIDs(ids...)
|
|
}
|
|
|
|
// ClearAdmin clears the admin edge to User.
|
|
func (gu *GroupUpdate) ClearAdmin() *GroupUpdate {
|
|
gu.clearedAdmin = true
|
|
return gu
|
|
}
|
|
|
|
// Save executes the query and returns the number of rows/vertices matched by this operation.
|
|
func (gu *GroupUpdate) Save(ctx context.Context) (int, error) {
|
|
if len(gu.admin) > 1 {
|
|
return 0, errors.New("ent: multiple assignments on a unique edge \"admin\"")
|
|
}
|
|
return gu.sqlSave(ctx)
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (gu *GroupUpdate) SaveX(ctx context.Context) int {
|
|
affected, err := gu.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return affected
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (gu *GroupUpdate) Exec(ctx context.Context) error {
|
|
_, err := gu.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (gu *GroupUpdate) ExecX(ctx context.Context) {
|
|
if err := gu.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (gu *GroupUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
|
spec := &sqlgraph.UpdateSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: group.Table,
|
|
Columns: group.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: group.FieldID,
|
|
},
|
|
},
|
|
}
|
|
if ps := gu.predicates; len(ps) > 0 {
|
|
spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value := gu.name; value != nil {
|
|
spec.Fields.Set = append(spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: *value,
|
|
Column: group.FieldName,
|
|
})
|
|
}
|
|
if nodes := gu.removedUsers; len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: group.UsersTable,
|
|
Columns: group.UsersPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for k, _ := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
spec.Edges.Clear = append(spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := gu.users; len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: group.UsersTable,
|
|
Columns: group.UsersPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for k, _ := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
spec.Edges.Add = append(spec.Edges.Add, edge)
|
|
}
|
|
if gu.clearedAdmin {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: false,
|
|
Table: group.AdminTable,
|
|
Columns: []string{group.AdminColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
spec.Edges.Clear = append(spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := gu.admin; len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: false,
|
|
Table: group.AdminTable,
|
|
Columns: []string{group.AdminColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for k, _ := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
spec.Edges.Add = append(spec.Edges.Add, edge)
|
|
}
|
|
if n, err = sqlgraph.UpdateNodes(ctx, gu.driver, spec); err != nil {
|
|
if cerr, ok := isSQLConstraintError(err); ok {
|
|
err = cerr
|
|
}
|
|
return 0, err
|
|
}
|
|
return n, nil
|
|
}
|
|
|
|
// GroupUpdateOne is the builder for updating a single Group entity.
|
|
type GroupUpdateOne struct {
|
|
config
|
|
id int
|
|
name *string
|
|
users map[int]struct{}
|
|
admin map[int]struct{}
|
|
removedUsers map[int]struct{}
|
|
clearedAdmin bool
|
|
}
|
|
|
|
// SetName sets the name field.
|
|
func (guo *GroupUpdateOne) SetName(s string) *GroupUpdateOne {
|
|
guo.name = &s
|
|
return guo
|
|
}
|
|
|
|
// AddUserIDs adds the users edge to User by ids.
|
|
func (guo *GroupUpdateOne) AddUserIDs(ids ...int) *GroupUpdateOne {
|
|
if guo.users == nil {
|
|
guo.users = make(map[int]struct{})
|
|
}
|
|
for i := range ids {
|
|
guo.users[ids[i]] = struct{}{}
|
|
}
|
|
return guo
|
|
}
|
|
|
|
// AddUsers adds the users edges to User.
|
|
func (guo *GroupUpdateOne) AddUsers(u ...*User) *GroupUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return guo.AddUserIDs(ids...)
|
|
}
|
|
|
|
// SetAdminID sets the admin edge to User by id.
|
|
func (guo *GroupUpdateOne) SetAdminID(id int) *GroupUpdateOne {
|
|
if guo.admin == nil {
|
|
guo.admin = make(map[int]struct{})
|
|
}
|
|
guo.admin[id] = struct{}{}
|
|
return guo
|
|
}
|
|
|
|
// SetNillableAdminID sets the admin edge to User by id if the given value is not nil.
|
|
func (guo *GroupUpdateOne) SetNillableAdminID(id *int) *GroupUpdateOne {
|
|
if id != nil {
|
|
guo = guo.SetAdminID(*id)
|
|
}
|
|
return guo
|
|
}
|
|
|
|
// SetAdmin sets the admin edge to User.
|
|
func (guo *GroupUpdateOne) SetAdmin(u *User) *GroupUpdateOne {
|
|
return guo.SetAdminID(u.ID)
|
|
}
|
|
|
|
// RemoveUserIDs removes the users edge to User by ids.
|
|
func (guo *GroupUpdateOne) RemoveUserIDs(ids ...int) *GroupUpdateOne {
|
|
if guo.removedUsers == nil {
|
|
guo.removedUsers = make(map[int]struct{})
|
|
}
|
|
for i := range ids {
|
|
guo.removedUsers[ids[i]] = struct{}{}
|
|
}
|
|
return guo
|
|
}
|
|
|
|
// RemoveUsers removes users edges to User.
|
|
func (guo *GroupUpdateOne) RemoveUsers(u ...*User) *GroupUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return guo.RemoveUserIDs(ids...)
|
|
}
|
|
|
|
// ClearAdmin clears the admin edge to User.
|
|
func (guo *GroupUpdateOne) ClearAdmin() *GroupUpdateOne {
|
|
guo.clearedAdmin = true
|
|
return guo
|
|
}
|
|
|
|
// Save executes the query and returns the updated entity.
|
|
func (guo *GroupUpdateOne) Save(ctx context.Context) (*Group, error) {
|
|
if len(guo.admin) > 1 {
|
|
return nil, errors.New("ent: multiple assignments on a unique edge \"admin\"")
|
|
}
|
|
return guo.sqlSave(ctx)
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (guo *GroupUpdateOne) SaveX(ctx context.Context) *Group {
|
|
gr, err := guo.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return gr
|
|
}
|
|
|
|
// Exec executes the query on the entity.
|
|
func (guo *GroupUpdateOne) Exec(ctx context.Context) error {
|
|
_, err := guo.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (guo *GroupUpdateOne) ExecX(ctx context.Context) {
|
|
if err := guo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (guo *GroupUpdateOne) sqlSave(ctx context.Context) (gr *Group, err error) {
|
|
spec := &sqlgraph.UpdateSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: group.Table,
|
|
Columns: group.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Value: guo.id,
|
|
Type: field.TypeInt,
|
|
Column: group.FieldID,
|
|
},
|
|
},
|
|
}
|
|
if value := guo.name; value != nil {
|
|
spec.Fields.Set = append(spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: *value,
|
|
Column: group.FieldName,
|
|
})
|
|
}
|
|
if nodes := guo.removedUsers; len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: group.UsersTable,
|
|
Columns: group.UsersPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for k, _ := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
spec.Edges.Clear = append(spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := guo.users; len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: group.UsersTable,
|
|
Columns: group.UsersPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for k, _ := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
spec.Edges.Add = append(spec.Edges.Add, edge)
|
|
}
|
|
if guo.clearedAdmin {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: false,
|
|
Table: group.AdminTable,
|
|
Columns: []string{group.AdminColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
spec.Edges.Clear = append(spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := guo.admin; len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: false,
|
|
Table: group.AdminTable,
|
|
Columns: []string{group.AdminColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for k, _ := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
spec.Edges.Add = append(spec.Edges.Add, edge)
|
|
}
|
|
gr = &Group{config: guo.config}
|
|
spec.Assign = gr.assignValues
|
|
spec.ScanValues = gr.scanValues()
|
|
if err = sqlgraph.UpdateNode(ctx, guo.driver, spec); err != nil {
|
|
if cerr, ok := isSQLConstraintError(err); ok {
|
|
err = cerr
|
|
}
|
|
return nil, err
|
|
}
|
|
return gr, nil
|
|
}
|