Files
ersteller/starter/ent/googleauth_update.go
T
Achim Rohn a15ca501b8 Add authentication, styling needs to be fixed
# Conflicts:
#	starter/ent/runtime.go
#	starter/go.mod
#	starter/go.sum
#	starter/routes/routing.go
2026-03-21 14:00:47 +00:00

363 lines
10 KiB
Go

// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
"errors"
"fmt"
"time"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
"git.gorlug.de/code/ersteller/starter/ent/googleauth"
"git.gorlug.de/code/ersteller/starter/ent/predicate"
"git.gorlug.de/code/ersteller/starter/ent/schema"
"git.gorlug.de/code/ersteller/starter/ent/user"
)
// GoogleAuthUpdate is the builder for updating GoogleAuth entities.
type GoogleAuthUpdate struct {
config
hooks []Hook
mutation *GoogleAuthMutation
}
// Where appends a list predicates to the GoogleAuthUpdate builder.
func (_u *GoogleAuthUpdate) Where(ps ...predicate.GoogleAuth) *GoogleAuthUpdate {
_u.mutation.Where(ps...)
return _u
}
// SetUpdatedAt sets the "updated_at" field.
func (_u *GoogleAuthUpdate) SetUpdatedAt(v time.Time) *GoogleAuthUpdate {
_u.mutation.SetUpdatedAt(v)
return _u
}
// SetCredentials sets the "credentials" field.
func (_u *GoogleAuthUpdate) SetCredentials(v schema.Credentials) *GoogleAuthUpdate {
_u.mutation.SetCredentials(v)
return _u
}
// SetNillableCredentials sets the "credentials" field if the given value is not nil.
func (_u *GoogleAuthUpdate) SetNillableCredentials(v *schema.Credentials) *GoogleAuthUpdate {
if v != nil {
_u.SetCredentials(*v)
}
return _u
}
// SetUserID sets the "user" edge to the User entity by ID.
func (_u *GoogleAuthUpdate) SetUserID(id int) *GoogleAuthUpdate {
_u.mutation.SetUserID(id)
return _u
}
// SetUser sets the "user" edge to the User entity.
func (_u *GoogleAuthUpdate) SetUser(v *User) *GoogleAuthUpdate {
return _u.SetUserID(v.ID)
}
// Mutation returns the GoogleAuthMutation object of the builder.
func (_u *GoogleAuthUpdate) Mutation() *GoogleAuthMutation {
return _u.mutation
}
// ClearUser clears the "user" edge to the User entity.
func (_u *GoogleAuthUpdate) ClearUser() *GoogleAuthUpdate {
_u.mutation.ClearUser()
return _u
}
// Save executes the query and returns the number of nodes affected by the update operation.
func (_u *GoogleAuthUpdate) Save(ctx context.Context) (int, error) {
_u.defaults()
return withHooks(ctx, _u.sqlSave, _u.mutation, _u.hooks)
}
// SaveX is like Save, but panics if an error occurs.
func (_u *GoogleAuthUpdate) SaveX(ctx context.Context) int {
affected, err := _u.Save(ctx)
if err != nil {
panic(err)
}
return affected
}
// Exec executes the query.
func (_u *GoogleAuthUpdate) Exec(ctx context.Context) error {
_, err := _u.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (_u *GoogleAuthUpdate) ExecX(ctx context.Context) {
if err := _u.Exec(ctx); err != nil {
panic(err)
}
}
// defaults sets the default values of the builder before save.
func (_u *GoogleAuthUpdate) defaults() {
if _, ok := _u.mutation.UpdatedAt(); !ok {
v := googleauth.UpdateDefaultUpdatedAt()
_u.mutation.SetUpdatedAt(v)
}
}
// check runs all checks and user-defined validators on the builder.
func (_u *GoogleAuthUpdate) check() error {
if _u.mutation.UserCleared() && len(_u.mutation.UserIDs()) > 0 {
return errors.New(`ent: clearing a required unique edge "GoogleAuth.user"`)
}
return nil
}
func (_u *GoogleAuthUpdate) sqlSave(ctx context.Context) (_node int, err error) {
if err := _u.check(); err != nil {
return _node, err
}
_spec := sqlgraph.NewUpdateSpec(googleauth.Table, googleauth.Columns, sqlgraph.NewFieldSpec(googleauth.FieldID, field.TypeInt))
if ps := _u.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if value, ok := _u.mutation.UpdatedAt(); ok {
_spec.SetField(googleauth.FieldUpdatedAt, field.TypeTime, value)
}
if value, ok := _u.mutation.Credentials(); ok {
_spec.SetField(googleauth.FieldCredentials, field.TypeJSON, value)
}
if _u.mutation.UserCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: false,
Table: googleauth.UserTable,
Columns: []string{googleauth.UserColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := _u.mutation.UserIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: false,
Table: googleauth.UserTable,
Columns: []string{googleauth.UserColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if _node, err = sqlgraph.UpdateNodes(ctx, _u.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{googleauth.Label}
} else if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return 0, err
}
_u.mutation.done = true
return _node, nil
}
// GoogleAuthUpdateOne is the builder for updating a single GoogleAuth entity.
type GoogleAuthUpdateOne struct {
config
fields []string
hooks []Hook
mutation *GoogleAuthMutation
}
// SetUpdatedAt sets the "updated_at" field.
func (_u *GoogleAuthUpdateOne) SetUpdatedAt(v time.Time) *GoogleAuthUpdateOne {
_u.mutation.SetUpdatedAt(v)
return _u
}
// SetCredentials sets the "credentials" field.
func (_u *GoogleAuthUpdateOne) SetCredentials(v schema.Credentials) *GoogleAuthUpdateOne {
_u.mutation.SetCredentials(v)
return _u
}
// SetNillableCredentials sets the "credentials" field if the given value is not nil.
func (_u *GoogleAuthUpdateOne) SetNillableCredentials(v *schema.Credentials) *GoogleAuthUpdateOne {
if v != nil {
_u.SetCredentials(*v)
}
return _u
}
// SetUserID sets the "user" edge to the User entity by ID.
func (_u *GoogleAuthUpdateOne) SetUserID(id int) *GoogleAuthUpdateOne {
_u.mutation.SetUserID(id)
return _u
}
// SetUser sets the "user" edge to the User entity.
func (_u *GoogleAuthUpdateOne) SetUser(v *User) *GoogleAuthUpdateOne {
return _u.SetUserID(v.ID)
}
// Mutation returns the GoogleAuthMutation object of the builder.
func (_u *GoogleAuthUpdateOne) Mutation() *GoogleAuthMutation {
return _u.mutation
}
// ClearUser clears the "user" edge to the User entity.
func (_u *GoogleAuthUpdateOne) ClearUser() *GoogleAuthUpdateOne {
_u.mutation.ClearUser()
return _u
}
// Where appends a list predicates to the GoogleAuthUpdate builder.
func (_u *GoogleAuthUpdateOne) Where(ps ...predicate.GoogleAuth) *GoogleAuthUpdateOne {
_u.mutation.Where(ps...)
return _u
}
// Select allows selecting one or more fields (columns) of the returned entity.
// The default is selecting all fields defined in the entity schema.
func (_u *GoogleAuthUpdateOne) Select(field string, fields ...string) *GoogleAuthUpdateOne {
_u.fields = append([]string{field}, fields...)
return _u
}
// Save executes the query and returns the updated GoogleAuth entity.
func (_u *GoogleAuthUpdateOne) Save(ctx context.Context) (*GoogleAuth, error) {
_u.defaults()
return withHooks(ctx, _u.sqlSave, _u.mutation, _u.hooks)
}
// SaveX is like Save, but panics if an error occurs.
func (_u *GoogleAuthUpdateOne) SaveX(ctx context.Context) *GoogleAuth {
node, err := _u.Save(ctx)
if err != nil {
panic(err)
}
return node
}
// Exec executes the query on the entity.
func (_u *GoogleAuthUpdateOne) Exec(ctx context.Context) error {
_, err := _u.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (_u *GoogleAuthUpdateOne) ExecX(ctx context.Context) {
if err := _u.Exec(ctx); err != nil {
panic(err)
}
}
// defaults sets the default values of the builder before save.
func (_u *GoogleAuthUpdateOne) defaults() {
if _, ok := _u.mutation.UpdatedAt(); !ok {
v := googleauth.UpdateDefaultUpdatedAt()
_u.mutation.SetUpdatedAt(v)
}
}
// check runs all checks and user-defined validators on the builder.
func (_u *GoogleAuthUpdateOne) check() error {
if _u.mutation.UserCleared() && len(_u.mutation.UserIDs()) > 0 {
return errors.New(`ent: clearing a required unique edge "GoogleAuth.user"`)
}
return nil
}
func (_u *GoogleAuthUpdateOne) sqlSave(ctx context.Context) (_node *GoogleAuth, err error) {
if err := _u.check(); err != nil {
return _node, err
}
_spec := sqlgraph.NewUpdateSpec(googleauth.Table, googleauth.Columns, sqlgraph.NewFieldSpec(googleauth.FieldID, field.TypeInt))
id, ok := _u.mutation.ID()
if !ok {
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "GoogleAuth.id" for update`)}
}
_spec.Node.ID.Value = id
if fields := _u.fields; len(fields) > 0 {
_spec.Node.Columns = make([]string, 0, len(fields))
_spec.Node.Columns = append(_spec.Node.Columns, googleauth.FieldID)
for _, f := range fields {
if !googleauth.ValidColumn(f) {
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
}
if f != googleauth.FieldID {
_spec.Node.Columns = append(_spec.Node.Columns, f)
}
}
}
if ps := _u.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if value, ok := _u.mutation.UpdatedAt(); ok {
_spec.SetField(googleauth.FieldUpdatedAt, field.TypeTime, value)
}
if value, ok := _u.mutation.Credentials(); ok {
_spec.SetField(googleauth.FieldCredentials, field.TypeJSON, value)
}
if _u.mutation.UserCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: false,
Table: googleauth.UserTable,
Columns: []string{googleauth.UserColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := _u.mutation.UserIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: false,
Table: googleauth.UserTable,
Columns: []string{googleauth.UserColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
_node = &GoogleAuth{config: _u.config}
_spec.Assign = _node.assignValues
_spec.ScanValues = _node.scanValues
if err = sqlgraph.UpdateNode(ctx, _u.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{googleauth.Label}
} else if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return nil, err
}
_u.mutation.done = true
return _node, nil
}