Add the event service
This commit is contained in:
+614
-1
@@ -11,6 +11,7 @@ import (
|
||||
|
||||
"entgo.io/ent"
|
||||
"entgo.io/ent/dialect/sql"
|
||||
"git.gorlug.de/code/ersteller/schema/ent/event"
|
||||
"git.gorlug.de/code/ersteller/schema/ent/generalqueue"
|
||||
"git.gorlug.de/code/ersteller/schema/ent/generalqueuestate"
|
||||
"git.gorlug.de/code/ersteller/schema/ent/predicate"
|
||||
@@ -25,10 +26,535 @@ const (
|
||||
OpUpdateOne = ent.OpUpdateOne
|
||||
|
||||
// Node types.
|
||||
TypeEvent = "Event"
|
||||
TypeGeneralQueue = "GeneralQueue"
|
||||
TypeGeneralQueueState = "GeneralQueueState"
|
||||
)
|
||||
|
||||
// EventMutation represents an operation that mutates the Event nodes in the graph.
|
||||
type EventMutation struct {
|
||||
config
|
||||
op Op
|
||||
typ string
|
||||
id *int
|
||||
name *string
|
||||
data *map[string]interface{}
|
||||
created_at *time.Time
|
||||
user_id *int
|
||||
adduser_id *int
|
||||
clearedFields map[string]struct{}
|
||||
done bool
|
||||
oldValue func(context.Context) (*Event, error)
|
||||
predicates []predicate.Event
|
||||
}
|
||||
|
||||
var _ ent.Mutation = (*EventMutation)(nil)
|
||||
|
||||
// eventOption allows management of the mutation configuration using functional options.
|
||||
type eventOption func(*EventMutation)
|
||||
|
||||
// newEventMutation creates new mutation for the Event entity.
|
||||
func newEventMutation(c config, op Op, opts ...eventOption) *EventMutation {
|
||||
m := &EventMutation{
|
||||
config: c,
|
||||
op: op,
|
||||
typ: TypeEvent,
|
||||
clearedFields: make(map[string]struct{}),
|
||||
}
|
||||
for _, opt := range opts {
|
||||
opt(m)
|
||||
}
|
||||
return m
|
||||
}
|
||||
|
||||
// withEventID sets the ID field of the mutation.
|
||||
func withEventID(id int) eventOption {
|
||||
return func(m *EventMutation) {
|
||||
var (
|
||||
err error
|
||||
once sync.Once
|
||||
value *Event
|
||||
)
|
||||
m.oldValue = func(ctx context.Context) (*Event, error) {
|
||||
once.Do(func() {
|
||||
if m.done {
|
||||
err = errors.New("querying old values post mutation is not allowed")
|
||||
} else {
|
||||
value, err = m.Client().Event.Get(ctx, id)
|
||||
}
|
||||
})
|
||||
return value, err
|
||||
}
|
||||
m.id = &id
|
||||
}
|
||||
}
|
||||
|
||||
// withEvent sets the old Event of the mutation.
|
||||
func withEvent(node *Event) eventOption {
|
||||
return func(m *EventMutation) {
|
||||
m.oldValue = func(context.Context) (*Event, error) {
|
||||
return node, nil
|
||||
}
|
||||
m.id = &node.ID
|
||||
}
|
||||
}
|
||||
|
||||
// Client returns a new `ent.Client` from the mutation. If the mutation was
|
||||
// executed in a transaction (ent.Tx), a transactional client is returned.
|
||||
func (m EventMutation) Client() *Client {
|
||||
client := &Client{config: m.config}
|
||||
client.init()
|
||||
return client
|
||||
}
|
||||
|
||||
// Tx returns an `ent.Tx` for mutations that were executed in transactions;
|
||||
// it returns an error otherwise.
|
||||
func (m EventMutation) Tx() (*Tx, error) {
|
||||
if _, ok := m.driver.(*txDriver); !ok {
|
||||
return nil, errors.New("ent: mutation is not running in a transaction")
|
||||
}
|
||||
tx := &Tx{config: m.config}
|
||||
tx.init()
|
||||
return tx, nil
|
||||
}
|
||||
|
||||
// ID returns the ID value in the mutation. Note that the ID is only available
|
||||
// if it was provided to the builder or after it was returned from the database.
|
||||
func (m *EventMutation) ID() (id int, exists bool) {
|
||||
if m.id == nil {
|
||||
return
|
||||
}
|
||||
return *m.id, true
|
||||
}
|
||||
|
||||
// IDs queries the database and returns the entity ids that match the mutation's predicate.
|
||||
// That means, if the mutation is applied within a transaction with an isolation level such
|
||||
// as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated
|
||||
// or updated by the mutation.
|
||||
func (m *EventMutation) IDs(ctx context.Context) ([]int, error) {
|
||||
switch {
|
||||
case m.op.Is(OpUpdateOne | OpDeleteOne):
|
||||
id, exists := m.ID()
|
||||
if exists {
|
||||
return []int{id}, nil
|
||||
}
|
||||
fallthrough
|
||||
case m.op.Is(OpUpdate | OpDelete):
|
||||
return m.Client().Event.Query().Where(m.predicates...).IDs(ctx)
|
||||
default:
|
||||
return nil, fmt.Errorf("IDs is not allowed on %s operations", m.op)
|
||||
}
|
||||
}
|
||||
|
||||
// SetName sets the "name" field.
|
||||
func (m *EventMutation) SetName(s string) {
|
||||
m.name = &s
|
||||
}
|
||||
|
||||
// Name returns the value of the "name" field in the mutation.
|
||||
func (m *EventMutation) Name() (r string, exists bool) {
|
||||
v := m.name
|
||||
if v == nil {
|
||||
return
|
||||
}
|
||||
return *v, true
|
||||
}
|
||||
|
||||
// OldName returns the old "name" field's value of the Event entity.
|
||||
// If the Event object wasn't provided to the builder, the object is fetched from the database.
|
||||
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
||||
func (m *EventMutation) OldName(ctx context.Context) (v string, err error) {
|
||||
if !m.op.Is(OpUpdateOne) {
|
||||
return v, errors.New("OldName is only allowed on UpdateOne operations")
|
||||
}
|
||||
if m.id == nil || m.oldValue == nil {
|
||||
return v, errors.New("OldName requires an ID field in the mutation")
|
||||
}
|
||||
oldValue, err := m.oldValue(ctx)
|
||||
if err != nil {
|
||||
return v, fmt.Errorf("querying old value for OldName: %w", err)
|
||||
}
|
||||
return oldValue.Name, nil
|
||||
}
|
||||
|
||||
// ResetName resets all changes to the "name" field.
|
||||
func (m *EventMutation) ResetName() {
|
||||
m.name = nil
|
||||
}
|
||||
|
||||
// SetData sets the "data" field.
|
||||
func (m *EventMutation) SetData(value map[string]interface{}) {
|
||||
m.data = &value
|
||||
}
|
||||
|
||||
// Data returns the value of the "data" field in the mutation.
|
||||
func (m *EventMutation) Data() (r map[string]interface{}, exists bool) {
|
||||
v := m.data
|
||||
if v == nil {
|
||||
return
|
||||
}
|
||||
return *v, true
|
||||
}
|
||||
|
||||
// OldData returns the old "data" field's value of the Event entity.
|
||||
// If the Event object wasn't provided to the builder, the object is fetched from the database.
|
||||
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
||||
func (m *EventMutation) OldData(ctx context.Context) (v map[string]interface{}, err error) {
|
||||
if !m.op.Is(OpUpdateOne) {
|
||||
return v, errors.New("OldData is only allowed on UpdateOne operations")
|
||||
}
|
||||
if m.id == nil || m.oldValue == nil {
|
||||
return v, errors.New("OldData requires an ID field in the mutation")
|
||||
}
|
||||
oldValue, err := m.oldValue(ctx)
|
||||
if err != nil {
|
||||
return v, fmt.Errorf("querying old value for OldData: %w", err)
|
||||
}
|
||||
return oldValue.Data, nil
|
||||
}
|
||||
|
||||
// ResetData resets all changes to the "data" field.
|
||||
func (m *EventMutation) ResetData() {
|
||||
m.data = nil
|
||||
}
|
||||
|
||||
// SetCreatedAt sets the "created_at" field.
|
||||
func (m *EventMutation) SetCreatedAt(t time.Time) {
|
||||
m.created_at = &t
|
||||
}
|
||||
|
||||
// CreatedAt returns the value of the "created_at" field in the mutation.
|
||||
func (m *EventMutation) CreatedAt() (r time.Time, exists bool) {
|
||||
v := m.created_at
|
||||
if v == nil {
|
||||
return
|
||||
}
|
||||
return *v, true
|
||||
}
|
||||
|
||||
// OldCreatedAt returns the old "created_at" field's value of the Event entity.
|
||||
// If the Event object wasn't provided to the builder, the object is fetched from the database.
|
||||
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
||||
func (m *EventMutation) OldCreatedAt(ctx context.Context) (v time.Time, err error) {
|
||||
if !m.op.Is(OpUpdateOne) {
|
||||
return v, errors.New("OldCreatedAt is only allowed on UpdateOne operations")
|
||||
}
|
||||
if m.id == nil || m.oldValue == nil {
|
||||
return v, errors.New("OldCreatedAt requires an ID field in the mutation")
|
||||
}
|
||||
oldValue, err := m.oldValue(ctx)
|
||||
if err != nil {
|
||||
return v, fmt.Errorf("querying old value for OldCreatedAt: %w", err)
|
||||
}
|
||||
return oldValue.CreatedAt, nil
|
||||
}
|
||||
|
||||
// ResetCreatedAt resets all changes to the "created_at" field.
|
||||
func (m *EventMutation) ResetCreatedAt() {
|
||||
m.created_at = nil
|
||||
}
|
||||
|
||||
// SetUserID sets the "user_id" field.
|
||||
func (m *EventMutation) SetUserID(i int) {
|
||||
m.user_id = &i
|
||||
m.adduser_id = nil
|
||||
}
|
||||
|
||||
// UserID returns the value of the "user_id" field in the mutation.
|
||||
func (m *EventMutation) UserID() (r int, exists bool) {
|
||||
v := m.user_id
|
||||
if v == nil {
|
||||
return
|
||||
}
|
||||
return *v, true
|
||||
}
|
||||
|
||||
// OldUserID returns the old "user_id" field's value of the Event entity.
|
||||
// If the Event object wasn't provided to the builder, the object is fetched from the database.
|
||||
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
||||
func (m *EventMutation) OldUserID(ctx context.Context) (v int, err error) {
|
||||
if !m.op.Is(OpUpdateOne) {
|
||||
return v, errors.New("OldUserID is only allowed on UpdateOne operations")
|
||||
}
|
||||
if m.id == nil || m.oldValue == nil {
|
||||
return v, errors.New("OldUserID requires an ID field in the mutation")
|
||||
}
|
||||
oldValue, err := m.oldValue(ctx)
|
||||
if err != nil {
|
||||
return v, fmt.Errorf("querying old value for OldUserID: %w", err)
|
||||
}
|
||||
return oldValue.UserID, nil
|
||||
}
|
||||
|
||||
// AddUserID adds i to the "user_id" field.
|
||||
func (m *EventMutation) AddUserID(i int) {
|
||||
if m.adduser_id != nil {
|
||||
*m.adduser_id += i
|
||||
} else {
|
||||
m.adduser_id = &i
|
||||
}
|
||||
}
|
||||
|
||||
// AddedUserID returns the value that was added to the "user_id" field in this mutation.
|
||||
func (m *EventMutation) AddedUserID() (r int, exists bool) {
|
||||
v := m.adduser_id
|
||||
if v == nil {
|
||||
return
|
||||
}
|
||||
return *v, true
|
||||
}
|
||||
|
||||
// ResetUserID resets all changes to the "user_id" field.
|
||||
func (m *EventMutation) ResetUserID() {
|
||||
m.user_id = nil
|
||||
m.adduser_id = nil
|
||||
}
|
||||
|
||||
// Where appends a list predicates to the EventMutation builder.
|
||||
func (m *EventMutation) Where(ps ...predicate.Event) {
|
||||
m.predicates = append(m.predicates, ps...)
|
||||
}
|
||||
|
||||
// WhereP appends storage-level predicates to the EventMutation builder. Using this method,
|
||||
// users can use type-assertion to append predicates that do not depend on any generated package.
|
||||
func (m *EventMutation) WhereP(ps ...func(*sql.Selector)) {
|
||||
p := make([]predicate.Event, len(ps))
|
||||
for i := range ps {
|
||||
p[i] = ps[i]
|
||||
}
|
||||
m.Where(p...)
|
||||
}
|
||||
|
||||
// Op returns the operation name.
|
||||
func (m *EventMutation) Op() Op {
|
||||
return m.op
|
||||
}
|
||||
|
||||
// SetOp allows setting the mutation operation.
|
||||
func (m *EventMutation) SetOp(op Op) {
|
||||
m.op = op
|
||||
}
|
||||
|
||||
// Type returns the node type of this mutation (Event).
|
||||
func (m *EventMutation) Type() string {
|
||||
return m.typ
|
||||
}
|
||||
|
||||
// Fields returns all fields that were changed during this mutation. Note that in
|
||||
// order to get all numeric fields that were incremented/decremented, call
|
||||
// AddedFields().
|
||||
func (m *EventMutation) Fields() []string {
|
||||
fields := make([]string, 0, 4)
|
||||
if m.name != nil {
|
||||
fields = append(fields, event.FieldName)
|
||||
}
|
||||
if m.data != nil {
|
||||
fields = append(fields, event.FieldData)
|
||||
}
|
||||
if m.created_at != nil {
|
||||
fields = append(fields, event.FieldCreatedAt)
|
||||
}
|
||||
if m.user_id != nil {
|
||||
fields = append(fields, event.FieldUserID)
|
||||
}
|
||||
return fields
|
||||
}
|
||||
|
||||
// Field returns the value of a field with the given name. The second boolean
|
||||
// return value indicates that this field was not set, or was not defined in the
|
||||
// schema.
|
||||
func (m *EventMutation) Field(name string) (ent.Value, bool) {
|
||||
switch name {
|
||||
case event.FieldName:
|
||||
return m.Name()
|
||||
case event.FieldData:
|
||||
return m.Data()
|
||||
case event.FieldCreatedAt:
|
||||
return m.CreatedAt()
|
||||
case event.FieldUserID:
|
||||
return m.UserID()
|
||||
}
|
||||
return nil, false
|
||||
}
|
||||
|
||||
// OldField returns the old value of the field from the database. An error is
|
||||
// returned if the mutation operation is not UpdateOne, or the query to the
|
||||
// database failed.
|
||||
func (m *EventMutation) OldField(ctx context.Context, name string) (ent.Value, error) {
|
||||
switch name {
|
||||
case event.FieldName:
|
||||
return m.OldName(ctx)
|
||||
case event.FieldData:
|
||||
return m.OldData(ctx)
|
||||
case event.FieldCreatedAt:
|
||||
return m.OldCreatedAt(ctx)
|
||||
case event.FieldUserID:
|
||||
return m.OldUserID(ctx)
|
||||
}
|
||||
return nil, fmt.Errorf("unknown Event field %s", name)
|
||||
}
|
||||
|
||||
// SetField sets the value of a field with the given name. It returns an error if
|
||||
// the field is not defined in the schema, or if the type mismatched the field
|
||||
// type.
|
||||
func (m *EventMutation) SetField(name string, value ent.Value) error {
|
||||
switch name {
|
||||
case event.FieldName:
|
||||
v, ok := value.(string)
|
||||
if !ok {
|
||||
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
||||
}
|
||||
m.SetName(v)
|
||||
return nil
|
||||
case event.FieldData:
|
||||
v, ok := value.(map[string]interface{})
|
||||
if !ok {
|
||||
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
||||
}
|
||||
m.SetData(v)
|
||||
return nil
|
||||
case event.FieldCreatedAt:
|
||||
v, ok := value.(time.Time)
|
||||
if !ok {
|
||||
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
||||
}
|
||||
m.SetCreatedAt(v)
|
||||
return nil
|
||||
case event.FieldUserID:
|
||||
v, ok := value.(int)
|
||||
if !ok {
|
||||
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
||||
}
|
||||
m.SetUserID(v)
|
||||
return nil
|
||||
}
|
||||
return fmt.Errorf("unknown Event field %s", name)
|
||||
}
|
||||
|
||||
// AddedFields returns all numeric fields that were incremented/decremented during
|
||||
// this mutation.
|
||||
func (m *EventMutation) AddedFields() []string {
|
||||
var fields []string
|
||||
if m.adduser_id != nil {
|
||||
fields = append(fields, event.FieldUserID)
|
||||
}
|
||||
return fields
|
||||
}
|
||||
|
||||
// AddedField returns the numeric value that was incremented/decremented on a field
|
||||
// with the given name. The second boolean return value indicates that this field
|
||||
// was not set, or was not defined in the schema.
|
||||
func (m *EventMutation) AddedField(name string) (ent.Value, bool) {
|
||||
switch name {
|
||||
case event.FieldUserID:
|
||||
return m.AddedUserID()
|
||||
}
|
||||
return nil, false
|
||||
}
|
||||
|
||||
// AddField adds the value to the field with the given name. It returns an error if
|
||||
// the field is not defined in the schema, or if the type mismatched the field
|
||||
// type.
|
||||
func (m *EventMutation) AddField(name string, value ent.Value) error {
|
||||
switch name {
|
||||
case event.FieldUserID:
|
||||
v, ok := value.(int)
|
||||
if !ok {
|
||||
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
||||
}
|
||||
m.AddUserID(v)
|
||||
return nil
|
||||
}
|
||||
return fmt.Errorf("unknown Event numeric field %s", name)
|
||||
}
|
||||
|
||||
// ClearedFields returns all nullable fields that were cleared during this
|
||||
// mutation.
|
||||
func (m *EventMutation) ClearedFields() []string {
|
||||
return nil
|
||||
}
|
||||
|
||||
// FieldCleared returns a boolean indicating if a field with the given name was
|
||||
// cleared in this mutation.
|
||||
func (m *EventMutation) FieldCleared(name string) bool {
|
||||
_, ok := m.clearedFields[name]
|
||||
return ok
|
||||
}
|
||||
|
||||
// ClearField clears the value of the field with the given name. It returns an
|
||||
// error if the field is not defined in the schema.
|
||||
func (m *EventMutation) ClearField(name string) error {
|
||||
return fmt.Errorf("unknown Event nullable field %s", name)
|
||||
}
|
||||
|
||||
// ResetField resets all changes in the mutation for the field with the given name.
|
||||
// It returns an error if the field is not defined in the schema.
|
||||
func (m *EventMutation) ResetField(name string) error {
|
||||
switch name {
|
||||
case event.FieldName:
|
||||
m.ResetName()
|
||||
return nil
|
||||
case event.FieldData:
|
||||
m.ResetData()
|
||||
return nil
|
||||
case event.FieldCreatedAt:
|
||||
m.ResetCreatedAt()
|
||||
return nil
|
||||
case event.FieldUserID:
|
||||
m.ResetUserID()
|
||||
return nil
|
||||
}
|
||||
return fmt.Errorf("unknown Event field %s", name)
|
||||
}
|
||||
|
||||
// AddedEdges returns all edge names that were set/added in this mutation.
|
||||
func (m *EventMutation) AddedEdges() []string {
|
||||
edges := make([]string, 0, 0)
|
||||
return edges
|
||||
}
|
||||
|
||||
// AddedIDs returns all IDs (to other nodes) that were added for the given edge
|
||||
// name in this mutation.
|
||||
func (m *EventMutation) AddedIDs(name string) []ent.Value {
|
||||
return nil
|
||||
}
|
||||
|
||||
// RemovedEdges returns all edge names that were removed in this mutation.
|
||||
func (m *EventMutation) RemovedEdges() []string {
|
||||
edges := make([]string, 0, 0)
|
||||
return edges
|
||||
}
|
||||
|
||||
// RemovedIDs returns all IDs (to other nodes) that were removed for the edge with
|
||||
// the given name in this mutation.
|
||||
func (m *EventMutation) RemovedIDs(name string) []ent.Value {
|
||||
return nil
|
||||
}
|
||||
|
||||
// ClearedEdges returns all edge names that were cleared in this mutation.
|
||||
func (m *EventMutation) ClearedEdges() []string {
|
||||
edges := make([]string, 0, 0)
|
||||
return edges
|
||||
}
|
||||
|
||||
// EdgeCleared returns a boolean which indicates if the edge with the given name
|
||||
// was cleared in this mutation.
|
||||
func (m *EventMutation) EdgeCleared(name string) bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// ClearEdge clears the value of the edge with the given name. It returns an error
|
||||
// if that edge is not defined in the schema.
|
||||
func (m *EventMutation) ClearEdge(name string) error {
|
||||
return fmt.Errorf("unknown Event unique edge %s", name)
|
||||
}
|
||||
|
||||
// ResetEdge resets all changes to the edge with the given name in this mutation.
|
||||
// It returns an error if the edge is not defined in the schema.
|
||||
func (m *EventMutation) ResetEdge(name string) error {
|
||||
return fmt.Errorf("unknown Event edge %s", name)
|
||||
}
|
||||
|
||||
// GeneralQueueMutation represents an operation that mutates the GeneralQueue nodes in the graph.
|
||||
type GeneralQueueMutation struct {
|
||||
config
|
||||
@@ -48,6 +574,8 @@ type GeneralQueueMutation struct {
|
||||
created_at *time.Time
|
||||
updated_at *time.Time
|
||||
processed_at *time.Time
|
||||
user_id *int
|
||||
adduser_id *int
|
||||
clearedFields map[string]struct{}
|
||||
done bool
|
||||
oldValue func(context.Context) (*GeneralQueue, error)
|
||||
@@ -640,6 +1168,62 @@ func (m *GeneralQueueMutation) ResetProcessedAt() {
|
||||
delete(m.clearedFields, generalqueue.FieldProcessedAt)
|
||||
}
|
||||
|
||||
// SetUserID sets the "user_id" field.
|
||||
func (m *GeneralQueueMutation) SetUserID(i int) {
|
||||
m.user_id = &i
|
||||
m.adduser_id = nil
|
||||
}
|
||||
|
||||
// UserID returns the value of the "user_id" field in the mutation.
|
||||
func (m *GeneralQueueMutation) UserID() (r int, exists bool) {
|
||||
v := m.user_id
|
||||
if v == nil {
|
||||
return
|
||||
}
|
||||
return *v, true
|
||||
}
|
||||
|
||||
// OldUserID returns the old "user_id" field's value of the GeneralQueue entity.
|
||||
// If the GeneralQueue object wasn't provided to the builder, the object is fetched from the database.
|
||||
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
||||
func (m *GeneralQueueMutation) OldUserID(ctx context.Context) (v int, err error) {
|
||||
if !m.op.Is(OpUpdateOne) {
|
||||
return v, errors.New("OldUserID is only allowed on UpdateOne operations")
|
||||
}
|
||||
if m.id == nil || m.oldValue == nil {
|
||||
return v, errors.New("OldUserID requires an ID field in the mutation")
|
||||
}
|
||||
oldValue, err := m.oldValue(ctx)
|
||||
if err != nil {
|
||||
return v, fmt.Errorf("querying old value for OldUserID: %w", err)
|
||||
}
|
||||
return oldValue.UserID, nil
|
||||
}
|
||||
|
||||
// AddUserID adds i to the "user_id" field.
|
||||
func (m *GeneralQueueMutation) AddUserID(i int) {
|
||||
if m.adduser_id != nil {
|
||||
*m.adduser_id += i
|
||||
} else {
|
||||
m.adduser_id = &i
|
||||
}
|
||||
}
|
||||
|
||||
// AddedUserID returns the value that was added to the "user_id" field in this mutation.
|
||||
func (m *GeneralQueueMutation) AddedUserID() (r int, exists bool) {
|
||||
v := m.adduser_id
|
||||
if v == nil {
|
||||
return
|
||||
}
|
||||
return *v, true
|
||||
}
|
||||
|
||||
// ResetUserID resets all changes to the "user_id" field.
|
||||
func (m *GeneralQueueMutation) ResetUserID() {
|
||||
m.user_id = nil
|
||||
m.adduser_id = nil
|
||||
}
|
||||
|
||||
// Where appends a list predicates to the GeneralQueueMutation builder.
|
||||
func (m *GeneralQueueMutation) Where(ps ...predicate.GeneralQueue) {
|
||||
m.predicates = append(m.predicates, ps...)
|
||||
@@ -674,7 +1258,7 @@ func (m *GeneralQueueMutation) Type() string {
|
||||
// order to get all numeric fields that were incremented/decremented, call
|
||||
// AddedFields().
|
||||
func (m *GeneralQueueMutation) Fields() []string {
|
||||
fields := make([]string, 0, 11)
|
||||
fields := make([]string, 0, 12)
|
||||
if m.name != nil {
|
||||
fields = append(fields, generalqueue.FieldName)
|
||||
}
|
||||
@@ -708,6 +1292,9 @@ func (m *GeneralQueueMutation) Fields() []string {
|
||||
if m.processed_at != nil {
|
||||
fields = append(fields, generalqueue.FieldProcessedAt)
|
||||
}
|
||||
if m.user_id != nil {
|
||||
fields = append(fields, generalqueue.FieldUserID)
|
||||
}
|
||||
return fields
|
||||
}
|
||||
|
||||
@@ -738,6 +1325,8 @@ func (m *GeneralQueueMutation) Field(name string) (ent.Value, bool) {
|
||||
return m.UpdatedAt()
|
||||
case generalqueue.FieldProcessedAt:
|
||||
return m.ProcessedAt()
|
||||
case generalqueue.FieldUserID:
|
||||
return m.UserID()
|
||||
}
|
||||
return nil, false
|
||||
}
|
||||
@@ -769,6 +1358,8 @@ func (m *GeneralQueueMutation) OldField(ctx context.Context, name string) (ent.V
|
||||
return m.OldUpdatedAt(ctx)
|
||||
case generalqueue.FieldProcessedAt:
|
||||
return m.OldProcessedAt(ctx)
|
||||
case generalqueue.FieldUserID:
|
||||
return m.OldUserID(ctx)
|
||||
}
|
||||
return nil, fmt.Errorf("unknown GeneralQueue field %s", name)
|
||||
}
|
||||
@@ -855,6 +1446,13 @@ func (m *GeneralQueueMutation) SetField(name string, value ent.Value) error {
|
||||
}
|
||||
m.SetProcessedAt(v)
|
||||
return nil
|
||||
case generalqueue.FieldUserID:
|
||||
v, ok := value.(int)
|
||||
if !ok {
|
||||
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
||||
}
|
||||
m.SetUserID(v)
|
||||
return nil
|
||||
}
|
||||
return fmt.Errorf("unknown GeneralQueue field %s", name)
|
||||
}
|
||||
@@ -869,6 +1467,9 @@ func (m *GeneralQueueMutation) AddedFields() []string {
|
||||
if m.addmax_retries != nil {
|
||||
fields = append(fields, generalqueue.FieldMaxRetries)
|
||||
}
|
||||
if m.adduser_id != nil {
|
||||
fields = append(fields, generalqueue.FieldUserID)
|
||||
}
|
||||
return fields
|
||||
}
|
||||
|
||||
@@ -881,6 +1482,8 @@ func (m *GeneralQueueMutation) AddedField(name string) (ent.Value, bool) {
|
||||
return m.AddedNumberOfTries()
|
||||
case generalqueue.FieldMaxRetries:
|
||||
return m.AddedMaxRetries()
|
||||
case generalqueue.FieldUserID:
|
||||
return m.AddedUserID()
|
||||
}
|
||||
return nil, false
|
||||
}
|
||||
@@ -904,6 +1507,13 @@ func (m *GeneralQueueMutation) AddField(name string, value ent.Value) error {
|
||||
}
|
||||
m.AddMaxRetries(v)
|
||||
return nil
|
||||
case generalqueue.FieldUserID:
|
||||
v, ok := value.(int)
|
||||
if !ok {
|
||||
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
||||
}
|
||||
m.AddUserID(v)
|
||||
return nil
|
||||
}
|
||||
return fmt.Errorf("unknown GeneralQueue numeric field %s", name)
|
||||
}
|
||||
@@ -991,6 +1601,9 @@ func (m *GeneralQueueMutation) ResetField(name string) error {
|
||||
case generalqueue.FieldProcessedAt:
|
||||
m.ResetProcessedAt()
|
||||
return nil
|
||||
case generalqueue.FieldUserID:
|
||||
m.ResetUserID()
|
||||
return nil
|
||||
}
|
||||
return fmt.Errorf("unknown GeneralQueue field %s", name)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user