// 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 entv2 import ( "context" "errors" "fmt" "entgo.io/ent/dialect" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/entc/integration/migrate/entv2/blog" "entgo.io/ent/entc/integration/migrate/entv2/user" "entgo.io/ent/schema/field" ) // BlogCreate is the builder for creating a Blog entity. type BlogCreate struct { config mutation *BlogMutation hooks []Hook } // SetOid sets the "oid" field. func (_c *BlogCreate) SetOid(v int) *BlogCreate { _c.mutation.SetOid(v) return _c } // SetID sets the "id" field. func (_c *BlogCreate) SetID(v int) *BlogCreate { _c.mutation.SetID(v) return _c } // AddAdminIDs adds the "admins" edge to the User entity by IDs. func (_c *BlogCreate) AddAdminIDs(ids ...int) *BlogCreate { _c.mutation.AddAdminIDs(ids...) return _c } // AddAdmins adds the "admins" edges to the User entity. func (_c *BlogCreate) AddAdmins(v ...*User) *BlogCreate { ids := make([]int, len(v)) for i := range v { ids[i] = v[i].ID } return _c.AddAdminIDs(ids...) } // Mutation returns the BlogMutation object of the builder. func (_c *BlogCreate) Mutation() *BlogMutation { return _c.mutation } // Save creates the Blog in the database. func (_c *BlogCreate) Save(ctx context.Context) (*Blog, error) { return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks) } // SaveX calls Save and panics if Save returns an error. func (_c *BlogCreate) SaveX(ctx context.Context) *Blog { v, err := _c.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (_c *BlogCreate) Exec(ctx context.Context) error { _, err := _c.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (_c *BlogCreate) ExecX(ctx context.Context) { if err := _c.Exec(ctx); err != nil { panic(err) } } // check runs all checks and user-defined validators on the builder. func (_c *BlogCreate) check() error { switch _c.driver.Dialect() { case dialect.MySQL, dialect.SQLite: if _, ok := _c.mutation.Oid(); !ok { return &ValidationError{Name: "oid", err: errors.New(`entv2: missing required field "Blog.oid"`)} } } return nil } func (_c *BlogCreate) sqlSave(ctx context.Context) (*Blog, error) { if err := _c.check(); err != nil { return nil, err } _node, _spec := _c.createSpec() if err := sqlgraph.CreateNode(ctx, _c.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 = int(id) } _c.mutation.id = &_node.ID _c.mutation.done = true return _node, nil } func (_c *BlogCreate) createSpec() (*Blog, *sqlgraph.CreateSpec) { var ( _node = &Blog{config: _c.config} _spec = sqlgraph.NewCreateSpec(blog.Table, sqlgraph.NewFieldSpec(blog.FieldID, field.TypeInt)) ) if id, ok := _c.mutation.ID(); ok { _node.ID = id _spec.ID.Value = id } if value, ok := _c.mutation.Oid(); ok { _spec.SetField(blog.FieldOid, field.TypeInt, value) _node.Oid = value } if nodes := _c.mutation.AdminsIDs(); len(nodes) > 0 { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.O2M, Inverse: false, Table: blog.AdminsTable, Columns: []string{blog.AdminsColumn}, 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 = append(_spec.Edges, edge) } return _node, _spec } // BlogCreateBulk is the builder for creating many Blog entities in bulk. type BlogCreateBulk struct { config err error builders []*BlogCreate } // Save creates the Blog entities in the database. func (_c *BlogCreateBulk) Save(ctx context.Context) ([]*Blog, error) { if _c.err != nil { return nil, _c.err } specs := make([]*sqlgraph.CreateSpec, len(_c.builders)) nodes := make([]*Blog, len(_c.builders)) mutators := make([]Mutator, len(_c.builders)) for i := range _c.builders { func(i int, root context.Context) { builder := _c.builders[i] var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) { mutation, ok := m.(*BlogMutation) 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, _c.builders[i+1].mutation) } else { spec := &sqlgraph.BatchCreateSpec{Nodes: specs} // Invoke the actual operation on the latest mutation in the chain. if err = sqlgraph.BatchCreate(ctx, _c.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 = int(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, _c.builders[0].mutation); err != nil { return nil, err } } return nodes, nil } // SaveX is like Save, but panics if an error occurs. func (_c *BlogCreateBulk) SaveX(ctx context.Context) []*Blog { v, err := _c.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (_c *BlogCreateBulk) Exec(ctx context.Context) error { _, err := _c.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (_c *BlogCreateBulk) ExecX(ctx context.Context) { if err := _c.Exec(ctx); err != nil { panic(err) } }