mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
163 lines
4.1 KiB
Go
163 lines
4.1 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 by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/facebookincubator/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebookincubator/ent/entc/integration/ent/group"
|
|
"github.com/facebookincubator/ent/entc/integration/ent/groupinfo"
|
|
"github.com/facebookincubator/ent/schema/field"
|
|
)
|
|
|
|
// GroupInfoCreate is the builder for creating a GroupInfo entity.
|
|
type GroupInfoCreate struct {
|
|
config
|
|
mutation *GroupInfoMutation
|
|
hooks []Hook
|
|
}
|
|
|
|
// SetDesc sets the desc field.
|
|
func (gic *GroupInfoCreate) SetDesc(s string) *GroupInfoCreate {
|
|
gic.mutation.SetDesc(s)
|
|
return gic
|
|
}
|
|
|
|
// SetMaxUsers sets the max_users field.
|
|
func (gic *GroupInfoCreate) SetMaxUsers(i int) *GroupInfoCreate {
|
|
gic.mutation.SetMaxUsers(i)
|
|
return gic
|
|
}
|
|
|
|
// SetNillableMaxUsers sets the max_users field if the given value is not nil.
|
|
func (gic *GroupInfoCreate) SetNillableMaxUsers(i *int) *GroupInfoCreate {
|
|
if i != nil {
|
|
gic.SetMaxUsers(*i)
|
|
}
|
|
return gic
|
|
}
|
|
|
|
// AddGroupIDs adds the groups edge to Group by ids.
|
|
func (gic *GroupInfoCreate) AddGroupIDs(ids ...int) *GroupInfoCreate {
|
|
gic.mutation.AddGroupIDs(ids...)
|
|
return gic
|
|
}
|
|
|
|
// AddGroups adds the groups edges to Group.
|
|
func (gic *GroupInfoCreate) AddGroups(g ...*Group) *GroupInfoCreate {
|
|
ids := make([]int, len(g))
|
|
for i := range g {
|
|
ids[i] = g[i].ID
|
|
}
|
|
return gic.AddGroupIDs(ids...)
|
|
}
|
|
|
|
// Save creates the GroupInfo in the database.
|
|
func (gic *GroupInfoCreate) Save(ctx context.Context) (*GroupInfo, error) {
|
|
if _, ok := gic.mutation.Desc(); !ok {
|
|
return nil, errors.New("ent: missing required field \"desc\"")
|
|
}
|
|
if _, ok := gic.mutation.MaxUsers(); !ok {
|
|
v := groupinfo.DefaultMaxUsers
|
|
gic.mutation.SetMaxUsers(v)
|
|
}
|
|
var (
|
|
err error
|
|
node *GroupInfo
|
|
)
|
|
if len(gic.hooks) == 0 {
|
|
node, err = gic.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*GroupInfoMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
gic.mutation = mutation
|
|
node, err = gic.sqlSave(ctx)
|
|
mutation.done = true
|
|
return node, err
|
|
})
|
|
for i := len(gic.hooks) - 1; i >= 0; i-- {
|
|
mut = gic.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, gic.mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return node, err
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (gic *GroupInfoCreate) SaveX(ctx context.Context) *GroupInfo {
|
|
v, err := gic.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (gic *GroupInfoCreate) sqlSave(ctx context.Context) (*GroupInfo, error) {
|
|
var (
|
|
gi = &GroupInfo{config: gic.config}
|
|
_spec = &sqlgraph.CreateSpec{
|
|
Table: groupinfo.Table,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: groupinfo.FieldID,
|
|
},
|
|
}
|
|
)
|
|
if value, ok := gic.mutation.Desc(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: groupinfo.FieldDesc,
|
|
})
|
|
gi.Desc = value
|
|
}
|
|
if value, ok := gic.mutation.MaxUsers(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: groupinfo.FieldMaxUsers,
|
|
})
|
|
gi.MaxUsers = value
|
|
}
|
|
if nodes := gic.mutation.GroupsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: true,
|
|
Table: groupinfo.GroupsTable,
|
|
Columns: []string{groupinfo.GroupsColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: group.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges = append(_spec.Edges, edge)
|
|
}
|
|
if err := sqlgraph.CreateNode(ctx, gic.driver, _spec); err != nil {
|
|
if cerr, ok := isSQLConstraintError(err); ok {
|
|
err = cerr
|
|
}
|
|
return nil, err
|
|
}
|
|
id := _spec.ID.Value.(int64)
|
|
gi.ID = int(id)
|
|
return gi, nil
|
|
}
|