mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
Reviewed By: alexsn Differential Revision: D17119262 fbshipit-source-id: 046f095ca9432c920778db0edb2158dedb23c0a2
145 lines
3.4 KiB
Go
145 lines
3.4 KiB
Go
// Copyright (c) Facebook, Inc. and its affiliates. 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 (@generated) by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/facebookincubator/ent/examples/traversal/ent/group"
|
|
|
|
"github.com/facebookincubator/ent/dialect/sql"
|
|
)
|
|
|
|
// GroupCreate is the builder for creating a Group entity.
|
|
type GroupCreate struct {
|
|
config
|
|
name *string
|
|
users map[int]struct{}
|
|
admin map[int]struct{}
|
|
}
|
|
|
|
// SetName sets the name field.
|
|
func (gc *GroupCreate) SetName(s string) *GroupCreate {
|
|
gc.name = &s
|
|
return gc
|
|
}
|
|
|
|
// AddUserIDs adds the users edge to User by ids.
|
|
func (gc *GroupCreate) AddUserIDs(ids ...int) *GroupCreate {
|
|
if gc.users == nil {
|
|
gc.users = make(map[int]struct{})
|
|
}
|
|
for i := range ids {
|
|
gc.users[ids[i]] = struct{}{}
|
|
}
|
|
return gc
|
|
}
|
|
|
|
// AddUsers adds the users edges to User.
|
|
func (gc *GroupCreate) AddUsers(u ...*User) *GroupCreate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return gc.AddUserIDs(ids...)
|
|
}
|
|
|
|
// SetAdminID sets the admin edge to User by id.
|
|
func (gc *GroupCreate) SetAdminID(id int) *GroupCreate {
|
|
if gc.admin == nil {
|
|
gc.admin = make(map[int]struct{})
|
|
}
|
|
gc.admin[id] = struct{}{}
|
|
return gc
|
|
}
|
|
|
|
// SetNillableAdminID sets the admin edge to User by id if the given value is not nil.
|
|
func (gc *GroupCreate) SetNillableAdminID(id *int) *GroupCreate {
|
|
if id != nil {
|
|
gc = gc.SetAdminID(*id)
|
|
}
|
|
return gc
|
|
}
|
|
|
|
// SetAdmin sets the admin edge to User.
|
|
func (gc *GroupCreate) SetAdmin(u *User) *GroupCreate {
|
|
return gc.SetAdminID(u.ID)
|
|
}
|
|
|
|
// Save creates the Group in the database.
|
|
func (gc *GroupCreate) Save(ctx context.Context) (*Group, error) {
|
|
if gc.name == nil {
|
|
return nil, errors.New("ent: missing required field \"name\"")
|
|
}
|
|
if len(gc.admin) > 1 {
|
|
return nil, errors.New("ent: multiple assignments on a unique edge \"admin\"")
|
|
}
|
|
return gc.sqlSave(ctx)
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (gc *GroupCreate) SaveX(ctx context.Context) *Group {
|
|
v, err := gc.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (gc *GroupCreate) sqlSave(ctx context.Context) (*Group, error) {
|
|
var (
|
|
res sql.Result
|
|
gr = &Group{config: gc.config}
|
|
)
|
|
tx, err := gc.driver.Tx(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
builder := sql.Insert(group.Table).Default(gc.driver.Dialect())
|
|
if gc.name != nil {
|
|
builder.Set(group.FieldName, *gc.name)
|
|
gr.Name = *gc.name
|
|
}
|
|
query, args := builder.Query()
|
|
if err := tx.Exec(ctx, query, args, &res); err != nil {
|
|
return nil, rollback(tx, err)
|
|
}
|
|
id, err := res.LastInsertId()
|
|
if err != nil {
|
|
return nil, rollback(tx, err)
|
|
}
|
|
gr.ID = int(id)
|
|
if len(gc.users) > 0 {
|
|
for eid := range gc.users {
|
|
|
|
query, args := sql.Insert(group.UsersTable).
|
|
Columns(group.UsersPrimaryKey[0], group.UsersPrimaryKey[1]).
|
|
Values(id, eid).
|
|
Query()
|
|
if err := tx.Exec(ctx, query, args, &res); err != nil {
|
|
return nil, rollback(tx, err)
|
|
}
|
|
}
|
|
}
|
|
if len(gc.admin) > 0 {
|
|
for eid := range gc.admin {
|
|
query, args := sql.Update(group.AdminTable).
|
|
Set(group.AdminColumn, eid).
|
|
Where(sql.EQ(group.FieldID, id)).
|
|
Query()
|
|
if err := tx.Exec(ctx, query, args, &res); err != nil {
|
|
return nil, rollback(tx, err)
|
|
}
|
|
}
|
|
}
|
|
if err := tx.Commit(); err != nil {
|
|
return nil, err
|
|
}
|
|
return gr, nil
|
|
}
|