mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
341 lines
8.3 KiB
Go
341 lines
8.3 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"
|
|
"fmt"
|
|
|
|
"github.com/facebookincubator/ent/dialect/sql"
|
|
"github.com/facebookincubator/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebookincubator/ent/examples/start/ent/group"
|
|
"github.com/facebookincubator/ent/examples/start/ent/predicate"
|
|
"github.com/facebookincubator/ent/examples/start/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{}
|
|
removedUsers map[int]struct{}
|
|
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...)
|
|
}
|
|
|
|
// 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...)
|
|
}
|
|
|
|
// 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 gu.name != nil {
|
|
if err := group.NameValidator(*gu.name); err != nil {
|
|
return 0, fmt.Errorf("ent: validator failed for field \"name\": %v", err)
|
|
}
|
|
}
|
|
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 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{}
|
|
removedUsers map[int]struct{}
|
|
}
|
|
|
|
// 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...)
|
|
}
|
|
|
|
// 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...)
|
|
}
|
|
|
|
// Save executes the query and returns the updated entity.
|
|
func (guo *GroupUpdateOne) Save(ctx context.Context) (*Group, error) {
|
|
if guo.name != nil {
|
|
if err := group.NameValidator(*guo.name); err != nil {
|
|
return nil, fmt.Errorf("ent: validator failed for field \"name\": %v", err)
|
|
}
|
|
}
|
|
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)
|
|
}
|
|
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
|
|
}
|