1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
|
// 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 entc, DO NOT EDIT.
package ent
import (
"context"
"errors"
"fmt"
"github.com/facebook/ent/dialect/sql/sqlgraph"
"github.com/facebook/ent/entc/integration/ent/fieldtype"
"github.com/facebook/ent/entc/integration/ent/file"
"github.com/facebook/ent/entc/integration/ent/filetype"
"github.com/facebook/ent/entc/integration/ent/user"
"github.com/facebook/ent/schema/field"
)
// FileCreate is the builder for creating a File entity.
type FileCreate struct {
config
mutation *FileMutation
hooks []Hook
}
// SetSize sets the "size" field.
func (fc *FileCreate) SetSize(i int) *FileCreate {
fc.mutation.SetSize(i)
return fc
}
// SetNillableSize sets the "size" field if the given value is not nil.
func (fc *FileCreate) SetNillableSize(i *int) *FileCreate {
if i != nil {
fc.SetSize(*i)
}
return fc
}
// SetName sets the "name" field.
func (fc *FileCreate) SetName(s string) *FileCreate {
fc.mutation.SetName(s)
return fc
}
// SetUser sets the "user" field.
func (fc *FileCreate) SetUser(s string) *FileCreate {
fc.mutation.SetUser(s)
return fc
}
// SetNillableUser sets the "user" field if the given value is not nil.
func (fc *FileCreate) SetNillableUser(s *string) *FileCreate {
if s != nil {
fc.SetUser(*s)
}
return fc
}
// SetGroup sets the "group" field.
func (fc *FileCreate) SetGroup(s string) *FileCreate {
fc.mutation.SetGroup(s)
return fc
}
// SetNillableGroup sets the "group" field if the given value is not nil.
func (fc *FileCreate) SetNillableGroup(s *string) *FileCreate {
if s != nil {
fc.SetGroup(*s)
}
return fc
}
// SetOp sets the "op" field.
func (fc *FileCreate) SetOp(b bool) *FileCreate {
fc.mutation.SetOp(b)
return fc
}
// SetNillableOp sets the "op" field if the given value is not nil.
func (fc *FileCreate) SetNillableOp(b *bool) *FileCreate {
if b != nil {
fc.SetOp(*b)
}
return fc
}
// SetOwnerID sets the "owner" edge to the User entity by ID.
func (fc *FileCreate) SetOwnerID(id int) *FileCreate {
fc.mutation.SetOwnerID(id)
return fc
}
// SetNillableOwnerID sets the "owner" edge to the User entity by ID if the given value is not nil.
func (fc *FileCreate) SetNillableOwnerID(id *int) *FileCreate {
if id != nil {
fc = fc.SetOwnerID(*id)
}
return fc
}
// SetOwner sets the "owner" edge to the User entity.
func (fc *FileCreate) SetOwner(u *User) *FileCreate {
return fc.SetOwnerID(u.ID)
}
// SetTypeID sets the "type" edge to the FileType entity by ID.
func (fc *FileCreate) SetTypeID(id int) *FileCreate {
fc.mutation.SetTypeID(id)
return fc
}
// SetNillableTypeID sets the "type" edge to the FileType entity by ID if the given value is not nil.
func (fc *FileCreate) SetNillableTypeID(id *int) *FileCreate {
if id != nil {
fc = fc.SetTypeID(*id)
}
return fc
}
// SetType sets the "type" edge to the FileType entity.
func (fc *FileCreate) SetType(f *FileType) *FileCreate {
return fc.SetTypeID(f.ID)
}
// AddFieldIDs adds the "field" edge to the FieldType entity by IDs.
func (fc *FileCreate) AddFieldIDs(ids ...int) *FileCreate {
fc.mutation.AddFieldIDs(ids...)
return fc
}
// AddField adds the "field" edges to the FieldType entity.
func (fc *FileCreate) AddField(f ...*FieldType) *FileCreate {
ids := make([]int, len(f))
for i := range f {
ids[i] = f[i].ID
}
return fc.AddFieldIDs(ids...)
}
// Mutation returns the FileMutation object of the builder.
func (fc *FileCreate) Mutation() *FileMutation {
return fc.mutation
}
// Save creates the File in the database.
func (fc *FileCreate) Save(ctx context.Context) (*File, error) {
var (
err error
node *File
)
fc.defaults()
if len(fc.hooks) == 0 {
if err = fc.check(); err != nil {
return nil, err
}
node, err = fc.sqlSave(ctx)
} else {
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*FileMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
if err = fc.check(); err != nil {
return nil, err
}
fc.mutation = mutation
node, err = fc.sqlSave(ctx)
mutation.done = true
return node, err
})
for i := len(fc.hooks) - 1; i >= 0; i-- {
mut = fc.hooks[i](mut)
}
if _, err := mut.Mutate(ctx, fc.mutation); err != nil {
return nil, err
}
}
return node, err
}
// SaveX calls Save and panics if Save returns an error.
func (fc *FileCreate) SaveX(ctx context.Context) *File {
v, err := fc.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// defaults sets the default values of the builder before save.
func (fc *FileCreate) defaults() {
if _, ok := fc.mutation.Size(); !ok {
v := file.DefaultSize
fc.mutation.SetSize(v)
}
}
// check runs all checks and user-defined validators on the builder.
func (fc *FileCreate) check() error {
if _, ok := fc.mutation.Size(); !ok {
return &ValidationError{Name: "size", err: errors.New("ent: missing required field \"size\"")}
}
if v, ok := fc.mutation.Size(); ok {
if err := file.SizeValidator(v); err != nil {
return &ValidationError{Name: "size", err: fmt.Errorf("ent: validator failed for field \"size\": %w", err)}
}
}
if _, ok := fc.mutation.Name(); !ok {
return &ValidationError{Name: "name", err: errors.New("ent: missing required field \"name\"")}
}
return nil
}
func (fc *FileCreate) sqlSave(ctx context.Context) (*File, error) {
_node, _spec := fc.createSpec()
if err := sqlgraph.CreateNode(ctx, fc.driver, _spec); err != nil {
if cerr, ok := isSQLConstraintError(err); ok {
err = cerr
}
return nil, err
}
id := _spec.ID.Value.(int64)
_node.ID = int(id)
return _node, nil
}
func (fc *FileCreate) createSpec() (*File, *sqlgraph.CreateSpec) {
var (
_node = &File{config: fc.config}
_spec = &sqlgraph.CreateSpec{
Table: file.Table,
ID: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: file.FieldID,
},
}
)
if value, ok := fc.mutation.Size(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeInt,
Value: value,
Column: file.FieldSize,
})
_node.Size = value
}
if value, ok := fc.mutation.Name(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeString,
Value: value,
Column: file.FieldName,
})
_node.Name = value
}
if value, ok := fc.mutation.User(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeString,
Value: value,
Column: file.FieldUser,
})
_node.User = &value
}
if value, ok := fc.mutation.Group(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeString,
Value: value,
Column: file.FieldGroup,
})
_node.Group = value
}
if value, ok := fc.mutation.GetOp(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeBool,
Value: value,
Column: file.FieldOp,
})
_node.Op = value
}
if nodes := fc.mutation.OwnerIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: file.OwnerTable,
Columns: []string{file.OwnerColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: user.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges = append(_spec.Edges, edge)
}
if nodes := fc.mutation.TypeIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: file.TypeTable,
Columns: []string{file.TypeColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: filetype.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges = append(_spec.Edges, edge)
}
if nodes := fc.mutation.FieldIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: file.FieldTable,
Columns: []string{file.FieldColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: fieldtype.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges = append(_spec.Edges, edge)
}
return _node, _spec
}
// FileCreateBulk is the builder for creating many File entities in bulk.
type FileCreateBulk struct {
config
builders []*FileCreate
}
// Save creates the File entities in the database.
func (fcb *FileCreateBulk) Save(ctx context.Context) ([]*File, error) {
specs := make([]*sqlgraph.CreateSpec, len(fcb.builders))
nodes := make([]*File, len(fcb.builders))
mutators := make([]Mutator, len(fcb.builders))
for i := range fcb.builders {
func(i int, root context.Context) {
builder := fcb.builders[i]
builder.defaults()
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*FileMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
if err := builder.check(); err != nil {
return nil, err
}
builder.mutation = mutation
nodes[i], specs[i] = builder.createSpec()
var err error
if i < len(mutators)-1 {
_, err = mutators[i+1].Mutate(root, fcb.builders[i+1].mutation)
} else {
// Invoke the actual operation on the latest mutation in the chain.
if err = sqlgraph.BatchCreate(ctx, fcb.driver, &sqlgraph.BatchCreateSpec{Nodes: specs}); err != nil {
if cerr, ok := isSQLConstraintError(err); ok {
err = cerr
}
}
}
mutation.done = true
if err != nil {
return nil, err
}
id := specs[i].ID.Value.(int64)
nodes[i].ID = int(id)
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, fcb.builders[0].mutation); err != nil {
return nil, err
}
}
return nodes, nil
}
// SaveX is like Save, but panics if an error occurs.
func (fcb *FileCreateBulk) SaveX(ctx context.Context) []*File {
v, err := fcb.Save(ctx)
if err != nil {
panic(err)
}
return v
}
|