Files
ent/entc/integration/migrate/entv2/media/mutation.go

364 lines
9.6 KiB
Go

// Copyright 2019-present Facebook Inc. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
// Code generated by ent, DO NOT EDIT.
package media
import (
"context"
"fmt"
"entgo.io/ent"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/entc/integration/migrate/entv2/predicate"
)
// Mutation represents an operation that mutates the Media nodes in the graph.
type Mutation struct {
op ent.Op
typ string
source *string
source_uri *string
text *string
clearedFields map[string]struct{}
predicates []predicate.Media
}
// NewMutation creates a new Mutation for the Media entity.
func NewMutation(op ent.Op) *Mutation {
return &Mutation{
op: op,
typ: "Media",
clearedFields: make(map[string]struct{}),
}
}
// Predicates returns the list of predicates set on the mutation.
func (m *Mutation) Predicates() []predicate.Media {
return m.predicates
}
// SetSource sets the "source" field.
func (m *Mutation) SetSource(s string) {
m.source = &s
}
// Source returns the value of the "source" field in the mutation.
func (m *Mutation) Source() (r string, exists bool) {
v := m.source
if v == nil {
return
}
return *v, true
}
// ClearSource clears the value of the "source" field.
func (m *Mutation) ClearSource() {
m.source = nil
m.clearedFields[FieldSource] = struct{}{}
}
// SourceCleared returns if the "source" field was cleared in this mutation.
func (m *Mutation) SourceCleared() bool {
_, ok := m.clearedFields[FieldSource]
return ok
}
// ResetSource resets all changes to the "source" field.
func (m *Mutation) ResetSource() {
m.source = nil
delete(m.clearedFields, FieldSource)
}
// SetSourceURI sets the "source_uri" field.
func (m *Mutation) SetSourceURI(s string) {
m.source_uri = &s
}
// SourceURI returns the value of the "source_uri" field in the mutation.
func (m *Mutation) SourceURI() (r string, exists bool) {
v := m.source_uri
if v == nil {
return
}
return *v, true
}
// ClearSourceURI clears the value of the "source_uri" field.
func (m *Mutation) ClearSourceURI() {
m.source_uri = nil
m.clearedFields[FieldSourceURI] = struct{}{}
}
// SourceURICleared returns if the "source_uri" field was cleared in this mutation.
func (m *Mutation) SourceURICleared() bool {
_, ok := m.clearedFields[FieldSourceURI]
return ok
}
// ResetSourceURI resets all changes to the "source_uri" field.
func (m *Mutation) ResetSourceURI() {
m.source_uri = nil
delete(m.clearedFields, FieldSourceURI)
}
// SetText sets the "text" field.
func (m *Mutation) SetText(s string) {
m.text = &s
}
// Text returns the value of the "text" field in the mutation.
func (m *Mutation) Text() (r string, exists bool) {
v := m.text
if v == nil {
return
}
return *v, true
}
// ClearText clears the value of the "text" field.
func (m *Mutation) ClearText() {
m.text = nil
m.clearedFields[FieldText] = struct{}{}
}
// TextCleared returns if the "text" field was cleared in this mutation.
func (m *Mutation) TextCleared() bool {
_, ok := m.clearedFields[FieldText]
return ok
}
// ResetText resets all changes to the "text" field.
func (m *Mutation) ResetText() {
m.text = nil
delete(m.clearedFields, FieldText)
}
// Where appends a list predicates to the Mutation builder.
func (m *Mutation) Where(ps ...predicate.Media) {
m.predicates = append(m.predicates, ps...)
}
// WhereP appends storage-level predicates to the Mutation builder. Using this method,
// users can use type-assertion to append predicates that do not depend on any generated package.
func (m *Mutation) WhereP(ps ...func(*sql.Selector)) {
p := make([]predicate.Media, len(ps))
for i := range ps {
p[i] = ps[i]
}
m.Where(p...)
}
// Op returns the operation name.
func (m *Mutation) Op() ent.Op {
return m.op
}
// SetOp allows setting the mutation operation.
func (m *Mutation) SetOp(op ent.Op) {
m.op = op
}
// Type returns the node type of this mutation (Media).
func (m *Mutation) 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 *Mutation) Fields() []string {
fields := make([]string, 0, 3)
if m.source != nil {
fields = append(fields, FieldSource)
}
if m.source_uri != nil {
fields = append(fields, FieldSourceURI)
}
if m.text != nil {
fields = append(fields, FieldText)
}
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 *Mutation) Field(name string) (ent.Value, bool) {
switch name {
case FieldSource:
return m.Source()
case FieldSourceURI:
return m.SourceURI()
case FieldText:
return m.Text()
}
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 *Mutation) OldField(ctx context.Context, name string) (ent.Value, error) {
return nil, fmt.Errorf("unknown Media 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 *Mutation) SetField(name string, value ent.Value) error {
switch name {
case FieldSource:
v, ok := value.(string)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetSource(v)
return nil
case FieldSourceURI:
v, ok := value.(string)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetSourceURI(v)
return nil
case FieldText:
v, ok := value.(string)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetText(v)
return nil
}
return fmt.Errorf("unknown Media field %s", name)
}
// AddedFields returns all numeric fields that were incremented/decremented during
// this mutation.
func (m *Mutation) AddedFields() []string {
return nil
}
// 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 *Mutation) AddedField(name string) (ent.Value, bool) {
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 *Mutation) AddField(name string, value ent.Value) error {
switch name {
}
return fmt.Errorf("unknown Media numeric field %s", name)
}
// ClearedFields returns all nullable fields that were cleared during this
// mutation.
func (m *Mutation) ClearedFields() []string {
var fields []string
if m.FieldCleared(FieldSource) {
fields = append(fields, FieldSource)
}
if m.FieldCleared(FieldSourceURI) {
fields = append(fields, FieldSourceURI)
}
if m.FieldCleared(FieldText) {
fields = append(fields, FieldText)
}
return fields
}
// FieldCleared returns a boolean indicating if a field with the given name was
// cleared in this mutation.
func (m *Mutation) 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 *Mutation) ClearField(name string) error {
switch name {
case FieldSource:
m.ClearSource()
return nil
case FieldSourceURI:
m.ClearSourceURI()
return nil
case FieldText:
m.ClearText()
return nil
}
return fmt.Errorf("unknown Media 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 *Mutation) ResetField(name string) error {
switch name {
case FieldSource:
m.ResetSource()
return nil
case FieldSourceURI:
m.ResetSourceURI()
return nil
case FieldText:
m.ResetText()
return nil
}
return fmt.Errorf("unknown Media field %s", name)
}
// AddedEdges returns all edge names that were set/added in this mutation.
func (m *Mutation) 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 *Mutation) AddedIDs(name string) []ent.Value {
return nil
}
// RemovedEdges returns all edge names that were removed in this mutation.
func (m *Mutation) 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 *Mutation) RemovedIDs(name string) []ent.Value {
return nil
}
// ClearedEdges returns all edge names that were cleared in this mutation.
func (m *Mutation) 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 *Mutation) 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 *Mutation) ClearEdge(name string) error {
return fmt.Errorf("unknown Media 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 *Mutation) ResetEdge(name string) error {
return fmt.Errorf("unknown Media edge %s", name)
}