|
@@ -0,0 +1,846 @@
|
|
|
+// Code generated by ent, DO NOT EDIT.
|
|
|
+
|
|
|
+package ent
|
|
|
+
|
|
|
+import (
|
|
|
+ "context"
|
|
|
+ "errors"
|
|
|
+ "fmt"
|
|
|
+ "time"
|
|
|
+ "wechat-api/ent/token"
|
|
|
+
|
|
|
+ "entgo.io/ent/dialect/sql"
|
|
|
+ "entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
+ "entgo.io/ent/schema/field"
|
|
|
+)
|
|
|
+
|
|
|
+// TokenCreate is the builder for creating a Token entity.
|
|
|
+type TokenCreate struct {
|
|
|
+ config
|
|
|
+ mutation *TokenMutation
|
|
|
+ hooks []Hook
|
|
|
+ conflict []sql.ConflictOption
|
|
|
+}
|
|
|
+
|
|
|
+// SetCreatedAt sets the "created_at" field.
|
|
|
+func (tc *TokenCreate) SetCreatedAt(t time.Time) *TokenCreate {
|
|
|
+ tc.mutation.SetCreatedAt(t)
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
|
|
|
+func (tc *TokenCreate) SetNillableCreatedAt(t *time.Time) *TokenCreate {
|
|
|
+ if t != nil {
|
|
|
+ tc.SetCreatedAt(*t)
|
|
|
+ }
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetUpdatedAt sets the "updated_at" field.
|
|
|
+func (tc *TokenCreate) SetUpdatedAt(t time.Time) *TokenCreate {
|
|
|
+ tc.mutation.SetUpdatedAt(t)
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
|
|
|
+func (tc *TokenCreate) SetNillableUpdatedAt(t *time.Time) *TokenCreate {
|
|
|
+ if t != nil {
|
|
|
+ tc.SetUpdatedAt(*t)
|
|
|
+ }
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetDeletedAt sets the "deleted_at" field.
|
|
|
+func (tc *TokenCreate) SetDeletedAt(t time.Time) *TokenCreate {
|
|
|
+ tc.mutation.SetDeletedAt(t)
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
|
|
|
+func (tc *TokenCreate) SetNillableDeletedAt(t *time.Time) *TokenCreate {
|
|
|
+ if t != nil {
|
|
|
+ tc.SetDeletedAt(*t)
|
|
|
+ }
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetExpireAt sets the "expire_at" field.
|
|
|
+func (tc *TokenCreate) SetExpireAt(t time.Time) *TokenCreate {
|
|
|
+ tc.mutation.SetExpireAt(t)
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetNillableExpireAt sets the "expire_at" field if the given value is not nil.
|
|
|
+func (tc *TokenCreate) SetNillableExpireAt(t *time.Time) *TokenCreate {
|
|
|
+ if t != nil {
|
|
|
+ tc.SetExpireAt(*t)
|
|
|
+ }
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetToken sets the "token" field.
|
|
|
+func (tc *TokenCreate) SetToken(s string) *TokenCreate {
|
|
|
+ tc.mutation.SetToken(s)
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetNillableToken sets the "token" field if the given value is not nil.
|
|
|
+func (tc *TokenCreate) SetNillableToken(s *string) *TokenCreate {
|
|
|
+ if s != nil {
|
|
|
+ tc.SetToken(*s)
|
|
|
+ }
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetMAC sets the "mac" field.
|
|
|
+func (tc *TokenCreate) SetMAC(s string) *TokenCreate {
|
|
|
+ tc.mutation.SetMAC(s)
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetNillableMAC sets the "mac" field if the given value is not nil.
|
|
|
+func (tc *TokenCreate) SetNillableMAC(s *string) *TokenCreate {
|
|
|
+ if s != nil {
|
|
|
+ tc.SetMAC(*s)
|
|
|
+ }
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// SetID sets the "id" field.
|
|
|
+func (tc *TokenCreate) SetID(u uint64) *TokenCreate {
|
|
|
+ tc.mutation.SetID(u)
|
|
|
+ return tc
|
|
|
+}
|
|
|
+
|
|
|
+// Mutation returns the TokenMutation object of the builder.
|
|
|
+func (tc *TokenCreate) Mutation() *TokenMutation {
|
|
|
+ return tc.mutation
|
|
|
+}
|
|
|
+
|
|
|
+// Save creates the Token in the database.
|
|
|
+func (tc *TokenCreate) Save(ctx context.Context) (*Token, error) {
|
|
|
+ if err := tc.defaults(); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return withHooks(ctx, tc.sqlSave, tc.mutation, tc.hooks)
|
|
|
+}
|
|
|
+
|
|
|
+// SaveX calls Save and panics if Save returns an error.
|
|
|
+func (tc *TokenCreate) SaveX(ctx context.Context) *Token {
|
|
|
+ v, err := tc.Save(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return v
|
|
|
+}
|
|
|
+
|
|
|
+// Exec executes the query.
|
|
|
+func (tc *TokenCreate) Exec(ctx context.Context) error {
|
|
|
+ _, err := tc.Save(ctx)
|
|
|
+ return err
|
|
|
+}
|
|
|
+
|
|
|
+// ExecX is like Exec, but panics if an error occurs.
|
|
|
+func (tc *TokenCreate) ExecX(ctx context.Context) {
|
|
|
+ if err := tc.Exec(ctx); err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// defaults sets the default values of the builder before save.
|
|
|
+func (tc *TokenCreate) defaults() error {
|
|
|
+ if _, ok := tc.mutation.CreatedAt(); !ok {
|
|
|
+ if token.DefaultCreatedAt == nil {
|
|
|
+ return fmt.Errorf("ent: uninitialized token.DefaultCreatedAt (forgotten import ent/runtime?)")
|
|
|
+ }
|
|
|
+ v := token.DefaultCreatedAt()
|
|
|
+ tc.mutation.SetCreatedAt(v)
|
|
|
+ }
|
|
|
+ if _, ok := tc.mutation.UpdatedAt(); !ok {
|
|
|
+ if token.DefaultUpdatedAt == nil {
|
|
|
+ return fmt.Errorf("ent: uninitialized token.DefaultUpdatedAt (forgotten import ent/runtime?)")
|
|
|
+ }
|
|
|
+ v := token.DefaultUpdatedAt()
|
|
|
+ tc.mutation.SetUpdatedAt(v)
|
|
|
+ }
|
|
|
+ if _, ok := tc.mutation.Token(); !ok {
|
|
|
+ v := token.DefaultToken
|
|
|
+ tc.mutation.SetToken(v)
|
|
|
+ }
|
|
|
+ if _, ok := tc.mutation.MAC(); !ok {
|
|
|
+ v := token.DefaultMAC
|
|
|
+ tc.mutation.SetMAC(v)
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+// check runs all checks and user-defined validators on the builder.
|
|
|
+func (tc *TokenCreate) check() error {
|
|
|
+ if _, ok := tc.mutation.CreatedAt(); !ok {
|
|
|
+ return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "Token.created_at"`)}
|
|
|
+ }
|
|
|
+ if _, ok := tc.mutation.UpdatedAt(); !ok {
|
|
|
+ return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "Token.updated_at"`)}
|
|
|
+ }
|
|
|
+ if _, ok := tc.mutation.MAC(); !ok {
|
|
|
+ return &ValidationError{Name: "mac", err: errors.New(`ent: missing required field "Token.mac"`)}
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+func (tc *TokenCreate) sqlSave(ctx context.Context) (*Token, error) {
|
|
|
+ if err := tc.check(); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ _node, _spec := tc.createSpec()
|
|
|
+ if err := sqlgraph.CreateNode(ctx, tc.driver, _spec); err != nil {
|
|
|
+ if sqlgraph.IsConstraintError(err) {
|
|
|
+ err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
|
+ }
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ if _spec.ID.Value != _node.ID {
|
|
|
+ id := _spec.ID.Value.(int64)
|
|
|
+ _node.ID = uint64(id)
|
|
|
+ }
|
|
|
+ tc.mutation.id = &_node.ID
|
|
|
+ tc.mutation.done = true
|
|
|
+ return _node, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (tc *TokenCreate) createSpec() (*Token, *sqlgraph.CreateSpec) {
|
|
|
+ var (
|
|
|
+ _node = &Token{config: tc.config}
|
|
|
+ _spec = sqlgraph.NewCreateSpec(token.Table, sqlgraph.NewFieldSpec(token.FieldID, field.TypeUint64))
|
|
|
+ )
|
|
|
+ _spec.OnConflict = tc.conflict
|
|
|
+ if id, ok := tc.mutation.ID(); ok {
|
|
|
+ _node.ID = id
|
|
|
+ _spec.ID.Value = id
|
|
|
+ }
|
|
|
+ if value, ok := tc.mutation.CreatedAt(); ok {
|
|
|
+ _spec.SetField(token.FieldCreatedAt, field.TypeTime, value)
|
|
|
+ _node.CreatedAt = value
|
|
|
+ }
|
|
|
+ if value, ok := tc.mutation.UpdatedAt(); ok {
|
|
|
+ _spec.SetField(token.FieldUpdatedAt, field.TypeTime, value)
|
|
|
+ _node.UpdatedAt = value
|
|
|
+ }
|
|
|
+ if value, ok := tc.mutation.DeletedAt(); ok {
|
|
|
+ _spec.SetField(token.FieldDeletedAt, field.TypeTime, value)
|
|
|
+ _node.DeletedAt = value
|
|
|
+ }
|
|
|
+ if value, ok := tc.mutation.ExpireAt(); ok {
|
|
|
+ _spec.SetField(token.FieldExpireAt, field.TypeTime, value)
|
|
|
+ _node.ExpireAt = value
|
|
|
+ }
|
|
|
+ if value, ok := tc.mutation.Token(); ok {
|
|
|
+ _spec.SetField(token.FieldToken, field.TypeString, value)
|
|
|
+ _node.Token = value
|
|
|
+ }
|
|
|
+ if value, ok := tc.mutation.MAC(); ok {
|
|
|
+ _spec.SetField(token.FieldMAC, field.TypeString, value)
|
|
|
+ _node.MAC = value
|
|
|
+ }
|
|
|
+ return _node, _spec
|
|
|
+}
|
|
|
+
|
|
|
+// OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
|
|
|
+// of the `INSERT` statement. For example:
|
|
|
+//
|
|
|
+// client.Token.Create().
|
|
|
+// SetCreatedAt(v).
|
|
|
+// OnConflict(
|
|
|
+// // Update the row with the new values
|
|
|
+// // the was proposed for insertion.
|
|
|
+// sql.ResolveWithNewValues(),
|
|
|
+// ).
|
|
|
+// // Override some of the fields with custom
|
|
|
+// // update values.
|
|
|
+// Update(func(u *ent.TokenUpsert) {
|
|
|
+// SetCreatedAt(v+v).
|
|
|
+// }).
|
|
|
+// Exec(ctx)
|
|
|
+func (tc *TokenCreate) OnConflict(opts ...sql.ConflictOption) *TokenUpsertOne {
|
|
|
+ tc.conflict = opts
|
|
|
+ return &TokenUpsertOne{
|
|
|
+ create: tc,
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// OnConflictColumns calls `OnConflict` and configures the columns
|
|
|
+// as conflict target. Using this option is equivalent to using:
|
|
|
+//
|
|
|
+// client.Token.Create().
|
|
|
+// OnConflict(sql.ConflictColumns(columns...)).
|
|
|
+// Exec(ctx)
|
|
|
+func (tc *TokenCreate) OnConflictColumns(columns ...string) *TokenUpsertOne {
|
|
|
+ tc.conflict = append(tc.conflict, sql.ConflictColumns(columns...))
|
|
|
+ return &TokenUpsertOne{
|
|
|
+ create: tc,
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+type (
|
|
|
+ // TokenUpsertOne is the builder for "upsert"-ing
|
|
|
+ // one Token node.
|
|
|
+ TokenUpsertOne struct {
|
|
|
+ create *TokenCreate
|
|
|
+ }
|
|
|
+
|
|
|
+ // TokenUpsert is the "OnConflict" setter.
|
|
|
+ TokenUpsert struct {
|
|
|
+ *sql.UpdateSet
|
|
|
+ }
|
|
|
+)
|
|
|
+
|
|
|
+// SetUpdatedAt sets the "updated_at" field.
|
|
|
+func (u *TokenUpsert) SetUpdatedAt(v time.Time) *TokenUpsert {
|
|
|
+ u.Set(token.FieldUpdatedAt, v)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsert) UpdateUpdatedAt() *TokenUpsert {
|
|
|
+ u.SetExcluded(token.FieldUpdatedAt)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// SetDeletedAt sets the "deleted_at" field.
|
|
|
+func (u *TokenUpsert) SetDeletedAt(v time.Time) *TokenUpsert {
|
|
|
+ u.Set(token.FieldDeletedAt, v)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsert) UpdateDeletedAt() *TokenUpsert {
|
|
|
+ u.SetExcluded(token.FieldDeletedAt)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// ClearDeletedAt clears the value of the "deleted_at" field.
|
|
|
+func (u *TokenUpsert) ClearDeletedAt() *TokenUpsert {
|
|
|
+ u.SetNull(token.FieldDeletedAt)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// SetExpireAt sets the "expire_at" field.
|
|
|
+func (u *TokenUpsert) SetExpireAt(v time.Time) *TokenUpsert {
|
|
|
+ u.Set(token.FieldExpireAt, v)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateExpireAt sets the "expire_at" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsert) UpdateExpireAt() *TokenUpsert {
|
|
|
+ u.SetExcluded(token.FieldExpireAt)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// ClearExpireAt clears the value of the "expire_at" field.
|
|
|
+func (u *TokenUpsert) ClearExpireAt() *TokenUpsert {
|
|
|
+ u.SetNull(token.FieldExpireAt)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// SetToken sets the "token" field.
|
|
|
+func (u *TokenUpsert) SetToken(v string) *TokenUpsert {
|
|
|
+ u.Set(token.FieldToken, v)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateToken sets the "token" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsert) UpdateToken() *TokenUpsert {
|
|
|
+ u.SetExcluded(token.FieldToken)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// ClearToken clears the value of the "token" field.
|
|
|
+func (u *TokenUpsert) ClearToken() *TokenUpsert {
|
|
|
+ u.SetNull(token.FieldToken)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// SetMAC sets the "mac" field.
|
|
|
+func (u *TokenUpsert) SetMAC(v string) *TokenUpsert {
|
|
|
+ u.Set(token.FieldMAC, v)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateMAC sets the "mac" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsert) UpdateMAC() *TokenUpsert {
|
|
|
+ u.SetExcluded(token.FieldMAC)
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
|
|
|
+// Using this option is equivalent to using:
|
|
|
+//
|
|
|
+// client.Token.Create().
|
|
|
+// OnConflict(
|
|
|
+// sql.ResolveWithNewValues(),
|
|
|
+// sql.ResolveWith(func(u *sql.UpdateSet) {
|
|
|
+// u.SetIgnore(token.FieldID)
|
|
|
+// }),
|
|
|
+// ).
|
|
|
+// Exec(ctx)
|
|
|
+func (u *TokenUpsertOne) UpdateNewValues() *TokenUpsertOne {
|
|
|
+ u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
|
|
|
+ u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
|
|
|
+ if _, exists := u.create.mutation.ID(); exists {
|
|
|
+ s.SetIgnore(token.FieldID)
|
|
|
+ }
|
|
|
+ if _, exists := u.create.mutation.CreatedAt(); exists {
|
|
|
+ s.SetIgnore(token.FieldCreatedAt)
|
|
|
+ }
|
|
|
+ }))
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// Ignore sets each column to itself in case of conflict.
|
|
|
+// Using this option is equivalent to using:
|
|
|
+//
|
|
|
+// client.Token.Create().
|
|
|
+// OnConflict(sql.ResolveWithIgnore()).
|
|
|
+// Exec(ctx)
|
|
|
+func (u *TokenUpsertOne) Ignore() *TokenUpsertOne {
|
|
|
+ u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// DoNothing configures the conflict_action to `DO NOTHING`.
|
|
|
+// Supported only by SQLite and PostgreSQL.
|
|
|
+func (u *TokenUpsertOne) DoNothing() *TokenUpsertOne {
|
|
|
+ u.create.conflict = append(u.create.conflict, sql.DoNothing())
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// Update allows overriding fields `UPDATE` values. See the TokenCreate.OnConflict
|
|
|
+// documentation for more info.
|
|
|
+func (u *TokenUpsertOne) Update(set func(*TokenUpsert)) *TokenUpsertOne {
|
|
|
+ u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
|
|
|
+ set(&TokenUpsert{UpdateSet: update})
|
|
|
+ }))
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// SetUpdatedAt sets the "updated_at" field.
|
|
|
+func (u *TokenUpsertOne) SetUpdatedAt(v time.Time) *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.SetUpdatedAt(v)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsertOne) UpdateUpdatedAt() *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.UpdateUpdatedAt()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// SetDeletedAt sets the "deleted_at" field.
|
|
|
+func (u *TokenUpsertOne) SetDeletedAt(v time.Time) *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.SetDeletedAt(v)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsertOne) UpdateDeletedAt() *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.UpdateDeletedAt()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// ClearDeletedAt clears the value of the "deleted_at" field.
|
|
|
+func (u *TokenUpsertOne) ClearDeletedAt() *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.ClearDeletedAt()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// SetExpireAt sets the "expire_at" field.
|
|
|
+func (u *TokenUpsertOne) SetExpireAt(v time.Time) *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.SetExpireAt(v)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateExpireAt sets the "expire_at" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsertOne) UpdateExpireAt() *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.UpdateExpireAt()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// ClearExpireAt clears the value of the "expire_at" field.
|
|
|
+func (u *TokenUpsertOne) ClearExpireAt() *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.ClearExpireAt()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// SetToken sets the "token" field.
|
|
|
+func (u *TokenUpsertOne) SetToken(v string) *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.SetToken(v)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateToken sets the "token" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsertOne) UpdateToken() *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.UpdateToken()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// ClearToken clears the value of the "token" field.
|
|
|
+func (u *TokenUpsertOne) ClearToken() *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.ClearToken()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// SetMAC sets the "mac" field.
|
|
|
+func (u *TokenUpsertOne) SetMAC(v string) *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.SetMAC(v)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateMAC sets the "mac" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsertOne) UpdateMAC() *TokenUpsertOne {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.UpdateMAC()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// Exec executes the query.
|
|
|
+func (u *TokenUpsertOne) Exec(ctx context.Context) error {
|
|
|
+ if len(u.create.conflict) == 0 {
|
|
|
+ return errors.New("ent: missing options for TokenCreate.OnConflict")
|
|
|
+ }
|
|
|
+ return u.create.Exec(ctx)
|
|
|
+}
|
|
|
+
|
|
|
+// ExecX is like Exec, but panics if an error occurs.
|
|
|
+func (u *TokenUpsertOne) ExecX(ctx context.Context) {
|
|
|
+ if err := u.create.Exec(ctx); err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// Exec executes the UPSERT query and returns the inserted/updated ID.
|
|
|
+func (u *TokenUpsertOne) ID(ctx context.Context) (id uint64, err error) {
|
|
|
+ node, err := u.create.Save(ctx)
|
|
|
+ if err != nil {
|
|
|
+ return id, err
|
|
|
+ }
|
|
|
+ return node.ID, nil
|
|
|
+}
|
|
|
+
|
|
|
+// IDX is like ID, but panics if an error occurs.
|
|
|
+func (u *TokenUpsertOne) IDX(ctx context.Context) uint64 {
|
|
|
+ id, err := u.ID(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return id
|
|
|
+}
|
|
|
+
|
|
|
+// TokenCreateBulk is the builder for creating many Token entities in bulk.
|
|
|
+type TokenCreateBulk struct {
|
|
|
+ config
|
|
|
+ err error
|
|
|
+ builders []*TokenCreate
|
|
|
+ conflict []sql.ConflictOption
|
|
|
+}
|
|
|
+
|
|
|
+// Save creates the Token entities in the database.
|
|
|
+func (tcb *TokenCreateBulk) Save(ctx context.Context) ([]*Token, error) {
|
|
|
+ if tcb.err != nil {
|
|
|
+ return nil, tcb.err
|
|
|
+ }
|
|
|
+ specs := make([]*sqlgraph.CreateSpec, len(tcb.builders))
|
|
|
+ nodes := make([]*Token, len(tcb.builders))
|
|
|
+ mutators := make([]Mutator, len(tcb.builders))
|
|
|
+ for i := range tcb.builders {
|
|
|
+ func(i int, root context.Context) {
|
|
|
+ builder := tcb.builders[i]
|
|
|
+ builder.defaults()
|
|
|
+ var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
|
+ mutation, ok := m.(*TokenMutation)
|
|
|
+ if !ok {
|
|
|
+ return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
|
+ }
|
|
|
+ if err := builder.check(); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ builder.mutation = mutation
|
|
|
+ var err error
|
|
|
+ nodes[i], specs[i] = builder.createSpec()
|
|
|
+ if i < len(mutators)-1 {
|
|
|
+ _, err = mutators[i+1].Mutate(root, tcb.builders[i+1].mutation)
|
|
|
+ } else {
|
|
|
+ spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
|
|
|
+ spec.OnConflict = tcb.conflict
|
|
|
+ // Invoke the actual operation on the latest mutation in the chain.
|
|
|
+ if err = sqlgraph.BatchCreate(ctx, tcb.driver, spec); err != nil {
|
|
|
+ if sqlgraph.IsConstraintError(err) {
|
|
|
+ err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ mutation.id = &nodes[i].ID
|
|
|
+ if specs[i].ID.Value != nil && nodes[i].ID == 0 {
|
|
|
+ id := specs[i].ID.Value.(int64)
|
|
|
+ nodes[i].ID = uint64(id)
|
|
|
+ }
|
|
|
+ mutation.done = true
|
|
|
+ return nodes[i], nil
|
|
|
+ })
|
|
|
+ for i := len(builder.hooks) - 1; i >= 0; i-- {
|
|
|
+ mut = builder.hooks[i](mut)
|
|
|
+ }
|
|
|
+ mutators[i] = mut
|
|
|
+ }(i, ctx)
|
|
|
+ }
|
|
|
+ if len(mutators) > 0 {
|
|
|
+ if _, err := mutators[0].Mutate(ctx, tcb.builders[0].mutation); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return nodes, nil
|
|
|
+}
|
|
|
+
|
|
|
+// SaveX is like Save, but panics if an error occurs.
|
|
|
+func (tcb *TokenCreateBulk) SaveX(ctx context.Context) []*Token {
|
|
|
+ v, err := tcb.Save(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return v
|
|
|
+}
|
|
|
+
|
|
|
+// Exec executes the query.
|
|
|
+func (tcb *TokenCreateBulk) Exec(ctx context.Context) error {
|
|
|
+ _, err := tcb.Save(ctx)
|
|
|
+ return err
|
|
|
+}
|
|
|
+
|
|
|
+// ExecX is like Exec, but panics if an error occurs.
|
|
|
+func (tcb *TokenCreateBulk) ExecX(ctx context.Context) {
|
|
|
+ if err := tcb.Exec(ctx); err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
|
|
|
+// of the `INSERT` statement. For example:
|
|
|
+//
|
|
|
+// client.Token.CreateBulk(builders...).
|
|
|
+// OnConflict(
|
|
|
+// // Update the row with the new values
|
|
|
+// // the was proposed for insertion.
|
|
|
+// sql.ResolveWithNewValues(),
|
|
|
+// ).
|
|
|
+// // Override some of the fields with custom
|
|
|
+// // update values.
|
|
|
+// Update(func(u *ent.TokenUpsert) {
|
|
|
+// SetCreatedAt(v+v).
|
|
|
+// }).
|
|
|
+// Exec(ctx)
|
|
|
+func (tcb *TokenCreateBulk) OnConflict(opts ...sql.ConflictOption) *TokenUpsertBulk {
|
|
|
+ tcb.conflict = opts
|
|
|
+ return &TokenUpsertBulk{
|
|
|
+ create: tcb,
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// OnConflictColumns calls `OnConflict` and configures the columns
|
|
|
+// as conflict target. Using this option is equivalent to using:
|
|
|
+//
|
|
|
+// client.Token.Create().
|
|
|
+// OnConflict(sql.ConflictColumns(columns...)).
|
|
|
+// Exec(ctx)
|
|
|
+func (tcb *TokenCreateBulk) OnConflictColumns(columns ...string) *TokenUpsertBulk {
|
|
|
+ tcb.conflict = append(tcb.conflict, sql.ConflictColumns(columns...))
|
|
|
+ return &TokenUpsertBulk{
|
|
|
+ create: tcb,
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// TokenUpsertBulk is the builder for "upsert"-ing
|
|
|
+// a bulk of Token nodes.
|
|
|
+type TokenUpsertBulk struct {
|
|
|
+ create *TokenCreateBulk
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateNewValues updates the mutable fields using the new values that
|
|
|
+// were set on create. Using this option is equivalent to using:
|
|
|
+//
|
|
|
+// client.Token.Create().
|
|
|
+// OnConflict(
|
|
|
+// sql.ResolveWithNewValues(),
|
|
|
+// sql.ResolveWith(func(u *sql.UpdateSet) {
|
|
|
+// u.SetIgnore(token.FieldID)
|
|
|
+// }),
|
|
|
+// ).
|
|
|
+// Exec(ctx)
|
|
|
+func (u *TokenUpsertBulk) UpdateNewValues() *TokenUpsertBulk {
|
|
|
+ u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
|
|
|
+ u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
|
|
|
+ for _, b := range u.create.builders {
|
|
|
+ if _, exists := b.mutation.ID(); exists {
|
|
|
+ s.SetIgnore(token.FieldID)
|
|
|
+ }
|
|
|
+ if _, exists := b.mutation.CreatedAt(); exists {
|
|
|
+ s.SetIgnore(token.FieldCreatedAt)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }))
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// Ignore sets each column to itself in case of conflict.
|
|
|
+// Using this option is equivalent to using:
|
|
|
+//
|
|
|
+// client.Token.Create().
|
|
|
+// OnConflict(sql.ResolveWithIgnore()).
|
|
|
+// Exec(ctx)
|
|
|
+func (u *TokenUpsertBulk) Ignore() *TokenUpsertBulk {
|
|
|
+ u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// DoNothing configures the conflict_action to `DO NOTHING`.
|
|
|
+// Supported only by SQLite and PostgreSQL.
|
|
|
+func (u *TokenUpsertBulk) DoNothing() *TokenUpsertBulk {
|
|
|
+ u.create.conflict = append(u.create.conflict, sql.DoNothing())
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// Update allows overriding fields `UPDATE` values. See the TokenCreateBulk.OnConflict
|
|
|
+// documentation for more info.
|
|
|
+func (u *TokenUpsertBulk) Update(set func(*TokenUpsert)) *TokenUpsertBulk {
|
|
|
+ u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
|
|
|
+ set(&TokenUpsert{UpdateSet: update})
|
|
|
+ }))
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+// SetUpdatedAt sets the "updated_at" field.
|
|
|
+func (u *TokenUpsertBulk) SetUpdatedAt(v time.Time) *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.SetUpdatedAt(v)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsertBulk) UpdateUpdatedAt() *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.UpdateUpdatedAt()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// SetDeletedAt sets the "deleted_at" field.
|
|
|
+func (u *TokenUpsertBulk) SetDeletedAt(v time.Time) *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.SetDeletedAt(v)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsertBulk) UpdateDeletedAt() *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.UpdateDeletedAt()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// ClearDeletedAt clears the value of the "deleted_at" field.
|
|
|
+func (u *TokenUpsertBulk) ClearDeletedAt() *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.ClearDeletedAt()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// SetExpireAt sets the "expire_at" field.
|
|
|
+func (u *TokenUpsertBulk) SetExpireAt(v time.Time) *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.SetExpireAt(v)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateExpireAt sets the "expire_at" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsertBulk) UpdateExpireAt() *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.UpdateExpireAt()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// ClearExpireAt clears the value of the "expire_at" field.
|
|
|
+func (u *TokenUpsertBulk) ClearExpireAt() *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.ClearExpireAt()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// SetToken sets the "token" field.
|
|
|
+func (u *TokenUpsertBulk) SetToken(v string) *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.SetToken(v)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateToken sets the "token" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsertBulk) UpdateToken() *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.UpdateToken()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// ClearToken clears the value of the "token" field.
|
|
|
+func (u *TokenUpsertBulk) ClearToken() *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.ClearToken()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// SetMAC sets the "mac" field.
|
|
|
+func (u *TokenUpsertBulk) SetMAC(v string) *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.SetMAC(v)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateMAC sets the "mac" field to the value that was provided on create.
|
|
|
+func (u *TokenUpsertBulk) UpdateMAC() *TokenUpsertBulk {
|
|
|
+ return u.Update(func(s *TokenUpsert) {
|
|
|
+ s.UpdateMAC()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// Exec executes the query.
|
|
|
+func (u *TokenUpsertBulk) Exec(ctx context.Context) error {
|
|
|
+ if u.create.err != nil {
|
|
|
+ return u.create.err
|
|
|
+ }
|
|
|
+ for i, b := range u.create.builders {
|
|
|
+ if len(b.conflict) != 0 {
|
|
|
+ return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the TokenCreateBulk instead", i)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if len(u.create.conflict) == 0 {
|
|
|
+ return errors.New("ent: missing options for TokenCreateBulk.OnConflict")
|
|
|
+ }
|
|
|
+ return u.create.Exec(ctx)
|
|
|
+}
|
|
|
+
|
|
|
+// ExecX is like Exec, but panics if an error occurs.
|
|
|
+func (u *TokenUpsertBulk) ExecX(ctx context.Context) {
|
|
|
+ if err := u.create.Exec(ctx); err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+}
|