123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576 |
- // Code generated by entc, DO NOT EDIT.
- package ent
- import (
- "context"
- "fmt"
- "code.osinet.fr/fgm/entdemo/ent/car"
- "code.osinet.fr/fgm/entdemo/ent/group"
- "code.osinet.fr/fgm/entdemo/ent/predicate"
- "code.osinet.fr/fgm/entdemo/ent/user"
- "github.com/facebookincubator/ent/dialect/sql"
- "github.com/facebookincubator/ent/dialect/sql/sqlgraph"
- "github.com/facebookincubator/ent/schema/field"
- )
- // UserUpdate is the builder for updating User entities.
- type UserUpdate struct {
- config
- hooks []Hook
- mutation *UserMutation
- predicates []predicate.User
- }
- // Where adds a new predicate for the builder.
- func (uu *UserUpdate) Where(ps ...predicate.User) *UserUpdate {
- uu.predicates = append(uu.predicates, ps...)
- 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 age.
- 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
- }
- // SetNillableName sets the name field if the given value is not nil.
- func (uu *UserUpdate) SetNillableName(s *string) *UserUpdate {
- if s != nil {
- uu.SetName(*s)
- }
- return uu
- }
- // AddCarIDs adds the cars edge to Car by ids.
- func (uu *UserUpdate) AddCarIDs(ids ...int) *UserUpdate {
- uu.mutation.AddCarIDs(ids...)
- return uu
- }
- // AddCars adds the cars edges to Car.
- func (uu *UserUpdate) AddCars(c ...*Car) *UserUpdate {
- ids := make([]int, len(c))
- for i := range c {
- ids[i] = c[i].ID
- }
- return uu.AddCarIDs(ids...)
- }
- // AddGroupIDs adds the groups edge to Group by ids.
- func (uu *UserUpdate) AddGroupIDs(ids ...int) *UserUpdate {
- uu.mutation.AddGroupIDs(ids...)
- return uu
- }
- // AddGroups adds the groups edges to Group.
- 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...)
- }
- // RemoveCarIDs removes the cars edge to Car by ids.
- func (uu *UserUpdate) RemoveCarIDs(ids ...int) *UserUpdate {
- uu.mutation.RemoveCarIDs(ids...)
- return uu
- }
- // RemoveCars removes cars edges to Car.
- func (uu *UserUpdate) RemoveCars(c ...*Car) *UserUpdate {
- ids := make([]int, len(c))
- for i := range c {
- ids[i] = c[i].ID
- }
- return uu.RemoveCarIDs(ids...)
- }
- // RemoveGroupIDs removes the groups edge to Group by ids.
- func (uu *UserUpdate) RemoveGroupIDs(ids ...int) *UserUpdate {
- uu.mutation.RemoveGroupIDs(ids...)
- return uu
- }
- // RemoveGroups removes groups edges to Group.
- 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...)
- }
- // Save executes the query and returns the number of rows/vertices matched by this operation.
- func (uu *UserUpdate) Save(ctx context.Context) (int, error) {
- if v, ok := uu.mutation.Age(); ok {
- if err := user.AgeValidator(v); err != nil {
- return 0, fmt.Errorf("ent: validator failed for field \"age\": %v", err)
- }
- }
- var (
- err error
- affected int
- )
- if len(uu.hooks) == 0 {
- 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)
- }
- uu.mutation = mutation
- affected, err = uu.sqlSave(ctx)
- return affected, err
- })
- for i := len(uu.hooks) - 1; i >= 0; i-- {
- 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)
- }
- }
- 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.predicates; len(ps) > 0 {
- _spec.Predicate = func(selector *sql.Selector) {
- for i := range ps {
- ps[i](selector)
- }
- }
- }
- 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 nodes := uu.mutation.RemovedCarsIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.O2M,
- Inverse: false,
- Table: user.CarsTable,
- Columns: []string{user.CarsColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: &sqlgraph.FieldSpec{
- Type: field.TypeInt,
- Column: car.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.CarsIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.O2M,
- Inverse: false,
- Table: user.CarsTable,
- Columns: []string{user.CarsColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: &sqlgraph.FieldSpec{
- Type: field.TypeInt,
- Column: car.FieldID,
- },
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _spec.Edges.Add = append(_spec.Edges.Add, edge)
- }
- if nodes := uu.mutation.RemovedGroupsIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2M,
- Inverse: true,
- 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: true,
- 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 n, err = sqlgraph.UpdateNodes(ctx, uu.driver, _spec); err != nil {
- if _, ok := err.(*sqlgraph.NotFoundError); ok {
- err = &NotFoundError{user.Label}
- } else if cerr, ok := isSQLConstraintError(err); ok {
- err = cerr
- }
- return 0, err
- }
- return n, nil
- }
- // UserUpdateOne is the builder for updating a single User entity.
- type UserUpdateOne struct {
- config
- hooks []Hook
- mutation *UserMutation
- }
- // 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 age.
- 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
- }
- // SetNillableName sets the name field if the given value is not nil.
- func (uuo *UserUpdateOne) SetNillableName(s *string) *UserUpdateOne {
- if s != nil {
- uuo.SetName(*s)
- }
- return uuo
- }
- // AddCarIDs adds the cars edge to Car by ids.
- func (uuo *UserUpdateOne) AddCarIDs(ids ...int) *UserUpdateOne {
- uuo.mutation.AddCarIDs(ids...)
- return uuo
- }
- // AddCars adds the cars edges to Car.
- func (uuo *UserUpdateOne) AddCars(c ...*Car) *UserUpdateOne {
- ids := make([]int, len(c))
- for i := range c {
- ids[i] = c[i].ID
- }
- return uuo.AddCarIDs(ids...)
- }
- // AddGroupIDs adds the groups edge to Group by ids.
- func (uuo *UserUpdateOne) AddGroupIDs(ids ...int) *UserUpdateOne {
- uuo.mutation.AddGroupIDs(ids...)
- return uuo
- }
- // AddGroups adds the groups edges to Group.
- 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...)
- }
- // RemoveCarIDs removes the cars edge to Car by ids.
- func (uuo *UserUpdateOne) RemoveCarIDs(ids ...int) *UserUpdateOne {
- uuo.mutation.RemoveCarIDs(ids...)
- return uuo
- }
- // RemoveCars removes cars edges to Car.
- func (uuo *UserUpdateOne) RemoveCars(c ...*Car) *UserUpdateOne {
- ids := make([]int, len(c))
- for i := range c {
- ids[i] = c[i].ID
- }
- return uuo.RemoveCarIDs(ids...)
- }
- // RemoveGroupIDs removes the groups edge to Group by ids.
- func (uuo *UserUpdateOne) RemoveGroupIDs(ids ...int) *UserUpdateOne {
- uuo.mutation.RemoveGroupIDs(ids...)
- return uuo
- }
- // RemoveGroups removes groups edges to Group.
- 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...)
- }
- // Save executes the query and returns the updated entity.
- func (uuo *UserUpdateOne) Save(ctx context.Context) (*User, error) {
- if v, ok := uuo.mutation.Age(); ok {
- if err := user.AgeValidator(v); err != nil {
- return nil, fmt.Errorf("ent: validator failed for field \"age\": %v", err)
- }
- }
- var (
- err error
- node *User
- )
- if len(uuo.hooks) == 0 {
- 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)
- }
- uuo.mutation = mutation
- node, err = uuo.sqlSave(ctx)
- return node, err
- })
- for i := len(uuo.hooks) - 1; i >= 0; i-- {
- 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 {
- u, err := uuo.Save(ctx)
- if err != nil {
- panic(err)
- }
- return u
- }
- // 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)
- }
- }
- func (uuo *UserUpdateOne) sqlSave(ctx context.Context) (u *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, fmt.Errorf("missing User.ID for update")
- }
- _spec.Node.ID.Value = id
- 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 nodes := uuo.mutation.RemovedCarsIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.O2M,
- Inverse: false,
- Table: user.CarsTable,
- Columns: []string{user.CarsColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: &sqlgraph.FieldSpec{
- Type: field.TypeInt,
- Column: car.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.CarsIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.O2M,
- Inverse: false,
- Table: user.CarsTable,
- Columns: []string{user.CarsColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: &sqlgraph.FieldSpec{
- Type: field.TypeInt,
- Column: car.FieldID,
- },
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _spec.Edges.Add = append(_spec.Edges.Add, edge)
- }
- if nodes := uuo.mutation.RemovedGroupsIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2M,
- Inverse: true,
- 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: true,
- 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)
- }
- u = &User{config: uuo.config}
- _spec.Assign = u.assignValues
- _spec.ScanValues = u.scanValues()
- if err = sqlgraph.UpdateNode(ctx, uuo.driver, _spec); err != nil {
- if _, ok := err.(*sqlgraph.NotFoundError); ok {
- err = &NotFoundError{user.Label}
- } else if cerr, ok := isSQLConstraintError(err); ok {
- err = cerr
- }
- return nil, err
- }
- return u, nil
- }
|