mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
2670 lines
70 KiB
Go
2670 lines
70 KiB
Go
// Copyright 2019-present Facebook Inc. 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"
|
|
"fmt"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/entc/integration/ent/card"
|
|
"entgo.io/ent/entc/integration/ent/file"
|
|
"entgo.io/ent/entc/integration/ent/group"
|
|
"entgo.io/ent/entc/integration/ent/pet"
|
|
"entgo.io/ent/entc/integration/ent/predicate"
|
|
"entgo.io/ent/entc/integration/ent/user"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// UserUpdate is the builder for updating User entities.
|
|
type UserUpdate struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *UserMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the UserUpdate builder.
|
|
func (uu *UserUpdate) Where(ps ...predicate.User) *UserUpdate {
|
|
uu.mutation.Where(ps...)
|
|
return uu
|
|
}
|
|
|
|
// SetOptionalInt sets the "optional_int" field.
|
|
func (uu *UserUpdate) SetOptionalInt(i int) *UserUpdate {
|
|
uu.mutation.ResetOptionalInt()
|
|
uu.mutation.SetOptionalInt(i)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableOptionalInt sets the "optional_int" field if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableOptionalInt(i *int) *UserUpdate {
|
|
if i != nil {
|
|
uu.SetOptionalInt(*i)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// AddOptionalInt adds i to the "optional_int" field.
|
|
func (uu *UserUpdate) AddOptionalInt(i int) *UserUpdate {
|
|
uu.mutation.AddOptionalInt(i)
|
|
return uu
|
|
}
|
|
|
|
// ClearOptionalInt clears the value of the "optional_int" field.
|
|
func (uu *UserUpdate) ClearOptionalInt() *UserUpdate {
|
|
uu.mutation.ClearOptionalInt()
|
|
return uu
|
|
}
|
|
|
|
// SetAge sets the "age" field.
|
|
func (uu *UserUpdate) SetAge(i int) *UserUpdate {
|
|
uu.mutation.ResetAge()
|
|
uu.mutation.SetAge(i)
|
|
return uu
|
|
}
|
|
|
|
// AddAge adds i to the "age" field.
|
|
func (uu *UserUpdate) AddAge(i int) *UserUpdate {
|
|
uu.mutation.AddAge(i)
|
|
return uu
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (uu *UserUpdate) SetName(s string) *UserUpdate {
|
|
uu.mutation.SetName(s)
|
|
return uu
|
|
}
|
|
|
|
// SetLast sets the "last" field.
|
|
func (uu *UserUpdate) SetLast(s string) *UserUpdate {
|
|
uu.mutation.SetLast(s)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableLast sets the "last" field if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableLast(s *string) *UserUpdate {
|
|
if s != nil {
|
|
uu.SetLast(*s)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// SetNickname sets the "nickname" field.
|
|
func (uu *UserUpdate) SetNickname(s string) *UserUpdate {
|
|
uu.mutation.SetNickname(s)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableNickname sets the "nickname" field if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableNickname(s *string) *UserUpdate {
|
|
if s != nil {
|
|
uu.SetNickname(*s)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// ClearNickname clears the value of the "nickname" field.
|
|
func (uu *UserUpdate) ClearNickname() *UserUpdate {
|
|
uu.mutation.ClearNickname()
|
|
return uu
|
|
}
|
|
|
|
// SetAddress sets the "address" field.
|
|
func (uu *UserUpdate) SetAddress(s string) *UserUpdate {
|
|
uu.mutation.SetAddress(s)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableAddress sets the "address" field if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableAddress(s *string) *UserUpdate {
|
|
if s != nil {
|
|
uu.SetAddress(*s)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// ClearAddress clears the value of the "address" field.
|
|
func (uu *UserUpdate) ClearAddress() *UserUpdate {
|
|
uu.mutation.ClearAddress()
|
|
return uu
|
|
}
|
|
|
|
// SetPhone sets the "phone" field.
|
|
func (uu *UserUpdate) SetPhone(s string) *UserUpdate {
|
|
uu.mutation.SetPhone(s)
|
|
return uu
|
|
}
|
|
|
|
// SetNillablePhone sets the "phone" field if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillablePhone(s *string) *UserUpdate {
|
|
if s != nil {
|
|
uu.SetPhone(*s)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// ClearPhone clears the value of the "phone" field.
|
|
func (uu *UserUpdate) ClearPhone() *UserUpdate {
|
|
uu.mutation.ClearPhone()
|
|
return uu
|
|
}
|
|
|
|
// SetPassword sets the "password" field.
|
|
func (uu *UserUpdate) SetPassword(s string) *UserUpdate {
|
|
uu.mutation.SetPassword(s)
|
|
return uu
|
|
}
|
|
|
|
// SetNillablePassword sets the "password" field if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillablePassword(s *string) *UserUpdate {
|
|
if s != nil {
|
|
uu.SetPassword(*s)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// ClearPassword clears the value of the "password" field.
|
|
func (uu *UserUpdate) ClearPassword() *UserUpdate {
|
|
uu.mutation.ClearPassword()
|
|
return uu
|
|
}
|
|
|
|
// SetRole sets the "role" field.
|
|
func (uu *UserUpdate) SetRole(u user.Role) *UserUpdate {
|
|
uu.mutation.SetRole(u)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableRole sets the "role" field if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableRole(u *user.Role) *UserUpdate {
|
|
if u != nil {
|
|
uu.SetRole(*u)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// SetEmployment sets the "employment" field.
|
|
func (uu *UserUpdate) SetEmployment(u user.Employment) *UserUpdate {
|
|
uu.mutation.SetEmployment(u)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableEmployment sets the "employment" field if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableEmployment(u *user.Employment) *UserUpdate {
|
|
if u != nil {
|
|
uu.SetEmployment(*u)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// SetSSOCert sets the "SSOCert" field.
|
|
func (uu *UserUpdate) SetSSOCert(s string) *UserUpdate {
|
|
uu.mutation.SetSSOCert(s)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableSSOCert sets the "SSOCert" field if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableSSOCert(s *string) *UserUpdate {
|
|
if s != nil {
|
|
uu.SetSSOCert(*s)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// ClearSSOCert clears the value of the "SSOCert" field.
|
|
func (uu *UserUpdate) ClearSSOCert() *UserUpdate {
|
|
uu.mutation.ClearSSOCert()
|
|
return uu
|
|
}
|
|
|
|
// SetCardID sets the "card" edge to the Card entity by ID.
|
|
func (uu *UserUpdate) SetCardID(id int) *UserUpdate {
|
|
uu.mutation.SetCardID(id)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableCardID sets the "card" edge to the Card entity by ID if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableCardID(id *int) *UserUpdate {
|
|
if id != nil {
|
|
uu = uu.SetCardID(*id)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// SetCard sets the "card" edge to the Card entity.
|
|
func (uu *UserUpdate) SetCard(c *Card) *UserUpdate {
|
|
return uu.SetCardID(c.ID)
|
|
}
|
|
|
|
// AddPetIDs adds the "pets" edge to the Pet entity by IDs.
|
|
func (uu *UserUpdate) AddPetIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.AddPetIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// AddPets adds the "pets" edges to the Pet entity.
|
|
func (uu *UserUpdate) AddPets(p ...*Pet) *UserUpdate {
|
|
ids := make([]int, len(p))
|
|
for i := range p {
|
|
ids[i] = p[i].ID
|
|
}
|
|
return uu.AddPetIDs(ids...)
|
|
}
|
|
|
|
// AddFileIDs adds the "files" edge to the File entity by IDs.
|
|
func (uu *UserUpdate) AddFileIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.AddFileIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// AddFiles adds the "files" edges to the File entity.
|
|
func (uu *UserUpdate) AddFiles(f ...*File) *UserUpdate {
|
|
ids := make([]int, len(f))
|
|
for i := range f {
|
|
ids[i] = f[i].ID
|
|
}
|
|
return uu.AddFileIDs(ids...)
|
|
}
|
|
|
|
// AddGroupIDs adds the "groups" edge to the Group entity by IDs.
|
|
func (uu *UserUpdate) AddGroupIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.AddGroupIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// AddGroups adds the "groups" edges to the Group entity.
|
|
func (uu *UserUpdate) AddGroups(g ...*Group) *UserUpdate {
|
|
ids := make([]int, len(g))
|
|
for i := range g {
|
|
ids[i] = g[i].ID
|
|
}
|
|
return uu.AddGroupIDs(ids...)
|
|
}
|
|
|
|
// AddFriendIDs adds the "friends" edge to the User entity by IDs.
|
|
func (uu *UserUpdate) AddFriendIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.AddFriendIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// AddFriends adds the "friends" edges to the User entity.
|
|
func (uu *UserUpdate) AddFriends(u ...*User) *UserUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uu.AddFriendIDs(ids...)
|
|
}
|
|
|
|
// AddFollowerIDs adds the "followers" edge to the User entity by IDs.
|
|
func (uu *UserUpdate) AddFollowerIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.AddFollowerIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// AddFollowers adds the "followers" edges to the User entity.
|
|
func (uu *UserUpdate) AddFollowers(u ...*User) *UserUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uu.AddFollowerIDs(ids...)
|
|
}
|
|
|
|
// AddFollowingIDs adds the "following" edge to the User entity by IDs.
|
|
func (uu *UserUpdate) AddFollowingIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.AddFollowingIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// AddFollowing adds the "following" edges to the User entity.
|
|
func (uu *UserUpdate) AddFollowing(u ...*User) *UserUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uu.AddFollowingIDs(ids...)
|
|
}
|
|
|
|
// SetTeamID sets the "team" edge to the Pet entity by ID.
|
|
func (uu *UserUpdate) SetTeamID(id int) *UserUpdate {
|
|
uu.mutation.SetTeamID(id)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableTeamID sets the "team" edge to the Pet entity by ID if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableTeamID(id *int) *UserUpdate {
|
|
if id != nil {
|
|
uu = uu.SetTeamID(*id)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// SetTeam sets the "team" edge to the Pet entity.
|
|
func (uu *UserUpdate) SetTeam(p *Pet) *UserUpdate {
|
|
return uu.SetTeamID(p.ID)
|
|
}
|
|
|
|
// SetSpouseID sets the "spouse" edge to the User entity by ID.
|
|
func (uu *UserUpdate) SetSpouseID(id int) *UserUpdate {
|
|
uu.mutation.SetSpouseID(id)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableSpouseID sets the "spouse" edge to the User entity by ID if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableSpouseID(id *int) *UserUpdate {
|
|
if id != nil {
|
|
uu = uu.SetSpouseID(*id)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// SetSpouse sets the "spouse" edge to the User entity.
|
|
func (uu *UserUpdate) SetSpouse(u *User) *UserUpdate {
|
|
return uu.SetSpouseID(u.ID)
|
|
}
|
|
|
|
// AddChildIDs adds the "children" edge to the User entity by IDs.
|
|
func (uu *UserUpdate) AddChildIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.AddChildIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// AddChildren adds the "children" edges to the User entity.
|
|
func (uu *UserUpdate) AddChildren(u ...*User) *UserUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uu.AddChildIDs(ids...)
|
|
}
|
|
|
|
// SetParentID sets the "parent" edge to the User entity by ID.
|
|
func (uu *UserUpdate) SetParentID(id int) *UserUpdate {
|
|
uu.mutation.SetParentID(id)
|
|
return uu
|
|
}
|
|
|
|
// SetNillableParentID sets the "parent" edge to the User entity by ID if the given value is not nil.
|
|
func (uu *UserUpdate) SetNillableParentID(id *int) *UserUpdate {
|
|
if id != nil {
|
|
uu = uu.SetParentID(*id)
|
|
}
|
|
return uu
|
|
}
|
|
|
|
// SetParent sets the "parent" edge to the User entity.
|
|
func (uu *UserUpdate) SetParent(u *User) *UserUpdate {
|
|
return uu.SetParentID(u.ID)
|
|
}
|
|
|
|
// Mutation returns the UserMutation object of the builder.
|
|
func (uu *UserUpdate) Mutation() *UserMutation {
|
|
return uu.mutation
|
|
}
|
|
|
|
// ClearCard clears the "card" edge to the Card entity.
|
|
func (uu *UserUpdate) ClearCard() *UserUpdate {
|
|
uu.mutation.ClearCard()
|
|
return uu
|
|
}
|
|
|
|
// ClearPets clears all "pets" edges to the Pet entity.
|
|
func (uu *UserUpdate) ClearPets() *UserUpdate {
|
|
uu.mutation.ClearPets()
|
|
return uu
|
|
}
|
|
|
|
// RemovePetIDs removes the "pets" edge to Pet entities by IDs.
|
|
func (uu *UserUpdate) RemovePetIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.RemovePetIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// RemovePets removes "pets" edges to Pet entities.
|
|
func (uu *UserUpdate) RemovePets(p ...*Pet) *UserUpdate {
|
|
ids := make([]int, len(p))
|
|
for i := range p {
|
|
ids[i] = p[i].ID
|
|
}
|
|
return uu.RemovePetIDs(ids...)
|
|
}
|
|
|
|
// ClearFiles clears all "files" edges to the File entity.
|
|
func (uu *UserUpdate) ClearFiles() *UserUpdate {
|
|
uu.mutation.ClearFiles()
|
|
return uu
|
|
}
|
|
|
|
// RemoveFileIDs removes the "files" edge to File entities by IDs.
|
|
func (uu *UserUpdate) RemoveFileIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.RemoveFileIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// RemoveFiles removes "files" edges to File entities.
|
|
func (uu *UserUpdate) RemoveFiles(f ...*File) *UserUpdate {
|
|
ids := make([]int, len(f))
|
|
for i := range f {
|
|
ids[i] = f[i].ID
|
|
}
|
|
return uu.RemoveFileIDs(ids...)
|
|
}
|
|
|
|
// ClearGroups clears all "groups" edges to the Group entity.
|
|
func (uu *UserUpdate) ClearGroups() *UserUpdate {
|
|
uu.mutation.ClearGroups()
|
|
return uu
|
|
}
|
|
|
|
// RemoveGroupIDs removes the "groups" edge to Group entities by IDs.
|
|
func (uu *UserUpdate) RemoveGroupIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.RemoveGroupIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// RemoveGroups removes "groups" edges to Group entities.
|
|
func (uu *UserUpdate) RemoveGroups(g ...*Group) *UserUpdate {
|
|
ids := make([]int, len(g))
|
|
for i := range g {
|
|
ids[i] = g[i].ID
|
|
}
|
|
return uu.RemoveGroupIDs(ids...)
|
|
}
|
|
|
|
// ClearFriends clears all "friends" edges to the User entity.
|
|
func (uu *UserUpdate) ClearFriends() *UserUpdate {
|
|
uu.mutation.ClearFriends()
|
|
return uu
|
|
}
|
|
|
|
// RemoveFriendIDs removes the "friends" edge to User entities by IDs.
|
|
func (uu *UserUpdate) RemoveFriendIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.RemoveFriendIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// RemoveFriends removes "friends" edges to User entities.
|
|
func (uu *UserUpdate) RemoveFriends(u ...*User) *UserUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uu.RemoveFriendIDs(ids...)
|
|
}
|
|
|
|
// ClearFollowers clears all "followers" edges to the User entity.
|
|
func (uu *UserUpdate) ClearFollowers() *UserUpdate {
|
|
uu.mutation.ClearFollowers()
|
|
return uu
|
|
}
|
|
|
|
// RemoveFollowerIDs removes the "followers" edge to User entities by IDs.
|
|
func (uu *UserUpdate) RemoveFollowerIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.RemoveFollowerIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// RemoveFollowers removes "followers" edges to User entities.
|
|
func (uu *UserUpdate) RemoveFollowers(u ...*User) *UserUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uu.RemoveFollowerIDs(ids...)
|
|
}
|
|
|
|
// ClearFollowing clears all "following" edges to the User entity.
|
|
func (uu *UserUpdate) ClearFollowing() *UserUpdate {
|
|
uu.mutation.ClearFollowing()
|
|
return uu
|
|
}
|
|
|
|
// RemoveFollowingIDs removes the "following" edge to User entities by IDs.
|
|
func (uu *UserUpdate) RemoveFollowingIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.RemoveFollowingIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// RemoveFollowing removes "following" edges to User entities.
|
|
func (uu *UserUpdate) RemoveFollowing(u ...*User) *UserUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uu.RemoveFollowingIDs(ids...)
|
|
}
|
|
|
|
// ClearTeam clears the "team" edge to the Pet entity.
|
|
func (uu *UserUpdate) ClearTeam() *UserUpdate {
|
|
uu.mutation.ClearTeam()
|
|
return uu
|
|
}
|
|
|
|
// ClearSpouse clears the "spouse" edge to the User entity.
|
|
func (uu *UserUpdate) ClearSpouse() *UserUpdate {
|
|
uu.mutation.ClearSpouse()
|
|
return uu
|
|
}
|
|
|
|
// ClearChildren clears all "children" edges to the User entity.
|
|
func (uu *UserUpdate) ClearChildren() *UserUpdate {
|
|
uu.mutation.ClearChildren()
|
|
return uu
|
|
}
|
|
|
|
// RemoveChildIDs removes the "children" edge to User entities by IDs.
|
|
func (uu *UserUpdate) RemoveChildIDs(ids ...int) *UserUpdate {
|
|
uu.mutation.RemoveChildIDs(ids...)
|
|
return uu
|
|
}
|
|
|
|
// RemoveChildren removes "children" edges to User entities.
|
|
func (uu *UserUpdate) RemoveChildren(u ...*User) *UserUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uu.RemoveChildIDs(ids...)
|
|
}
|
|
|
|
// ClearParent clears the "parent" edge to the User entity.
|
|
func (uu *UserUpdate) ClearParent() *UserUpdate {
|
|
uu.mutation.ClearParent()
|
|
return uu
|
|
}
|
|
|
|
// Save executes the query and returns the number of nodes affected by the update operation.
|
|
func (uu *UserUpdate) Save(ctx context.Context) (int, error) {
|
|
var (
|
|
err error
|
|
affected int
|
|
)
|
|
if len(uu.hooks) == 0 {
|
|
if err = uu.check(); err != nil {
|
|
return 0, err
|
|
}
|
|
affected, err = uu.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*UserMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err = uu.check(); err != nil {
|
|
return 0, err
|
|
}
|
|
uu.mutation = mutation
|
|
affected, err = uu.sqlSave(ctx)
|
|
mutation.done = true
|
|
return affected, err
|
|
})
|
|
for i := len(uu.hooks) - 1; i >= 0; i-- {
|
|
if uu.hooks[i] == nil {
|
|
return 0, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
|
}
|
|
mut = uu.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, uu.mutation); err != nil {
|
|
return 0, err
|
|
}
|
|
}
|
|
return affected, err
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (uu *UserUpdate) SaveX(ctx context.Context) int {
|
|
affected, err := uu.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return affected
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (uu *UserUpdate) Exec(ctx context.Context) error {
|
|
_, err := uu.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (uu *UserUpdate) ExecX(ctx context.Context) {
|
|
if err := uu.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (uu *UserUpdate) check() error {
|
|
if v, ok := uu.mutation.OptionalInt(); ok {
|
|
if err := user.OptionalIntValidator(v); err != nil {
|
|
return &ValidationError{Name: "optional_int", err: fmt.Errorf(`ent: validator failed for field "User.optional_int": %w`, err)}
|
|
}
|
|
}
|
|
if v, ok := uu.mutation.Role(); ok {
|
|
if err := user.RoleValidator(v); err != nil {
|
|
return &ValidationError{Name: "role", err: fmt.Errorf(`ent: validator failed for field "User.role": %w`, err)}
|
|
}
|
|
}
|
|
if v, ok := uu.mutation.Employment(); ok {
|
|
if err := user.EmploymentValidator(v); err != nil {
|
|
return &ValidationError{Name: "employment", err: fmt.Errorf(`ent: validator failed for field "User.employment": %w`, err)}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (uu *UserUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
|
_spec := &sqlgraph.UpdateSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: user.Table,
|
|
Columns: user.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
if ps := uu.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := uu.mutation.OptionalInt(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: user.FieldOptionalInt,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.AddedOptionalInt(); ok {
|
|
_spec.Fields.Add = append(_spec.Fields.Add, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: user.FieldOptionalInt,
|
|
})
|
|
}
|
|
if uu.mutation.OptionalIntCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldOptionalInt,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.Age(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: user.FieldAge,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.AddedAge(); ok {
|
|
_spec.Fields.Add = append(_spec.Fields.Add, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: user.FieldAge,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.Name(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldName,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.Last(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldLast,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.Nickname(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldNickname,
|
|
})
|
|
}
|
|
if uu.mutation.NicknameCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: user.FieldNickname,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.Address(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldAddress,
|
|
})
|
|
}
|
|
if uu.mutation.AddressCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: user.FieldAddress,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.Phone(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldPhone,
|
|
})
|
|
}
|
|
if uu.mutation.PhoneCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: user.FieldPhone,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.Password(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldPassword,
|
|
})
|
|
}
|
|
if uu.mutation.PasswordCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: user.FieldPassword,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.Role(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeEnum,
|
|
Value: value,
|
|
Column: user.FieldRole,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.Employment(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeEnum,
|
|
Value: value,
|
|
Column: user.FieldEmployment,
|
|
})
|
|
}
|
|
if value, ok := uu.mutation.SSOCert(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldSSOCert,
|
|
})
|
|
}
|
|
if uu.mutation.SSOCertCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: user.FieldSSOCert,
|
|
})
|
|
}
|
|
if uu.mutation.CardCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.CardTable,
|
|
Columns: []string{user.CardColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: card.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.CardIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.CardTable,
|
|
Columns: []string{user.CardColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: card.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if uu.mutation.PetsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.PetsTable,
|
|
Columns: []string{user.PetsColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.RemovedPetsIDs(); len(nodes) > 0 && !uu.mutation.PetsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.PetsTable,
|
|
Columns: []string{user.PetsColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.PetsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.PetsTable,
|
|
Columns: []string{user.PetsColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if uu.mutation.FilesCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.FilesTable,
|
|
Columns: []string{user.FilesColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: file.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.RemovedFilesIDs(); len(nodes) > 0 && !uu.mutation.FilesCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.FilesTable,
|
|
Columns: []string{user.FilesColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: file.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.FilesIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.FilesTable,
|
|
Columns: []string{user.FilesColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: file.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if uu.mutation.GroupsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.GroupsTable,
|
|
Columns: user.GroupsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: group.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.RemovedGroupsIDs(); len(nodes) > 0 && !uu.mutation.GroupsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.GroupsTable,
|
|
Columns: user.GroupsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: group.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.GroupsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.GroupsTable,
|
|
Columns: user.GroupsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: group.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if uu.mutation.FriendsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FriendsTable,
|
|
Columns: user.FriendsPrimaryKey,
|
|
Bidi: true,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.RemovedFriendsIDs(); len(nodes) > 0 && !uu.mutation.FriendsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FriendsTable,
|
|
Columns: user.FriendsPrimaryKey,
|
|
Bidi: true,
|
|
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 := uu.mutation.FriendsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FriendsTable,
|
|
Columns: user.FriendsPrimaryKey,
|
|
Bidi: true,
|
|
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 uu.mutation.FollowersCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: user.FollowersTable,
|
|
Columns: user.FollowersPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.RemovedFollowersIDs(); len(nodes) > 0 && !uu.mutation.FollowersCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: user.FollowersTable,
|
|
Columns: user.FollowersPrimaryKey,
|
|
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 := uu.mutation.FollowersIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: user.FollowersTable,
|
|
Columns: user.FollowersPrimaryKey,
|
|
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 uu.mutation.FollowingCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FollowingTable,
|
|
Columns: user.FollowingPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.RemovedFollowingIDs(); len(nodes) > 0 && !uu.mutation.FollowingCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FollowingTable,
|
|
Columns: user.FollowingPrimaryKey,
|
|
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 := uu.mutation.FollowingIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FollowingTable,
|
|
Columns: user.FollowingPrimaryKey,
|
|
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 uu.mutation.TeamCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.TeamTable,
|
|
Columns: []string{user.TeamColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.TeamIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.TeamTable,
|
|
Columns: []string{user.TeamColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if uu.mutation.SpouseCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.SpouseTable,
|
|
Columns: []string{user.SpouseColumn},
|
|
Bidi: true,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.SpouseIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.SpouseTable,
|
|
Columns: []string{user.SpouseColumn},
|
|
Bidi: true,
|
|
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 uu.mutation.ChildrenCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: true,
|
|
Table: user.ChildrenTable,
|
|
Columns: []string{user.ChildrenColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.RemovedChildrenIDs(); len(nodes) > 0 && !uu.mutation.ChildrenCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: true,
|
|
Table: user.ChildrenTable,
|
|
Columns: []string{user.ChildrenColumn},
|
|
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 := uu.mutation.ChildrenIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: true,
|
|
Table: user.ChildrenTable,
|
|
Columns: []string{user.ChildrenColumn},
|
|
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 uu.mutation.ParentCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: false,
|
|
Table: user.ParentTable,
|
|
Columns: []string{user.ParentColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uu.mutation.ParentIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: false,
|
|
Table: user.ParentTable,
|
|
Columns: []string{user.ParentColumn},
|
|
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, uu.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{user.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{err.Error(), err}
|
|
}
|
|
return 0, err
|
|
}
|
|
return n, nil
|
|
}
|
|
|
|
// UserUpdateOne is the builder for updating a single User entity.
|
|
type UserUpdateOne struct {
|
|
config
|
|
fields []string
|
|
hooks []Hook
|
|
mutation *UserMutation
|
|
}
|
|
|
|
// SetOptionalInt sets the "optional_int" field.
|
|
func (uuo *UserUpdateOne) SetOptionalInt(i int) *UserUpdateOne {
|
|
uuo.mutation.ResetOptionalInt()
|
|
uuo.mutation.SetOptionalInt(i)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableOptionalInt sets the "optional_int" field if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableOptionalInt(i *int) *UserUpdateOne {
|
|
if i != nil {
|
|
uuo.SetOptionalInt(*i)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// AddOptionalInt adds i to the "optional_int" field.
|
|
func (uuo *UserUpdateOne) AddOptionalInt(i int) *UserUpdateOne {
|
|
uuo.mutation.AddOptionalInt(i)
|
|
return uuo
|
|
}
|
|
|
|
// ClearOptionalInt clears the value of the "optional_int" field.
|
|
func (uuo *UserUpdateOne) ClearOptionalInt() *UserUpdateOne {
|
|
uuo.mutation.ClearOptionalInt()
|
|
return uuo
|
|
}
|
|
|
|
// SetAge sets the "age" field.
|
|
func (uuo *UserUpdateOne) SetAge(i int) *UserUpdateOne {
|
|
uuo.mutation.ResetAge()
|
|
uuo.mutation.SetAge(i)
|
|
return uuo
|
|
}
|
|
|
|
// AddAge adds i to the "age" field.
|
|
func (uuo *UserUpdateOne) AddAge(i int) *UserUpdateOne {
|
|
uuo.mutation.AddAge(i)
|
|
return uuo
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (uuo *UserUpdateOne) SetName(s string) *UserUpdateOne {
|
|
uuo.mutation.SetName(s)
|
|
return uuo
|
|
}
|
|
|
|
// SetLast sets the "last" field.
|
|
func (uuo *UserUpdateOne) SetLast(s string) *UserUpdateOne {
|
|
uuo.mutation.SetLast(s)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableLast sets the "last" field if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableLast(s *string) *UserUpdateOne {
|
|
if s != nil {
|
|
uuo.SetLast(*s)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// SetNickname sets the "nickname" field.
|
|
func (uuo *UserUpdateOne) SetNickname(s string) *UserUpdateOne {
|
|
uuo.mutation.SetNickname(s)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableNickname sets the "nickname" field if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableNickname(s *string) *UserUpdateOne {
|
|
if s != nil {
|
|
uuo.SetNickname(*s)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// ClearNickname clears the value of the "nickname" field.
|
|
func (uuo *UserUpdateOne) ClearNickname() *UserUpdateOne {
|
|
uuo.mutation.ClearNickname()
|
|
return uuo
|
|
}
|
|
|
|
// SetAddress sets the "address" field.
|
|
func (uuo *UserUpdateOne) SetAddress(s string) *UserUpdateOne {
|
|
uuo.mutation.SetAddress(s)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableAddress sets the "address" field if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableAddress(s *string) *UserUpdateOne {
|
|
if s != nil {
|
|
uuo.SetAddress(*s)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// ClearAddress clears the value of the "address" field.
|
|
func (uuo *UserUpdateOne) ClearAddress() *UserUpdateOne {
|
|
uuo.mutation.ClearAddress()
|
|
return uuo
|
|
}
|
|
|
|
// SetPhone sets the "phone" field.
|
|
func (uuo *UserUpdateOne) SetPhone(s string) *UserUpdateOne {
|
|
uuo.mutation.SetPhone(s)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillablePhone sets the "phone" field if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillablePhone(s *string) *UserUpdateOne {
|
|
if s != nil {
|
|
uuo.SetPhone(*s)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// ClearPhone clears the value of the "phone" field.
|
|
func (uuo *UserUpdateOne) ClearPhone() *UserUpdateOne {
|
|
uuo.mutation.ClearPhone()
|
|
return uuo
|
|
}
|
|
|
|
// SetPassword sets the "password" field.
|
|
func (uuo *UserUpdateOne) SetPassword(s string) *UserUpdateOne {
|
|
uuo.mutation.SetPassword(s)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillablePassword sets the "password" field if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillablePassword(s *string) *UserUpdateOne {
|
|
if s != nil {
|
|
uuo.SetPassword(*s)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// ClearPassword clears the value of the "password" field.
|
|
func (uuo *UserUpdateOne) ClearPassword() *UserUpdateOne {
|
|
uuo.mutation.ClearPassword()
|
|
return uuo
|
|
}
|
|
|
|
// SetRole sets the "role" field.
|
|
func (uuo *UserUpdateOne) SetRole(u user.Role) *UserUpdateOne {
|
|
uuo.mutation.SetRole(u)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableRole sets the "role" field if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableRole(u *user.Role) *UserUpdateOne {
|
|
if u != nil {
|
|
uuo.SetRole(*u)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// SetEmployment sets the "employment" field.
|
|
func (uuo *UserUpdateOne) SetEmployment(u user.Employment) *UserUpdateOne {
|
|
uuo.mutation.SetEmployment(u)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableEmployment sets the "employment" field if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableEmployment(u *user.Employment) *UserUpdateOne {
|
|
if u != nil {
|
|
uuo.SetEmployment(*u)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// SetSSOCert sets the "SSOCert" field.
|
|
func (uuo *UserUpdateOne) SetSSOCert(s string) *UserUpdateOne {
|
|
uuo.mutation.SetSSOCert(s)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableSSOCert sets the "SSOCert" field if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableSSOCert(s *string) *UserUpdateOne {
|
|
if s != nil {
|
|
uuo.SetSSOCert(*s)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// ClearSSOCert clears the value of the "SSOCert" field.
|
|
func (uuo *UserUpdateOne) ClearSSOCert() *UserUpdateOne {
|
|
uuo.mutation.ClearSSOCert()
|
|
return uuo
|
|
}
|
|
|
|
// SetCardID sets the "card" edge to the Card entity by ID.
|
|
func (uuo *UserUpdateOne) SetCardID(id int) *UserUpdateOne {
|
|
uuo.mutation.SetCardID(id)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableCardID sets the "card" edge to the Card entity by ID if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableCardID(id *int) *UserUpdateOne {
|
|
if id != nil {
|
|
uuo = uuo.SetCardID(*id)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// SetCard sets the "card" edge to the Card entity.
|
|
func (uuo *UserUpdateOne) SetCard(c *Card) *UserUpdateOne {
|
|
return uuo.SetCardID(c.ID)
|
|
}
|
|
|
|
// AddPetIDs adds the "pets" edge to the Pet entity by IDs.
|
|
func (uuo *UserUpdateOne) AddPetIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.AddPetIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// AddPets adds the "pets" edges to the Pet entity.
|
|
func (uuo *UserUpdateOne) AddPets(p ...*Pet) *UserUpdateOne {
|
|
ids := make([]int, len(p))
|
|
for i := range p {
|
|
ids[i] = p[i].ID
|
|
}
|
|
return uuo.AddPetIDs(ids...)
|
|
}
|
|
|
|
// AddFileIDs adds the "files" edge to the File entity by IDs.
|
|
func (uuo *UserUpdateOne) AddFileIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.AddFileIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// AddFiles adds the "files" edges to the File entity.
|
|
func (uuo *UserUpdateOne) AddFiles(f ...*File) *UserUpdateOne {
|
|
ids := make([]int, len(f))
|
|
for i := range f {
|
|
ids[i] = f[i].ID
|
|
}
|
|
return uuo.AddFileIDs(ids...)
|
|
}
|
|
|
|
// AddGroupIDs adds the "groups" edge to the Group entity by IDs.
|
|
func (uuo *UserUpdateOne) AddGroupIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.AddGroupIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// AddGroups adds the "groups" edges to the Group entity.
|
|
func (uuo *UserUpdateOne) AddGroups(g ...*Group) *UserUpdateOne {
|
|
ids := make([]int, len(g))
|
|
for i := range g {
|
|
ids[i] = g[i].ID
|
|
}
|
|
return uuo.AddGroupIDs(ids...)
|
|
}
|
|
|
|
// AddFriendIDs adds the "friends" edge to the User entity by IDs.
|
|
func (uuo *UserUpdateOne) AddFriendIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.AddFriendIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// AddFriends adds the "friends" edges to the User entity.
|
|
func (uuo *UserUpdateOne) AddFriends(u ...*User) *UserUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uuo.AddFriendIDs(ids...)
|
|
}
|
|
|
|
// AddFollowerIDs adds the "followers" edge to the User entity by IDs.
|
|
func (uuo *UserUpdateOne) AddFollowerIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.AddFollowerIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// AddFollowers adds the "followers" edges to the User entity.
|
|
func (uuo *UserUpdateOne) AddFollowers(u ...*User) *UserUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uuo.AddFollowerIDs(ids...)
|
|
}
|
|
|
|
// AddFollowingIDs adds the "following" edge to the User entity by IDs.
|
|
func (uuo *UserUpdateOne) AddFollowingIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.AddFollowingIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// AddFollowing adds the "following" edges to the User entity.
|
|
func (uuo *UserUpdateOne) AddFollowing(u ...*User) *UserUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uuo.AddFollowingIDs(ids...)
|
|
}
|
|
|
|
// SetTeamID sets the "team" edge to the Pet entity by ID.
|
|
func (uuo *UserUpdateOne) SetTeamID(id int) *UserUpdateOne {
|
|
uuo.mutation.SetTeamID(id)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableTeamID sets the "team" edge to the Pet entity by ID if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableTeamID(id *int) *UserUpdateOne {
|
|
if id != nil {
|
|
uuo = uuo.SetTeamID(*id)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// SetTeam sets the "team" edge to the Pet entity.
|
|
func (uuo *UserUpdateOne) SetTeam(p *Pet) *UserUpdateOne {
|
|
return uuo.SetTeamID(p.ID)
|
|
}
|
|
|
|
// SetSpouseID sets the "spouse" edge to the User entity by ID.
|
|
func (uuo *UserUpdateOne) SetSpouseID(id int) *UserUpdateOne {
|
|
uuo.mutation.SetSpouseID(id)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableSpouseID sets the "spouse" edge to the User entity by ID if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableSpouseID(id *int) *UserUpdateOne {
|
|
if id != nil {
|
|
uuo = uuo.SetSpouseID(*id)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// SetSpouse sets the "spouse" edge to the User entity.
|
|
func (uuo *UserUpdateOne) SetSpouse(u *User) *UserUpdateOne {
|
|
return uuo.SetSpouseID(u.ID)
|
|
}
|
|
|
|
// AddChildIDs adds the "children" edge to the User entity by IDs.
|
|
func (uuo *UserUpdateOne) AddChildIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.AddChildIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// AddChildren adds the "children" edges to the User entity.
|
|
func (uuo *UserUpdateOne) AddChildren(u ...*User) *UserUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uuo.AddChildIDs(ids...)
|
|
}
|
|
|
|
// SetParentID sets the "parent" edge to the User entity by ID.
|
|
func (uuo *UserUpdateOne) SetParentID(id int) *UserUpdateOne {
|
|
uuo.mutation.SetParentID(id)
|
|
return uuo
|
|
}
|
|
|
|
// SetNillableParentID sets the "parent" edge to the User entity by ID if the given value is not nil.
|
|
func (uuo *UserUpdateOne) SetNillableParentID(id *int) *UserUpdateOne {
|
|
if id != nil {
|
|
uuo = uuo.SetParentID(*id)
|
|
}
|
|
return uuo
|
|
}
|
|
|
|
// SetParent sets the "parent" edge to the User entity.
|
|
func (uuo *UserUpdateOne) SetParent(u *User) *UserUpdateOne {
|
|
return uuo.SetParentID(u.ID)
|
|
}
|
|
|
|
// Mutation returns the UserMutation object of the builder.
|
|
func (uuo *UserUpdateOne) Mutation() *UserMutation {
|
|
return uuo.mutation
|
|
}
|
|
|
|
// ClearCard clears the "card" edge to the Card entity.
|
|
func (uuo *UserUpdateOne) ClearCard() *UserUpdateOne {
|
|
uuo.mutation.ClearCard()
|
|
return uuo
|
|
}
|
|
|
|
// ClearPets clears all "pets" edges to the Pet entity.
|
|
func (uuo *UserUpdateOne) ClearPets() *UserUpdateOne {
|
|
uuo.mutation.ClearPets()
|
|
return uuo
|
|
}
|
|
|
|
// RemovePetIDs removes the "pets" edge to Pet entities by IDs.
|
|
func (uuo *UserUpdateOne) RemovePetIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.RemovePetIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// RemovePets removes "pets" edges to Pet entities.
|
|
func (uuo *UserUpdateOne) RemovePets(p ...*Pet) *UserUpdateOne {
|
|
ids := make([]int, len(p))
|
|
for i := range p {
|
|
ids[i] = p[i].ID
|
|
}
|
|
return uuo.RemovePetIDs(ids...)
|
|
}
|
|
|
|
// ClearFiles clears all "files" edges to the File entity.
|
|
func (uuo *UserUpdateOne) ClearFiles() *UserUpdateOne {
|
|
uuo.mutation.ClearFiles()
|
|
return uuo
|
|
}
|
|
|
|
// RemoveFileIDs removes the "files" edge to File entities by IDs.
|
|
func (uuo *UserUpdateOne) RemoveFileIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.RemoveFileIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// RemoveFiles removes "files" edges to File entities.
|
|
func (uuo *UserUpdateOne) RemoveFiles(f ...*File) *UserUpdateOne {
|
|
ids := make([]int, len(f))
|
|
for i := range f {
|
|
ids[i] = f[i].ID
|
|
}
|
|
return uuo.RemoveFileIDs(ids...)
|
|
}
|
|
|
|
// ClearGroups clears all "groups" edges to the Group entity.
|
|
func (uuo *UserUpdateOne) ClearGroups() *UserUpdateOne {
|
|
uuo.mutation.ClearGroups()
|
|
return uuo
|
|
}
|
|
|
|
// RemoveGroupIDs removes the "groups" edge to Group entities by IDs.
|
|
func (uuo *UserUpdateOne) RemoveGroupIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.RemoveGroupIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// RemoveGroups removes "groups" edges to Group entities.
|
|
func (uuo *UserUpdateOne) RemoveGroups(g ...*Group) *UserUpdateOne {
|
|
ids := make([]int, len(g))
|
|
for i := range g {
|
|
ids[i] = g[i].ID
|
|
}
|
|
return uuo.RemoveGroupIDs(ids...)
|
|
}
|
|
|
|
// ClearFriends clears all "friends" edges to the User entity.
|
|
func (uuo *UserUpdateOne) ClearFriends() *UserUpdateOne {
|
|
uuo.mutation.ClearFriends()
|
|
return uuo
|
|
}
|
|
|
|
// RemoveFriendIDs removes the "friends" edge to User entities by IDs.
|
|
func (uuo *UserUpdateOne) RemoveFriendIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.RemoveFriendIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// RemoveFriends removes "friends" edges to User entities.
|
|
func (uuo *UserUpdateOne) RemoveFriends(u ...*User) *UserUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uuo.RemoveFriendIDs(ids...)
|
|
}
|
|
|
|
// ClearFollowers clears all "followers" edges to the User entity.
|
|
func (uuo *UserUpdateOne) ClearFollowers() *UserUpdateOne {
|
|
uuo.mutation.ClearFollowers()
|
|
return uuo
|
|
}
|
|
|
|
// RemoveFollowerIDs removes the "followers" edge to User entities by IDs.
|
|
func (uuo *UserUpdateOne) RemoveFollowerIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.RemoveFollowerIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// RemoveFollowers removes "followers" edges to User entities.
|
|
func (uuo *UserUpdateOne) RemoveFollowers(u ...*User) *UserUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uuo.RemoveFollowerIDs(ids...)
|
|
}
|
|
|
|
// ClearFollowing clears all "following" edges to the User entity.
|
|
func (uuo *UserUpdateOne) ClearFollowing() *UserUpdateOne {
|
|
uuo.mutation.ClearFollowing()
|
|
return uuo
|
|
}
|
|
|
|
// RemoveFollowingIDs removes the "following" edge to User entities by IDs.
|
|
func (uuo *UserUpdateOne) RemoveFollowingIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.RemoveFollowingIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// RemoveFollowing removes "following" edges to User entities.
|
|
func (uuo *UserUpdateOne) RemoveFollowing(u ...*User) *UserUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uuo.RemoveFollowingIDs(ids...)
|
|
}
|
|
|
|
// ClearTeam clears the "team" edge to the Pet entity.
|
|
func (uuo *UserUpdateOne) ClearTeam() *UserUpdateOne {
|
|
uuo.mutation.ClearTeam()
|
|
return uuo
|
|
}
|
|
|
|
// ClearSpouse clears the "spouse" edge to the User entity.
|
|
func (uuo *UserUpdateOne) ClearSpouse() *UserUpdateOne {
|
|
uuo.mutation.ClearSpouse()
|
|
return uuo
|
|
}
|
|
|
|
// ClearChildren clears all "children" edges to the User entity.
|
|
func (uuo *UserUpdateOne) ClearChildren() *UserUpdateOne {
|
|
uuo.mutation.ClearChildren()
|
|
return uuo
|
|
}
|
|
|
|
// RemoveChildIDs removes the "children" edge to User entities by IDs.
|
|
func (uuo *UserUpdateOne) RemoveChildIDs(ids ...int) *UserUpdateOne {
|
|
uuo.mutation.RemoveChildIDs(ids...)
|
|
return uuo
|
|
}
|
|
|
|
// RemoveChildren removes "children" edges to User entities.
|
|
func (uuo *UserUpdateOne) RemoveChildren(u ...*User) *UserUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return uuo.RemoveChildIDs(ids...)
|
|
}
|
|
|
|
// ClearParent clears the "parent" edge to the User entity.
|
|
func (uuo *UserUpdateOne) ClearParent() *UserUpdateOne {
|
|
uuo.mutation.ClearParent()
|
|
return uuo
|
|
}
|
|
|
|
// Select allows selecting one or more fields (columns) of the returned entity.
|
|
// The default is selecting all fields defined in the entity schema.
|
|
func (uuo *UserUpdateOne) Select(field string, fields ...string) *UserUpdateOne {
|
|
uuo.fields = append([]string{field}, fields...)
|
|
return uuo
|
|
}
|
|
|
|
// Save executes the query and returns the updated User entity.
|
|
func (uuo *UserUpdateOne) Save(ctx context.Context) (*User, error) {
|
|
var (
|
|
err error
|
|
node *User
|
|
)
|
|
if len(uuo.hooks) == 0 {
|
|
if err = uuo.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
node, err = uuo.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*UserMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err = uuo.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
uuo.mutation = mutation
|
|
node, err = uuo.sqlSave(ctx)
|
|
mutation.done = true
|
|
return node, err
|
|
})
|
|
for i := len(uuo.hooks) - 1; i >= 0; i-- {
|
|
if uuo.hooks[i] == nil {
|
|
return nil, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
|
}
|
|
mut = uuo.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, uuo.mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return node, err
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (uuo *UserUpdateOne) SaveX(ctx context.Context) *User {
|
|
node, err := uuo.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// Exec executes the query on the entity.
|
|
func (uuo *UserUpdateOne) Exec(ctx context.Context) error {
|
|
_, err := uuo.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (uuo *UserUpdateOne) ExecX(ctx context.Context) {
|
|
if err := uuo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (uuo *UserUpdateOne) check() error {
|
|
if v, ok := uuo.mutation.OptionalInt(); ok {
|
|
if err := user.OptionalIntValidator(v); err != nil {
|
|
return &ValidationError{Name: "optional_int", err: fmt.Errorf(`ent: validator failed for field "User.optional_int": %w`, err)}
|
|
}
|
|
}
|
|
if v, ok := uuo.mutation.Role(); ok {
|
|
if err := user.RoleValidator(v); err != nil {
|
|
return &ValidationError{Name: "role", err: fmt.Errorf(`ent: validator failed for field "User.role": %w`, err)}
|
|
}
|
|
}
|
|
if v, ok := uuo.mutation.Employment(); ok {
|
|
if err := user.EmploymentValidator(v); err != nil {
|
|
return &ValidationError{Name: "employment", err: fmt.Errorf(`ent: validator failed for field "User.employment": %w`, err)}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (uuo *UserUpdateOne) sqlSave(ctx context.Context) (_node *User, err error) {
|
|
_spec := &sqlgraph.UpdateSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: user.Table,
|
|
Columns: user.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
id, ok := uuo.mutation.ID()
|
|
if !ok {
|
|
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "User.id" for update`)}
|
|
}
|
|
_spec.Node.ID.Value = id
|
|
if fields := uuo.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, user.FieldID)
|
|
for _, f := range fields {
|
|
if !user.ValidColumn(f) {
|
|
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
if f != user.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, f)
|
|
}
|
|
}
|
|
}
|
|
if ps := uuo.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := uuo.mutation.OptionalInt(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: user.FieldOptionalInt,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.AddedOptionalInt(); ok {
|
|
_spec.Fields.Add = append(_spec.Fields.Add, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: user.FieldOptionalInt,
|
|
})
|
|
}
|
|
if uuo.mutation.OptionalIntCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldOptionalInt,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.Age(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: user.FieldAge,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.AddedAge(); ok {
|
|
_spec.Fields.Add = append(_spec.Fields.Add, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: user.FieldAge,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.Name(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldName,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.Last(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldLast,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.Nickname(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldNickname,
|
|
})
|
|
}
|
|
if uuo.mutation.NicknameCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: user.FieldNickname,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.Address(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldAddress,
|
|
})
|
|
}
|
|
if uuo.mutation.AddressCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: user.FieldAddress,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.Phone(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldPhone,
|
|
})
|
|
}
|
|
if uuo.mutation.PhoneCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: user.FieldPhone,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.Password(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldPassword,
|
|
})
|
|
}
|
|
if uuo.mutation.PasswordCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: user.FieldPassword,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.Role(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeEnum,
|
|
Value: value,
|
|
Column: user.FieldRole,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.Employment(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeEnum,
|
|
Value: value,
|
|
Column: user.FieldEmployment,
|
|
})
|
|
}
|
|
if value, ok := uuo.mutation.SSOCert(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: user.FieldSSOCert,
|
|
})
|
|
}
|
|
if uuo.mutation.SSOCertCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: user.FieldSSOCert,
|
|
})
|
|
}
|
|
if uuo.mutation.CardCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.CardTable,
|
|
Columns: []string{user.CardColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: card.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.CardIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.CardTable,
|
|
Columns: []string{user.CardColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: card.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if uuo.mutation.PetsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.PetsTable,
|
|
Columns: []string{user.PetsColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.RemovedPetsIDs(); len(nodes) > 0 && !uuo.mutation.PetsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.PetsTable,
|
|
Columns: []string{user.PetsColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.PetsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.PetsTable,
|
|
Columns: []string{user.PetsColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if uuo.mutation.FilesCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.FilesTable,
|
|
Columns: []string{user.FilesColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: file.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.RemovedFilesIDs(); len(nodes) > 0 && !uuo.mutation.FilesCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.FilesTable,
|
|
Columns: []string{user.FilesColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: file.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.FilesIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.FilesTable,
|
|
Columns: []string{user.FilesColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: file.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if uuo.mutation.GroupsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.GroupsTable,
|
|
Columns: user.GroupsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: group.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.RemovedGroupsIDs(); len(nodes) > 0 && !uuo.mutation.GroupsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.GroupsTable,
|
|
Columns: user.GroupsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: group.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.GroupsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.GroupsTable,
|
|
Columns: user.GroupsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: group.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if uuo.mutation.FriendsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FriendsTable,
|
|
Columns: user.FriendsPrimaryKey,
|
|
Bidi: true,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.RemovedFriendsIDs(); len(nodes) > 0 && !uuo.mutation.FriendsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FriendsTable,
|
|
Columns: user.FriendsPrimaryKey,
|
|
Bidi: true,
|
|
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 := uuo.mutation.FriendsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FriendsTable,
|
|
Columns: user.FriendsPrimaryKey,
|
|
Bidi: true,
|
|
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 uuo.mutation.FollowersCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: user.FollowersTable,
|
|
Columns: user.FollowersPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.RemovedFollowersIDs(); len(nodes) > 0 && !uuo.mutation.FollowersCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: user.FollowersTable,
|
|
Columns: user.FollowersPrimaryKey,
|
|
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 := uuo.mutation.FollowersIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: user.FollowersTable,
|
|
Columns: user.FollowersPrimaryKey,
|
|
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 uuo.mutation.FollowingCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FollowingTable,
|
|
Columns: user.FollowingPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.RemovedFollowingIDs(); len(nodes) > 0 && !uuo.mutation.FollowingCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FollowingTable,
|
|
Columns: user.FollowingPrimaryKey,
|
|
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 := uuo.mutation.FollowingIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: user.FollowingTable,
|
|
Columns: user.FollowingPrimaryKey,
|
|
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 uuo.mutation.TeamCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.TeamTable,
|
|
Columns: []string{user.TeamColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.TeamIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.TeamTable,
|
|
Columns: []string{user.TeamColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if uuo.mutation.SpouseCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.SpouseTable,
|
|
Columns: []string{user.SpouseColumn},
|
|
Bidi: true,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.SpouseIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: user.SpouseTable,
|
|
Columns: []string{user.SpouseColumn},
|
|
Bidi: true,
|
|
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 uuo.mutation.ChildrenCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: true,
|
|
Table: user.ChildrenTable,
|
|
Columns: []string{user.ChildrenColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.RemovedChildrenIDs(); len(nodes) > 0 && !uuo.mutation.ChildrenCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: true,
|
|
Table: user.ChildrenTable,
|
|
Columns: []string{user.ChildrenColumn},
|
|
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 := uuo.mutation.ChildrenIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: true,
|
|
Table: user.ChildrenTable,
|
|
Columns: []string{user.ChildrenColumn},
|
|
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 uuo.mutation.ParentCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: false,
|
|
Table: user.ParentTable,
|
|
Columns: []string{user.ParentColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := uuo.mutation.ParentIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: false,
|
|
Table: user.ParentTable,
|
|
Columns: []string{user.ParentColumn},
|
|
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)
|
|
}
|
|
_node = &User{config: uuo.config}
|
|
_spec.Assign = _node.assignValues
|
|
_spec.ScanValues = _node.scanValues
|
|
if err = sqlgraph.UpdateNode(ctx, uuo.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{user.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{err.Error(), err}
|
|
}
|
|
return nil, err
|
|
}
|
|
return _node, nil
|
|
}
|