319 lines
8.8 KiB
Go
319 lines
8.8 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"portfolio_api/database/ent/predicate"
|
|
"portfolio_api/database/ent/project"
|
|
"portfolio_api/database/ent/team"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// ProjectUpdate is the builder for updating Project entities.
|
|
type ProjectUpdate struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *ProjectMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the ProjectUpdate builder.
|
|
func (pu *ProjectUpdate) Where(ps ...predicate.Project) *ProjectUpdate {
|
|
pu.mutation.Where(ps...)
|
|
return pu
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (pu *ProjectUpdate) SetName(s string) *ProjectUpdate {
|
|
pu.mutation.SetName(s)
|
|
return pu
|
|
}
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
func (pu *ProjectUpdate) SetNillableName(s *string) *ProjectUpdate {
|
|
if s != nil {
|
|
pu.SetName(*s)
|
|
}
|
|
return pu
|
|
}
|
|
|
|
// SetTeamID sets the "team" edge to the Team entity by ID.
|
|
func (pu *ProjectUpdate) SetTeamID(id int) *ProjectUpdate {
|
|
pu.mutation.SetTeamID(id)
|
|
return pu
|
|
}
|
|
|
|
// SetNillableTeamID sets the "team" edge to the Team entity by ID if the given value is not nil.
|
|
func (pu *ProjectUpdate) SetNillableTeamID(id *int) *ProjectUpdate {
|
|
if id != nil {
|
|
pu = pu.SetTeamID(*id)
|
|
}
|
|
return pu
|
|
}
|
|
|
|
// SetTeam sets the "team" edge to the Team entity.
|
|
func (pu *ProjectUpdate) SetTeam(t *Team) *ProjectUpdate {
|
|
return pu.SetTeamID(t.ID)
|
|
}
|
|
|
|
// Mutation returns the ProjectMutation object of the builder.
|
|
func (pu *ProjectUpdate) Mutation() *ProjectMutation {
|
|
return pu.mutation
|
|
}
|
|
|
|
// ClearTeam clears the "team" edge to the Team entity.
|
|
func (pu *ProjectUpdate) ClearTeam() *ProjectUpdate {
|
|
pu.mutation.ClearTeam()
|
|
return pu
|
|
}
|
|
|
|
// Save executes the query and returns the number of nodes affected by the update operation.
|
|
func (pu *ProjectUpdate) Save(ctx context.Context) (int, error) {
|
|
return withHooks(ctx, pu.sqlSave, pu.mutation, pu.hooks)
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (pu *ProjectUpdate) SaveX(ctx context.Context) int {
|
|
affected, err := pu.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return affected
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (pu *ProjectUpdate) Exec(ctx context.Context) error {
|
|
_, err := pu.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (pu *ProjectUpdate) ExecX(ctx context.Context) {
|
|
if err := pu.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (pu *ProjectUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
|
_spec := sqlgraph.NewUpdateSpec(project.Table, project.Columns, sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt))
|
|
if ps := pu.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := pu.mutation.Name(); ok {
|
|
_spec.SetField(project.FieldName, field.TypeString, value)
|
|
}
|
|
if pu.mutation.TeamCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: true,
|
|
Table: project.TeamTable,
|
|
Columns: []string{project.TeamColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := pu.mutation.TeamIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: true,
|
|
Table: project.TeamTable,
|
|
Columns: []string{project.TeamColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
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, pu.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{project.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return 0, err
|
|
}
|
|
pu.mutation.done = true
|
|
return n, nil
|
|
}
|
|
|
|
// ProjectUpdateOne is the builder for updating a single Project entity.
|
|
type ProjectUpdateOne struct {
|
|
config
|
|
fields []string
|
|
hooks []Hook
|
|
mutation *ProjectMutation
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (puo *ProjectUpdateOne) SetName(s string) *ProjectUpdateOne {
|
|
puo.mutation.SetName(s)
|
|
return puo
|
|
}
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
func (puo *ProjectUpdateOne) SetNillableName(s *string) *ProjectUpdateOne {
|
|
if s != nil {
|
|
puo.SetName(*s)
|
|
}
|
|
return puo
|
|
}
|
|
|
|
// SetTeamID sets the "team" edge to the Team entity by ID.
|
|
func (puo *ProjectUpdateOne) SetTeamID(id int) *ProjectUpdateOne {
|
|
puo.mutation.SetTeamID(id)
|
|
return puo
|
|
}
|
|
|
|
// SetNillableTeamID sets the "team" edge to the Team entity by ID if the given value is not nil.
|
|
func (puo *ProjectUpdateOne) SetNillableTeamID(id *int) *ProjectUpdateOne {
|
|
if id != nil {
|
|
puo = puo.SetTeamID(*id)
|
|
}
|
|
return puo
|
|
}
|
|
|
|
// SetTeam sets the "team" edge to the Team entity.
|
|
func (puo *ProjectUpdateOne) SetTeam(t *Team) *ProjectUpdateOne {
|
|
return puo.SetTeamID(t.ID)
|
|
}
|
|
|
|
// Mutation returns the ProjectMutation object of the builder.
|
|
func (puo *ProjectUpdateOne) Mutation() *ProjectMutation {
|
|
return puo.mutation
|
|
}
|
|
|
|
// ClearTeam clears the "team" edge to the Team entity.
|
|
func (puo *ProjectUpdateOne) ClearTeam() *ProjectUpdateOne {
|
|
puo.mutation.ClearTeam()
|
|
return puo
|
|
}
|
|
|
|
// Where appends a list predicates to the ProjectUpdate builder.
|
|
func (puo *ProjectUpdateOne) Where(ps ...predicate.Project) *ProjectUpdateOne {
|
|
puo.mutation.Where(ps...)
|
|
return puo
|
|
}
|
|
|
|
// Select allows selecting one or more fields (columns) of the returned entity.
|
|
// The default is selecting all fields defined in the entity schema.
|
|
func (puo *ProjectUpdateOne) Select(field string, fields ...string) *ProjectUpdateOne {
|
|
puo.fields = append([]string{field}, fields...)
|
|
return puo
|
|
}
|
|
|
|
// Save executes the query and returns the updated Project entity.
|
|
func (puo *ProjectUpdateOne) Save(ctx context.Context) (*Project, error) {
|
|
return withHooks(ctx, puo.sqlSave, puo.mutation, puo.hooks)
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (puo *ProjectUpdateOne) SaveX(ctx context.Context) *Project {
|
|
node, err := puo.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// Exec executes the query on the entity.
|
|
func (puo *ProjectUpdateOne) Exec(ctx context.Context) error {
|
|
_, err := puo.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (puo *ProjectUpdateOne) ExecX(ctx context.Context) {
|
|
if err := puo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (puo *ProjectUpdateOne) sqlSave(ctx context.Context) (_node *Project, err error) {
|
|
_spec := sqlgraph.NewUpdateSpec(project.Table, project.Columns, sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt))
|
|
id, ok := puo.mutation.ID()
|
|
if !ok {
|
|
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Project.id" for update`)}
|
|
}
|
|
_spec.Node.ID.Value = id
|
|
if fields := puo.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, project.FieldID)
|
|
for _, f := range fields {
|
|
if !project.ValidColumn(f) {
|
|
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
if f != project.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, f)
|
|
}
|
|
}
|
|
}
|
|
if ps := puo.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := puo.mutation.Name(); ok {
|
|
_spec.SetField(project.FieldName, field.TypeString, value)
|
|
}
|
|
if puo.mutation.TeamCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: true,
|
|
Table: project.TeamTable,
|
|
Columns: []string{project.TeamColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := puo.mutation.TeamIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: true,
|
|
Table: project.TeamTable,
|
|
Columns: []string{project.TeamColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
_node = &Project{config: puo.config}
|
|
_spec.Assign = _node.assignValues
|
|
_spec.ScanValues = _node.scanValues
|
|
if err = sqlgraph.UpdateNode(ctx, puo.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{project.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return nil, err
|
|
}
|
|
puo.mutation.done = true
|
|
return _node, nil
|
|
}
|