user_create.go 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. // Code generated by entc, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "code.osinet.fr/fgm/go__ent_demo/ent/car"
  8. "code.osinet.fr/fgm/go__ent_demo/ent/group"
  9. "code.osinet.fr/fgm/go__ent_demo/ent/user"
  10. "entgo.io/ent/dialect/sql/sqlgraph"
  11. "entgo.io/ent/schema/field"
  12. )
  13. // UserCreate is the builder for creating a User entity.
  14. type UserCreate struct {
  15. config
  16. mutation *UserMutation
  17. hooks []Hook
  18. }
  19. // SetAge sets the "age" field.
  20. func (uc *UserCreate) SetAge(i int) *UserCreate {
  21. uc.mutation.SetAge(i)
  22. return uc
  23. }
  24. // SetName sets the "name" field.
  25. func (uc *UserCreate) SetName(s string) *UserCreate {
  26. uc.mutation.SetName(s)
  27. return uc
  28. }
  29. // SetNillableName sets the "name" field if the given value is not nil.
  30. func (uc *UserCreate) SetNillableName(s *string) *UserCreate {
  31. if s != nil {
  32. uc.SetName(*s)
  33. }
  34. return uc
  35. }
  36. // AddCarIDs adds the "cars" edge to the Car entity by IDs.
  37. func (uc *UserCreate) AddCarIDs(ids ...int) *UserCreate {
  38. uc.mutation.AddCarIDs(ids...)
  39. return uc
  40. }
  41. // AddCars adds the "cars" edges to the Car entity.
  42. func (uc *UserCreate) AddCars(c ...*Car) *UserCreate {
  43. ids := make([]int, len(c))
  44. for i := range c {
  45. ids[i] = c[i].ID
  46. }
  47. return uc.AddCarIDs(ids...)
  48. }
  49. // AddGroupIDs adds the "groups" edge to the Group entity by IDs.
  50. func (uc *UserCreate) AddGroupIDs(ids ...int) *UserCreate {
  51. uc.mutation.AddGroupIDs(ids...)
  52. return uc
  53. }
  54. // AddGroups adds the "groups" edges to the Group entity.
  55. func (uc *UserCreate) AddGroups(g ...*Group) *UserCreate {
  56. ids := make([]int, len(g))
  57. for i := range g {
  58. ids[i] = g[i].ID
  59. }
  60. return uc.AddGroupIDs(ids...)
  61. }
  62. // Mutation returns the UserMutation object of the builder.
  63. func (uc *UserCreate) Mutation() *UserMutation {
  64. return uc.mutation
  65. }
  66. // Save creates the User in the database.
  67. func (uc *UserCreate) Save(ctx context.Context) (*User, error) {
  68. var (
  69. err error
  70. node *User
  71. )
  72. uc.defaults()
  73. if len(uc.hooks) == 0 {
  74. if err = uc.check(); err != nil {
  75. return nil, err
  76. }
  77. node, err = uc.sqlSave(ctx)
  78. } else {
  79. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  80. mutation, ok := m.(*UserMutation)
  81. if !ok {
  82. return nil, fmt.Errorf("unexpected mutation type %T", m)
  83. }
  84. if err = uc.check(); err != nil {
  85. return nil, err
  86. }
  87. uc.mutation = mutation
  88. if node, err = uc.sqlSave(ctx); err != nil {
  89. return nil, err
  90. }
  91. mutation.id = &node.ID
  92. mutation.done = true
  93. return node, err
  94. })
  95. for i := len(uc.hooks) - 1; i >= 0; i-- {
  96. if uc.hooks[i] == nil {
  97. return nil, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
  98. }
  99. mut = uc.hooks[i](mut)
  100. }
  101. if _, err := mut.Mutate(ctx, uc.mutation); err != nil {
  102. return nil, err
  103. }
  104. }
  105. return node, err
  106. }
  107. // SaveX calls Save and panics if Save returns an error.
  108. func (uc *UserCreate) SaveX(ctx context.Context) *User {
  109. v, err := uc.Save(ctx)
  110. if err != nil {
  111. panic(err)
  112. }
  113. return v
  114. }
  115. // Exec executes the query.
  116. func (uc *UserCreate) Exec(ctx context.Context) error {
  117. _, err := uc.Save(ctx)
  118. return err
  119. }
  120. // ExecX is like Exec, but panics if an error occurs.
  121. func (uc *UserCreate) ExecX(ctx context.Context) {
  122. if err := uc.Exec(ctx); err != nil {
  123. panic(err)
  124. }
  125. }
  126. // defaults sets the default values of the builder before save.
  127. func (uc *UserCreate) defaults() {
  128. if _, ok := uc.mutation.Name(); !ok {
  129. v := user.DefaultName
  130. uc.mutation.SetName(v)
  131. }
  132. }
  133. // check runs all checks and user-defined validators on the builder.
  134. func (uc *UserCreate) check() error {
  135. if _, ok := uc.mutation.Age(); !ok {
  136. return &ValidationError{Name: "age", err: errors.New(`ent: missing required field "User.age"`)}
  137. }
  138. if v, ok := uc.mutation.Age(); ok {
  139. if err := user.AgeValidator(v); err != nil {
  140. return &ValidationError{Name: "age", err: fmt.Errorf(`ent: validator failed for field "User.age": %w`, err)}
  141. }
  142. }
  143. if _, ok := uc.mutation.Name(); !ok {
  144. return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "User.name"`)}
  145. }
  146. return nil
  147. }
  148. func (uc *UserCreate) sqlSave(ctx context.Context) (*User, error) {
  149. _node, _spec := uc.createSpec()
  150. if err := sqlgraph.CreateNode(ctx, uc.driver, _spec); err != nil {
  151. if sqlgraph.IsConstraintError(err) {
  152. err = &ConstraintError{err.Error(), err}
  153. }
  154. return nil, err
  155. }
  156. id := _spec.ID.Value.(int64)
  157. _node.ID = int(id)
  158. return _node, nil
  159. }
  160. func (uc *UserCreate) createSpec() (*User, *sqlgraph.CreateSpec) {
  161. var (
  162. _node = &User{config: uc.config}
  163. _spec = &sqlgraph.CreateSpec{
  164. Table: user.Table,
  165. ID: &sqlgraph.FieldSpec{
  166. Type: field.TypeInt,
  167. Column: user.FieldID,
  168. },
  169. }
  170. )
  171. if value, ok := uc.mutation.Age(); ok {
  172. _spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
  173. Type: field.TypeInt,
  174. Value: value,
  175. Column: user.FieldAge,
  176. })
  177. _node.Age = value
  178. }
  179. if value, ok := uc.mutation.Name(); ok {
  180. _spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
  181. Type: field.TypeString,
  182. Value: value,
  183. Column: user.FieldName,
  184. })
  185. _node.Name = value
  186. }
  187. if nodes := uc.mutation.CarsIDs(); len(nodes) > 0 {
  188. edge := &sqlgraph.EdgeSpec{
  189. Rel: sqlgraph.O2M,
  190. Inverse: false,
  191. Table: user.CarsTable,
  192. Columns: []string{user.CarsColumn},
  193. Bidi: false,
  194. Target: &sqlgraph.EdgeTarget{
  195. IDSpec: &sqlgraph.FieldSpec{
  196. Type: field.TypeInt,
  197. Column: car.FieldID,
  198. },
  199. },
  200. }
  201. for _, k := range nodes {
  202. edge.Target.Nodes = append(edge.Target.Nodes, k)
  203. }
  204. _spec.Edges = append(_spec.Edges, edge)
  205. }
  206. if nodes := uc.mutation.GroupsIDs(); len(nodes) > 0 {
  207. edge := &sqlgraph.EdgeSpec{
  208. Rel: sqlgraph.M2M,
  209. Inverse: true,
  210. Table: user.GroupsTable,
  211. Columns: user.GroupsPrimaryKey,
  212. Bidi: false,
  213. Target: &sqlgraph.EdgeTarget{
  214. IDSpec: &sqlgraph.FieldSpec{
  215. Type: field.TypeInt,
  216. Column: group.FieldID,
  217. },
  218. },
  219. }
  220. for _, k := range nodes {
  221. edge.Target.Nodes = append(edge.Target.Nodes, k)
  222. }
  223. _spec.Edges = append(_spec.Edges, edge)
  224. }
  225. return _node, _spec
  226. }
  227. // UserCreateBulk is the builder for creating many User entities in bulk.
  228. type UserCreateBulk struct {
  229. config
  230. builders []*UserCreate
  231. }
  232. // Save creates the User entities in the database.
  233. func (ucb *UserCreateBulk) Save(ctx context.Context) ([]*User, error) {
  234. specs := make([]*sqlgraph.CreateSpec, len(ucb.builders))
  235. nodes := make([]*User, len(ucb.builders))
  236. mutators := make([]Mutator, len(ucb.builders))
  237. for i := range ucb.builders {
  238. func(i int, root context.Context) {
  239. builder := ucb.builders[i]
  240. builder.defaults()
  241. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  242. mutation, ok := m.(*UserMutation)
  243. if !ok {
  244. return nil, fmt.Errorf("unexpected mutation type %T", m)
  245. }
  246. if err := builder.check(); err != nil {
  247. return nil, err
  248. }
  249. builder.mutation = mutation
  250. nodes[i], specs[i] = builder.createSpec()
  251. var err error
  252. if i < len(mutators)-1 {
  253. _, err = mutators[i+1].Mutate(root, ucb.builders[i+1].mutation)
  254. } else {
  255. spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
  256. // Invoke the actual operation on the latest mutation in the chain.
  257. if err = sqlgraph.BatchCreate(ctx, ucb.driver, spec); err != nil {
  258. if sqlgraph.IsConstraintError(err) {
  259. err = &ConstraintError{err.Error(), err}
  260. }
  261. }
  262. }
  263. if err != nil {
  264. return nil, err
  265. }
  266. mutation.id = &nodes[i].ID
  267. mutation.done = true
  268. if specs[i].ID.Value != nil {
  269. id := specs[i].ID.Value.(int64)
  270. nodes[i].ID = int(id)
  271. }
  272. return nodes[i], nil
  273. })
  274. for i := len(builder.hooks) - 1; i >= 0; i-- {
  275. mut = builder.hooks[i](mut)
  276. }
  277. mutators[i] = mut
  278. }(i, ctx)
  279. }
  280. if len(mutators) > 0 {
  281. if _, err := mutators[0].Mutate(ctx, ucb.builders[0].mutation); err != nil {
  282. return nil, err
  283. }
  284. }
  285. return nodes, nil
  286. }
  287. // SaveX is like Save, but panics if an error occurs.
  288. func (ucb *UserCreateBulk) SaveX(ctx context.Context) []*User {
  289. v, err := ucb.Save(ctx)
  290. if err != nil {
  291. panic(err)
  292. }
  293. return v
  294. }
  295. // Exec executes the query.
  296. func (ucb *UserCreateBulk) Exec(ctx context.Context) error {
  297. _, err := ucb.Save(ctx)
  298. return err
  299. }
  300. // ExecX is like Exec, but panics if an error occurs.
  301. func (ucb *UserCreateBulk) ExecX(ctx context.Context) {
  302. if err := ucb.Exec(ctx); err != nil {
  303. panic(err)
  304. }
  305. }