token_create.go 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "time"
  8. "wechat-api/ent/token"
  9. "entgo.io/ent/dialect/sql"
  10. "entgo.io/ent/dialect/sql/sqlgraph"
  11. "entgo.io/ent/schema/field"
  12. )
  13. // TokenCreate is the builder for creating a Token entity.
  14. type TokenCreate struct {
  15. config
  16. mutation *TokenMutation
  17. hooks []Hook
  18. conflict []sql.ConflictOption
  19. }
  20. // SetCreatedAt sets the "created_at" field.
  21. func (tc *TokenCreate) SetCreatedAt(t time.Time) *TokenCreate {
  22. tc.mutation.SetCreatedAt(t)
  23. return tc
  24. }
  25. // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
  26. func (tc *TokenCreate) SetNillableCreatedAt(t *time.Time) *TokenCreate {
  27. if t != nil {
  28. tc.SetCreatedAt(*t)
  29. }
  30. return tc
  31. }
  32. // SetUpdatedAt sets the "updated_at" field.
  33. func (tc *TokenCreate) SetUpdatedAt(t time.Time) *TokenCreate {
  34. tc.mutation.SetUpdatedAt(t)
  35. return tc
  36. }
  37. // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
  38. func (tc *TokenCreate) SetNillableUpdatedAt(t *time.Time) *TokenCreate {
  39. if t != nil {
  40. tc.SetUpdatedAt(*t)
  41. }
  42. return tc
  43. }
  44. // SetDeletedAt sets the "deleted_at" field.
  45. func (tc *TokenCreate) SetDeletedAt(t time.Time) *TokenCreate {
  46. tc.mutation.SetDeletedAt(t)
  47. return tc
  48. }
  49. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  50. func (tc *TokenCreate) SetNillableDeletedAt(t *time.Time) *TokenCreate {
  51. if t != nil {
  52. tc.SetDeletedAt(*t)
  53. }
  54. return tc
  55. }
  56. // SetExpireAt sets the "expire_at" field.
  57. func (tc *TokenCreate) SetExpireAt(t time.Time) *TokenCreate {
  58. tc.mutation.SetExpireAt(t)
  59. return tc
  60. }
  61. // SetNillableExpireAt sets the "expire_at" field if the given value is not nil.
  62. func (tc *TokenCreate) SetNillableExpireAt(t *time.Time) *TokenCreate {
  63. if t != nil {
  64. tc.SetExpireAt(*t)
  65. }
  66. return tc
  67. }
  68. // SetToken sets the "token" field.
  69. func (tc *TokenCreate) SetToken(s string) *TokenCreate {
  70. tc.mutation.SetToken(s)
  71. return tc
  72. }
  73. // SetNillableToken sets the "token" field if the given value is not nil.
  74. func (tc *TokenCreate) SetNillableToken(s *string) *TokenCreate {
  75. if s != nil {
  76. tc.SetToken(*s)
  77. }
  78. return tc
  79. }
  80. // SetMAC sets the "mac" field.
  81. func (tc *TokenCreate) SetMAC(s string) *TokenCreate {
  82. tc.mutation.SetMAC(s)
  83. return tc
  84. }
  85. // SetNillableMAC sets the "mac" field if the given value is not nil.
  86. func (tc *TokenCreate) SetNillableMAC(s *string) *TokenCreate {
  87. if s != nil {
  88. tc.SetMAC(*s)
  89. }
  90. return tc
  91. }
  92. // SetOrganizationID sets the "organization_id" field.
  93. func (tc *TokenCreate) SetOrganizationID(u uint64) *TokenCreate {
  94. tc.mutation.SetOrganizationID(u)
  95. return tc
  96. }
  97. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  98. func (tc *TokenCreate) SetNillableOrganizationID(u *uint64) *TokenCreate {
  99. if u != nil {
  100. tc.SetOrganizationID(*u)
  101. }
  102. return tc
  103. }
  104. // SetID sets the "id" field.
  105. func (tc *TokenCreate) SetID(u uint64) *TokenCreate {
  106. tc.mutation.SetID(u)
  107. return tc
  108. }
  109. // Mutation returns the TokenMutation object of the builder.
  110. func (tc *TokenCreate) Mutation() *TokenMutation {
  111. return tc.mutation
  112. }
  113. // Save creates the Token in the database.
  114. func (tc *TokenCreate) Save(ctx context.Context) (*Token, error) {
  115. if err := tc.defaults(); err != nil {
  116. return nil, err
  117. }
  118. return withHooks(ctx, tc.sqlSave, tc.mutation, tc.hooks)
  119. }
  120. // SaveX calls Save and panics if Save returns an error.
  121. func (tc *TokenCreate) SaveX(ctx context.Context) *Token {
  122. v, err := tc.Save(ctx)
  123. if err != nil {
  124. panic(err)
  125. }
  126. return v
  127. }
  128. // Exec executes the query.
  129. func (tc *TokenCreate) Exec(ctx context.Context) error {
  130. _, err := tc.Save(ctx)
  131. return err
  132. }
  133. // ExecX is like Exec, but panics if an error occurs.
  134. func (tc *TokenCreate) ExecX(ctx context.Context) {
  135. if err := tc.Exec(ctx); err != nil {
  136. panic(err)
  137. }
  138. }
  139. // defaults sets the default values of the builder before save.
  140. func (tc *TokenCreate) defaults() error {
  141. if _, ok := tc.mutation.CreatedAt(); !ok {
  142. if token.DefaultCreatedAt == nil {
  143. return fmt.Errorf("ent: uninitialized token.DefaultCreatedAt (forgotten import ent/runtime?)")
  144. }
  145. v := token.DefaultCreatedAt()
  146. tc.mutation.SetCreatedAt(v)
  147. }
  148. if _, ok := tc.mutation.UpdatedAt(); !ok {
  149. if token.DefaultUpdatedAt == nil {
  150. return fmt.Errorf("ent: uninitialized token.DefaultUpdatedAt (forgotten import ent/runtime?)")
  151. }
  152. v := token.DefaultUpdatedAt()
  153. tc.mutation.SetUpdatedAt(v)
  154. }
  155. if _, ok := tc.mutation.Token(); !ok {
  156. v := token.DefaultToken
  157. tc.mutation.SetToken(v)
  158. }
  159. if _, ok := tc.mutation.MAC(); !ok {
  160. v := token.DefaultMAC
  161. tc.mutation.SetMAC(v)
  162. }
  163. if _, ok := tc.mutation.OrganizationID(); !ok {
  164. v := token.DefaultOrganizationID
  165. tc.mutation.SetOrganizationID(v)
  166. }
  167. return nil
  168. }
  169. // check runs all checks and user-defined validators on the builder.
  170. func (tc *TokenCreate) check() error {
  171. if _, ok := tc.mutation.CreatedAt(); !ok {
  172. return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "Token.created_at"`)}
  173. }
  174. if _, ok := tc.mutation.UpdatedAt(); !ok {
  175. return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "Token.updated_at"`)}
  176. }
  177. if _, ok := tc.mutation.MAC(); !ok {
  178. return &ValidationError{Name: "mac", err: errors.New(`ent: missing required field "Token.mac"`)}
  179. }
  180. if _, ok := tc.mutation.OrganizationID(); !ok {
  181. return &ValidationError{Name: "organization_id", err: errors.New(`ent: missing required field "Token.organization_id"`)}
  182. }
  183. return nil
  184. }
  185. func (tc *TokenCreate) sqlSave(ctx context.Context) (*Token, error) {
  186. if err := tc.check(); err != nil {
  187. return nil, err
  188. }
  189. _node, _spec := tc.createSpec()
  190. if err := sqlgraph.CreateNode(ctx, tc.driver, _spec); err != nil {
  191. if sqlgraph.IsConstraintError(err) {
  192. err = &ConstraintError{msg: err.Error(), wrap: err}
  193. }
  194. return nil, err
  195. }
  196. if _spec.ID.Value != _node.ID {
  197. id := _spec.ID.Value.(int64)
  198. _node.ID = uint64(id)
  199. }
  200. tc.mutation.id = &_node.ID
  201. tc.mutation.done = true
  202. return _node, nil
  203. }
  204. func (tc *TokenCreate) createSpec() (*Token, *sqlgraph.CreateSpec) {
  205. var (
  206. _node = &Token{config: tc.config}
  207. _spec = sqlgraph.NewCreateSpec(token.Table, sqlgraph.NewFieldSpec(token.FieldID, field.TypeUint64))
  208. )
  209. _spec.OnConflict = tc.conflict
  210. if id, ok := tc.mutation.ID(); ok {
  211. _node.ID = id
  212. _spec.ID.Value = id
  213. }
  214. if value, ok := tc.mutation.CreatedAt(); ok {
  215. _spec.SetField(token.FieldCreatedAt, field.TypeTime, value)
  216. _node.CreatedAt = value
  217. }
  218. if value, ok := tc.mutation.UpdatedAt(); ok {
  219. _spec.SetField(token.FieldUpdatedAt, field.TypeTime, value)
  220. _node.UpdatedAt = value
  221. }
  222. if value, ok := tc.mutation.DeletedAt(); ok {
  223. _spec.SetField(token.FieldDeletedAt, field.TypeTime, value)
  224. _node.DeletedAt = value
  225. }
  226. if value, ok := tc.mutation.ExpireAt(); ok {
  227. _spec.SetField(token.FieldExpireAt, field.TypeTime, value)
  228. _node.ExpireAt = value
  229. }
  230. if value, ok := tc.mutation.Token(); ok {
  231. _spec.SetField(token.FieldToken, field.TypeString, value)
  232. _node.Token = value
  233. }
  234. if value, ok := tc.mutation.MAC(); ok {
  235. _spec.SetField(token.FieldMAC, field.TypeString, value)
  236. _node.MAC = value
  237. }
  238. if value, ok := tc.mutation.OrganizationID(); ok {
  239. _spec.SetField(token.FieldOrganizationID, field.TypeUint64, value)
  240. _node.OrganizationID = value
  241. }
  242. return _node, _spec
  243. }
  244. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  245. // of the `INSERT` statement. For example:
  246. //
  247. // client.Token.Create().
  248. // SetCreatedAt(v).
  249. // OnConflict(
  250. // // Update the row with the new values
  251. // // the was proposed for insertion.
  252. // sql.ResolveWithNewValues(),
  253. // ).
  254. // // Override some of the fields with custom
  255. // // update values.
  256. // Update(func(u *ent.TokenUpsert) {
  257. // SetCreatedAt(v+v).
  258. // }).
  259. // Exec(ctx)
  260. func (tc *TokenCreate) OnConflict(opts ...sql.ConflictOption) *TokenUpsertOne {
  261. tc.conflict = opts
  262. return &TokenUpsertOne{
  263. create: tc,
  264. }
  265. }
  266. // OnConflictColumns calls `OnConflict` and configures the columns
  267. // as conflict target. Using this option is equivalent to using:
  268. //
  269. // client.Token.Create().
  270. // OnConflict(sql.ConflictColumns(columns...)).
  271. // Exec(ctx)
  272. func (tc *TokenCreate) OnConflictColumns(columns ...string) *TokenUpsertOne {
  273. tc.conflict = append(tc.conflict, sql.ConflictColumns(columns...))
  274. return &TokenUpsertOne{
  275. create: tc,
  276. }
  277. }
  278. type (
  279. // TokenUpsertOne is the builder for "upsert"-ing
  280. // one Token node.
  281. TokenUpsertOne struct {
  282. create *TokenCreate
  283. }
  284. // TokenUpsert is the "OnConflict" setter.
  285. TokenUpsert struct {
  286. *sql.UpdateSet
  287. }
  288. )
  289. // SetUpdatedAt sets the "updated_at" field.
  290. func (u *TokenUpsert) SetUpdatedAt(v time.Time) *TokenUpsert {
  291. u.Set(token.FieldUpdatedAt, v)
  292. return u
  293. }
  294. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  295. func (u *TokenUpsert) UpdateUpdatedAt() *TokenUpsert {
  296. u.SetExcluded(token.FieldUpdatedAt)
  297. return u
  298. }
  299. // SetDeletedAt sets the "deleted_at" field.
  300. func (u *TokenUpsert) SetDeletedAt(v time.Time) *TokenUpsert {
  301. u.Set(token.FieldDeletedAt, v)
  302. return u
  303. }
  304. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  305. func (u *TokenUpsert) UpdateDeletedAt() *TokenUpsert {
  306. u.SetExcluded(token.FieldDeletedAt)
  307. return u
  308. }
  309. // ClearDeletedAt clears the value of the "deleted_at" field.
  310. func (u *TokenUpsert) ClearDeletedAt() *TokenUpsert {
  311. u.SetNull(token.FieldDeletedAt)
  312. return u
  313. }
  314. // SetExpireAt sets the "expire_at" field.
  315. func (u *TokenUpsert) SetExpireAt(v time.Time) *TokenUpsert {
  316. u.Set(token.FieldExpireAt, v)
  317. return u
  318. }
  319. // UpdateExpireAt sets the "expire_at" field to the value that was provided on create.
  320. func (u *TokenUpsert) UpdateExpireAt() *TokenUpsert {
  321. u.SetExcluded(token.FieldExpireAt)
  322. return u
  323. }
  324. // ClearExpireAt clears the value of the "expire_at" field.
  325. func (u *TokenUpsert) ClearExpireAt() *TokenUpsert {
  326. u.SetNull(token.FieldExpireAt)
  327. return u
  328. }
  329. // SetToken sets the "token" field.
  330. func (u *TokenUpsert) SetToken(v string) *TokenUpsert {
  331. u.Set(token.FieldToken, v)
  332. return u
  333. }
  334. // UpdateToken sets the "token" field to the value that was provided on create.
  335. func (u *TokenUpsert) UpdateToken() *TokenUpsert {
  336. u.SetExcluded(token.FieldToken)
  337. return u
  338. }
  339. // ClearToken clears the value of the "token" field.
  340. func (u *TokenUpsert) ClearToken() *TokenUpsert {
  341. u.SetNull(token.FieldToken)
  342. return u
  343. }
  344. // SetMAC sets the "mac" field.
  345. func (u *TokenUpsert) SetMAC(v string) *TokenUpsert {
  346. u.Set(token.FieldMAC, v)
  347. return u
  348. }
  349. // UpdateMAC sets the "mac" field to the value that was provided on create.
  350. func (u *TokenUpsert) UpdateMAC() *TokenUpsert {
  351. u.SetExcluded(token.FieldMAC)
  352. return u
  353. }
  354. // SetOrganizationID sets the "organization_id" field.
  355. func (u *TokenUpsert) SetOrganizationID(v uint64) *TokenUpsert {
  356. u.Set(token.FieldOrganizationID, v)
  357. return u
  358. }
  359. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  360. func (u *TokenUpsert) UpdateOrganizationID() *TokenUpsert {
  361. u.SetExcluded(token.FieldOrganizationID)
  362. return u
  363. }
  364. // AddOrganizationID adds v to the "organization_id" field.
  365. func (u *TokenUpsert) AddOrganizationID(v uint64) *TokenUpsert {
  366. u.Add(token.FieldOrganizationID, v)
  367. return u
  368. }
  369. // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
  370. // Using this option is equivalent to using:
  371. //
  372. // client.Token.Create().
  373. // OnConflict(
  374. // sql.ResolveWithNewValues(),
  375. // sql.ResolveWith(func(u *sql.UpdateSet) {
  376. // u.SetIgnore(token.FieldID)
  377. // }),
  378. // ).
  379. // Exec(ctx)
  380. func (u *TokenUpsertOne) UpdateNewValues() *TokenUpsertOne {
  381. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  382. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  383. if _, exists := u.create.mutation.ID(); exists {
  384. s.SetIgnore(token.FieldID)
  385. }
  386. if _, exists := u.create.mutation.CreatedAt(); exists {
  387. s.SetIgnore(token.FieldCreatedAt)
  388. }
  389. }))
  390. return u
  391. }
  392. // Ignore sets each column to itself in case of conflict.
  393. // Using this option is equivalent to using:
  394. //
  395. // client.Token.Create().
  396. // OnConflict(sql.ResolveWithIgnore()).
  397. // Exec(ctx)
  398. func (u *TokenUpsertOne) Ignore() *TokenUpsertOne {
  399. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  400. return u
  401. }
  402. // DoNothing configures the conflict_action to `DO NOTHING`.
  403. // Supported only by SQLite and PostgreSQL.
  404. func (u *TokenUpsertOne) DoNothing() *TokenUpsertOne {
  405. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  406. return u
  407. }
  408. // Update allows overriding fields `UPDATE` values. See the TokenCreate.OnConflict
  409. // documentation for more info.
  410. func (u *TokenUpsertOne) Update(set func(*TokenUpsert)) *TokenUpsertOne {
  411. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  412. set(&TokenUpsert{UpdateSet: update})
  413. }))
  414. return u
  415. }
  416. // SetUpdatedAt sets the "updated_at" field.
  417. func (u *TokenUpsertOne) SetUpdatedAt(v time.Time) *TokenUpsertOne {
  418. return u.Update(func(s *TokenUpsert) {
  419. s.SetUpdatedAt(v)
  420. })
  421. }
  422. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  423. func (u *TokenUpsertOne) UpdateUpdatedAt() *TokenUpsertOne {
  424. return u.Update(func(s *TokenUpsert) {
  425. s.UpdateUpdatedAt()
  426. })
  427. }
  428. // SetDeletedAt sets the "deleted_at" field.
  429. func (u *TokenUpsertOne) SetDeletedAt(v time.Time) *TokenUpsertOne {
  430. return u.Update(func(s *TokenUpsert) {
  431. s.SetDeletedAt(v)
  432. })
  433. }
  434. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  435. func (u *TokenUpsertOne) UpdateDeletedAt() *TokenUpsertOne {
  436. return u.Update(func(s *TokenUpsert) {
  437. s.UpdateDeletedAt()
  438. })
  439. }
  440. // ClearDeletedAt clears the value of the "deleted_at" field.
  441. func (u *TokenUpsertOne) ClearDeletedAt() *TokenUpsertOne {
  442. return u.Update(func(s *TokenUpsert) {
  443. s.ClearDeletedAt()
  444. })
  445. }
  446. // SetExpireAt sets the "expire_at" field.
  447. func (u *TokenUpsertOne) SetExpireAt(v time.Time) *TokenUpsertOne {
  448. return u.Update(func(s *TokenUpsert) {
  449. s.SetExpireAt(v)
  450. })
  451. }
  452. // UpdateExpireAt sets the "expire_at" field to the value that was provided on create.
  453. func (u *TokenUpsertOne) UpdateExpireAt() *TokenUpsertOne {
  454. return u.Update(func(s *TokenUpsert) {
  455. s.UpdateExpireAt()
  456. })
  457. }
  458. // ClearExpireAt clears the value of the "expire_at" field.
  459. func (u *TokenUpsertOne) ClearExpireAt() *TokenUpsertOne {
  460. return u.Update(func(s *TokenUpsert) {
  461. s.ClearExpireAt()
  462. })
  463. }
  464. // SetToken sets the "token" field.
  465. func (u *TokenUpsertOne) SetToken(v string) *TokenUpsertOne {
  466. return u.Update(func(s *TokenUpsert) {
  467. s.SetToken(v)
  468. })
  469. }
  470. // UpdateToken sets the "token" field to the value that was provided on create.
  471. func (u *TokenUpsertOne) UpdateToken() *TokenUpsertOne {
  472. return u.Update(func(s *TokenUpsert) {
  473. s.UpdateToken()
  474. })
  475. }
  476. // ClearToken clears the value of the "token" field.
  477. func (u *TokenUpsertOne) ClearToken() *TokenUpsertOne {
  478. return u.Update(func(s *TokenUpsert) {
  479. s.ClearToken()
  480. })
  481. }
  482. // SetMAC sets the "mac" field.
  483. func (u *TokenUpsertOne) SetMAC(v string) *TokenUpsertOne {
  484. return u.Update(func(s *TokenUpsert) {
  485. s.SetMAC(v)
  486. })
  487. }
  488. // UpdateMAC sets the "mac" field to the value that was provided on create.
  489. func (u *TokenUpsertOne) UpdateMAC() *TokenUpsertOne {
  490. return u.Update(func(s *TokenUpsert) {
  491. s.UpdateMAC()
  492. })
  493. }
  494. // SetOrganizationID sets the "organization_id" field.
  495. func (u *TokenUpsertOne) SetOrganizationID(v uint64) *TokenUpsertOne {
  496. return u.Update(func(s *TokenUpsert) {
  497. s.SetOrganizationID(v)
  498. })
  499. }
  500. // AddOrganizationID adds v to the "organization_id" field.
  501. func (u *TokenUpsertOne) AddOrganizationID(v uint64) *TokenUpsertOne {
  502. return u.Update(func(s *TokenUpsert) {
  503. s.AddOrganizationID(v)
  504. })
  505. }
  506. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  507. func (u *TokenUpsertOne) UpdateOrganizationID() *TokenUpsertOne {
  508. return u.Update(func(s *TokenUpsert) {
  509. s.UpdateOrganizationID()
  510. })
  511. }
  512. // Exec executes the query.
  513. func (u *TokenUpsertOne) Exec(ctx context.Context) error {
  514. if len(u.create.conflict) == 0 {
  515. return errors.New("ent: missing options for TokenCreate.OnConflict")
  516. }
  517. return u.create.Exec(ctx)
  518. }
  519. // ExecX is like Exec, but panics if an error occurs.
  520. func (u *TokenUpsertOne) ExecX(ctx context.Context) {
  521. if err := u.create.Exec(ctx); err != nil {
  522. panic(err)
  523. }
  524. }
  525. // Exec executes the UPSERT query and returns the inserted/updated ID.
  526. func (u *TokenUpsertOne) ID(ctx context.Context) (id uint64, err error) {
  527. node, err := u.create.Save(ctx)
  528. if err != nil {
  529. return id, err
  530. }
  531. return node.ID, nil
  532. }
  533. // IDX is like ID, but panics if an error occurs.
  534. func (u *TokenUpsertOne) IDX(ctx context.Context) uint64 {
  535. id, err := u.ID(ctx)
  536. if err != nil {
  537. panic(err)
  538. }
  539. return id
  540. }
  541. // TokenCreateBulk is the builder for creating many Token entities in bulk.
  542. type TokenCreateBulk struct {
  543. config
  544. err error
  545. builders []*TokenCreate
  546. conflict []sql.ConflictOption
  547. }
  548. // Save creates the Token entities in the database.
  549. func (tcb *TokenCreateBulk) Save(ctx context.Context) ([]*Token, error) {
  550. if tcb.err != nil {
  551. return nil, tcb.err
  552. }
  553. specs := make([]*sqlgraph.CreateSpec, len(tcb.builders))
  554. nodes := make([]*Token, len(tcb.builders))
  555. mutators := make([]Mutator, len(tcb.builders))
  556. for i := range tcb.builders {
  557. func(i int, root context.Context) {
  558. builder := tcb.builders[i]
  559. builder.defaults()
  560. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  561. mutation, ok := m.(*TokenMutation)
  562. if !ok {
  563. return nil, fmt.Errorf("unexpected mutation type %T", m)
  564. }
  565. if err := builder.check(); err != nil {
  566. return nil, err
  567. }
  568. builder.mutation = mutation
  569. var err error
  570. nodes[i], specs[i] = builder.createSpec()
  571. if i < len(mutators)-1 {
  572. _, err = mutators[i+1].Mutate(root, tcb.builders[i+1].mutation)
  573. } else {
  574. spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
  575. spec.OnConflict = tcb.conflict
  576. // Invoke the actual operation on the latest mutation in the chain.
  577. if err = sqlgraph.BatchCreate(ctx, tcb.driver, spec); err != nil {
  578. if sqlgraph.IsConstraintError(err) {
  579. err = &ConstraintError{msg: err.Error(), wrap: err}
  580. }
  581. }
  582. }
  583. if err != nil {
  584. return nil, err
  585. }
  586. mutation.id = &nodes[i].ID
  587. if specs[i].ID.Value != nil && nodes[i].ID == 0 {
  588. id := specs[i].ID.Value.(int64)
  589. nodes[i].ID = uint64(id)
  590. }
  591. mutation.done = true
  592. return nodes[i], nil
  593. })
  594. for i := len(builder.hooks) - 1; i >= 0; i-- {
  595. mut = builder.hooks[i](mut)
  596. }
  597. mutators[i] = mut
  598. }(i, ctx)
  599. }
  600. if len(mutators) > 0 {
  601. if _, err := mutators[0].Mutate(ctx, tcb.builders[0].mutation); err != nil {
  602. return nil, err
  603. }
  604. }
  605. return nodes, nil
  606. }
  607. // SaveX is like Save, but panics if an error occurs.
  608. func (tcb *TokenCreateBulk) SaveX(ctx context.Context) []*Token {
  609. v, err := tcb.Save(ctx)
  610. if err != nil {
  611. panic(err)
  612. }
  613. return v
  614. }
  615. // Exec executes the query.
  616. func (tcb *TokenCreateBulk) Exec(ctx context.Context) error {
  617. _, err := tcb.Save(ctx)
  618. return err
  619. }
  620. // ExecX is like Exec, but panics if an error occurs.
  621. func (tcb *TokenCreateBulk) ExecX(ctx context.Context) {
  622. if err := tcb.Exec(ctx); err != nil {
  623. panic(err)
  624. }
  625. }
  626. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  627. // of the `INSERT` statement. For example:
  628. //
  629. // client.Token.CreateBulk(builders...).
  630. // OnConflict(
  631. // // Update the row with the new values
  632. // // the was proposed for insertion.
  633. // sql.ResolveWithNewValues(),
  634. // ).
  635. // // Override some of the fields with custom
  636. // // update values.
  637. // Update(func(u *ent.TokenUpsert) {
  638. // SetCreatedAt(v+v).
  639. // }).
  640. // Exec(ctx)
  641. func (tcb *TokenCreateBulk) OnConflict(opts ...sql.ConflictOption) *TokenUpsertBulk {
  642. tcb.conflict = opts
  643. return &TokenUpsertBulk{
  644. create: tcb,
  645. }
  646. }
  647. // OnConflictColumns calls `OnConflict` and configures the columns
  648. // as conflict target. Using this option is equivalent to using:
  649. //
  650. // client.Token.Create().
  651. // OnConflict(sql.ConflictColumns(columns...)).
  652. // Exec(ctx)
  653. func (tcb *TokenCreateBulk) OnConflictColumns(columns ...string) *TokenUpsertBulk {
  654. tcb.conflict = append(tcb.conflict, sql.ConflictColumns(columns...))
  655. return &TokenUpsertBulk{
  656. create: tcb,
  657. }
  658. }
  659. // TokenUpsertBulk is the builder for "upsert"-ing
  660. // a bulk of Token nodes.
  661. type TokenUpsertBulk struct {
  662. create *TokenCreateBulk
  663. }
  664. // UpdateNewValues updates the mutable fields using the new values that
  665. // were set on create. Using this option is equivalent to using:
  666. //
  667. // client.Token.Create().
  668. // OnConflict(
  669. // sql.ResolveWithNewValues(),
  670. // sql.ResolveWith(func(u *sql.UpdateSet) {
  671. // u.SetIgnore(token.FieldID)
  672. // }),
  673. // ).
  674. // Exec(ctx)
  675. func (u *TokenUpsertBulk) UpdateNewValues() *TokenUpsertBulk {
  676. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  677. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  678. for _, b := range u.create.builders {
  679. if _, exists := b.mutation.ID(); exists {
  680. s.SetIgnore(token.FieldID)
  681. }
  682. if _, exists := b.mutation.CreatedAt(); exists {
  683. s.SetIgnore(token.FieldCreatedAt)
  684. }
  685. }
  686. }))
  687. return u
  688. }
  689. // Ignore sets each column to itself in case of conflict.
  690. // Using this option is equivalent to using:
  691. //
  692. // client.Token.Create().
  693. // OnConflict(sql.ResolveWithIgnore()).
  694. // Exec(ctx)
  695. func (u *TokenUpsertBulk) Ignore() *TokenUpsertBulk {
  696. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  697. return u
  698. }
  699. // DoNothing configures the conflict_action to `DO NOTHING`.
  700. // Supported only by SQLite and PostgreSQL.
  701. func (u *TokenUpsertBulk) DoNothing() *TokenUpsertBulk {
  702. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  703. return u
  704. }
  705. // Update allows overriding fields `UPDATE` values. See the TokenCreateBulk.OnConflict
  706. // documentation for more info.
  707. func (u *TokenUpsertBulk) Update(set func(*TokenUpsert)) *TokenUpsertBulk {
  708. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  709. set(&TokenUpsert{UpdateSet: update})
  710. }))
  711. return u
  712. }
  713. // SetUpdatedAt sets the "updated_at" field.
  714. func (u *TokenUpsertBulk) SetUpdatedAt(v time.Time) *TokenUpsertBulk {
  715. return u.Update(func(s *TokenUpsert) {
  716. s.SetUpdatedAt(v)
  717. })
  718. }
  719. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  720. func (u *TokenUpsertBulk) UpdateUpdatedAt() *TokenUpsertBulk {
  721. return u.Update(func(s *TokenUpsert) {
  722. s.UpdateUpdatedAt()
  723. })
  724. }
  725. // SetDeletedAt sets the "deleted_at" field.
  726. func (u *TokenUpsertBulk) SetDeletedAt(v time.Time) *TokenUpsertBulk {
  727. return u.Update(func(s *TokenUpsert) {
  728. s.SetDeletedAt(v)
  729. })
  730. }
  731. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  732. func (u *TokenUpsertBulk) UpdateDeletedAt() *TokenUpsertBulk {
  733. return u.Update(func(s *TokenUpsert) {
  734. s.UpdateDeletedAt()
  735. })
  736. }
  737. // ClearDeletedAt clears the value of the "deleted_at" field.
  738. func (u *TokenUpsertBulk) ClearDeletedAt() *TokenUpsertBulk {
  739. return u.Update(func(s *TokenUpsert) {
  740. s.ClearDeletedAt()
  741. })
  742. }
  743. // SetExpireAt sets the "expire_at" field.
  744. func (u *TokenUpsertBulk) SetExpireAt(v time.Time) *TokenUpsertBulk {
  745. return u.Update(func(s *TokenUpsert) {
  746. s.SetExpireAt(v)
  747. })
  748. }
  749. // UpdateExpireAt sets the "expire_at" field to the value that was provided on create.
  750. func (u *TokenUpsertBulk) UpdateExpireAt() *TokenUpsertBulk {
  751. return u.Update(func(s *TokenUpsert) {
  752. s.UpdateExpireAt()
  753. })
  754. }
  755. // ClearExpireAt clears the value of the "expire_at" field.
  756. func (u *TokenUpsertBulk) ClearExpireAt() *TokenUpsertBulk {
  757. return u.Update(func(s *TokenUpsert) {
  758. s.ClearExpireAt()
  759. })
  760. }
  761. // SetToken sets the "token" field.
  762. func (u *TokenUpsertBulk) SetToken(v string) *TokenUpsertBulk {
  763. return u.Update(func(s *TokenUpsert) {
  764. s.SetToken(v)
  765. })
  766. }
  767. // UpdateToken sets the "token" field to the value that was provided on create.
  768. func (u *TokenUpsertBulk) UpdateToken() *TokenUpsertBulk {
  769. return u.Update(func(s *TokenUpsert) {
  770. s.UpdateToken()
  771. })
  772. }
  773. // ClearToken clears the value of the "token" field.
  774. func (u *TokenUpsertBulk) ClearToken() *TokenUpsertBulk {
  775. return u.Update(func(s *TokenUpsert) {
  776. s.ClearToken()
  777. })
  778. }
  779. // SetMAC sets the "mac" field.
  780. func (u *TokenUpsertBulk) SetMAC(v string) *TokenUpsertBulk {
  781. return u.Update(func(s *TokenUpsert) {
  782. s.SetMAC(v)
  783. })
  784. }
  785. // UpdateMAC sets the "mac" field to the value that was provided on create.
  786. func (u *TokenUpsertBulk) UpdateMAC() *TokenUpsertBulk {
  787. return u.Update(func(s *TokenUpsert) {
  788. s.UpdateMAC()
  789. })
  790. }
  791. // SetOrganizationID sets the "organization_id" field.
  792. func (u *TokenUpsertBulk) SetOrganizationID(v uint64) *TokenUpsertBulk {
  793. return u.Update(func(s *TokenUpsert) {
  794. s.SetOrganizationID(v)
  795. })
  796. }
  797. // AddOrganizationID adds v to the "organization_id" field.
  798. func (u *TokenUpsertBulk) AddOrganizationID(v uint64) *TokenUpsertBulk {
  799. return u.Update(func(s *TokenUpsert) {
  800. s.AddOrganizationID(v)
  801. })
  802. }
  803. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  804. func (u *TokenUpsertBulk) UpdateOrganizationID() *TokenUpsertBulk {
  805. return u.Update(func(s *TokenUpsert) {
  806. s.UpdateOrganizationID()
  807. })
  808. }
  809. // Exec executes the query.
  810. func (u *TokenUpsertBulk) Exec(ctx context.Context) error {
  811. if u.create.err != nil {
  812. return u.create.err
  813. }
  814. for i, b := range u.create.builders {
  815. if len(b.conflict) != 0 {
  816. return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the TokenCreateBulk instead", i)
  817. }
  818. }
  819. if len(u.create.conflict) == 0 {
  820. return errors.New("ent: missing options for TokenCreateBulk.OnConflict")
  821. }
  822. return u.create.Exec(ctx)
  823. }
  824. // ExecX is like Exec, but panics if an error occurs.
  825. func (u *TokenUpsertBulk) ExecX(ctx context.Context) {
  826. if err := u.create.Exec(ctx); err != nil {
  827. panic(err)
  828. }
  829. }