token_create.go 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344
  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. // SetAgentID sets the "agent_id" field.
  105. func (tc *TokenCreate) SetAgentID(u uint64) *TokenCreate {
  106. tc.mutation.SetAgentID(u)
  107. return tc
  108. }
  109. // SetNillableAgentID sets the "agent_id" field if the given value is not nil.
  110. func (tc *TokenCreate) SetNillableAgentID(u *uint64) *TokenCreate {
  111. if u != nil {
  112. tc.SetAgentID(*u)
  113. }
  114. return tc
  115. }
  116. // SetCustomAgentBase sets the "custom_agent_base" field.
  117. func (tc *TokenCreate) SetCustomAgentBase(s string) *TokenCreate {
  118. tc.mutation.SetCustomAgentBase(s)
  119. return tc
  120. }
  121. // SetNillableCustomAgentBase sets the "custom_agent_base" field if the given value is not nil.
  122. func (tc *TokenCreate) SetNillableCustomAgentBase(s *string) *TokenCreate {
  123. if s != nil {
  124. tc.SetCustomAgentBase(*s)
  125. }
  126. return tc
  127. }
  128. // SetCustomAgentKey sets the "custom_agent_key" field.
  129. func (tc *TokenCreate) SetCustomAgentKey(s string) *TokenCreate {
  130. tc.mutation.SetCustomAgentKey(s)
  131. return tc
  132. }
  133. // SetNillableCustomAgentKey sets the "custom_agent_key" field if the given value is not nil.
  134. func (tc *TokenCreate) SetNillableCustomAgentKey(s *string) *TokenCreate {
  135. if s != nil {
  136. tc.SetCustomAgentKey(*s)
  137. }
  138. return tc
  139. }
  140. // SetOpenaiBase sets the "openai_base" field.
  141. func (tc *TokenCreate) SetOpenaiBase(s string) *TokenCreate {
  142. tc.mutation.SetOpenaiBase(s)
  143. return tc
  144. }
  145. // SetNillableOpenaiBase sets the "openai_base" field if the given value is not nil.
  146. func (tc *TokenCreate) SetNillableOpenaiBase(s *string) *TokenCreate {
  147. if s != nil {
  148. tc.SetOpenaiBase(*s)
  149. }
  150. return tc
  151. }
  152. // SetOpenaiKey sets the "openai_key" field.
  153. func (tc *TokenCreate) SetOpenaiKey(s string) *TokenCreate {
  154. tc.mutation.SetOpenaiKey(s)
  155. return tc
  156. }
  157. // SetNillableOpenaiKey sets the "openai_key" field if the given value is not nil.
  158. func (tc *TokenCreate) SetNillableOpenaiKey(s *string) *TokenCreate {
  159. if s != nil {
  160. tc.SetOpenaiKey(*s)
  161. }
  162. return tc
  163. }
  164. // SetID sets the "id" field.
  165. func (tc *TokenCreate) SetID(u uint64) *TokenCreate {
  166. tc.mutation.SetID(u)
  167. return tc
  168. }
  169. // Mutation returns the TokenMutation object of the builder.
  170. func (tc *TokenCreate) Mutation() *TokenMutation {
  171. return tc.mutation
  172. }
  173. // Save creates the Token in the database.
  174. func (tc *TokenCreate) Save(ctx context.Context) (*Token, error) {
  175. if err := tc.defaults(); err != nil {
  176. return nil, err
  177. }
  178. return withHooks(ctx, tc.sqlSave, tc.mutation, tc.hooks)
  179. }
  180. // SaveX calls Save and panics if Save returns an error.
  181. func (tc *TokenCreate) SaveX(ctx context.Context) *Token {
  182. v, err := tc.Save(ctx)
  183. if err != nil {
  184. panic(err)
  185. }
  186. return v
  187. }
  188. // Exec executes the query.
  189. func (tc *TokenCreate) Exec(ctx context.Context) error {
  190. _, err := tc.Save(ctx)
  191. return err
  192. }
  193. // ExecX is like Exec, but panics if an error occurs.
  194. func (tc *TokenCreate) ExecX(ctx context.Context) {
  195. if err := tc.Exec(ctx); err != nil {
  196. panic(err)
  197. }
  198. }
  199. // defaults sets the default values of the builder before save.
  200. func (tc *TokenCreate) defaults() error {
  201. if _, ok := tc.mutation.CreatedAt(); !ok {
  202. if token.DefaultCreatedAt == nil {
  203. return fmt.Errorf("ent: uninitialized token.DefaultCreatedAt (forgotten import ent/runtime?)")
  204. }
  205. v := token.DefaultCreatedAt()
  206. tc.mutation.SetCreatedAt(v)
  207. }
  208. if _, ok := tc.mutation.UpdatedAt(); !ok {
  209. if token.DefaultUpdatedAt == nil {
  210. return fmt.Errorf("ent: uninitialized token.DefaultUpdatedAt (forgotten import ent/runtime?)")
  211. }
  212. v := token.DefaultUpdatedAt()
  213. tc.mutation.SetUpdatedAt(v)
  214. }
  215. if _, ok := tc.mutation.Token(); !ok {
  216. v := token.DefaultToken
  217. tc.mutation.SetToken(v)
  218. }
  219. if _, ok := tc.mutation.MAC(); !ok {
  220. v := token.DefaultMAC
  221. tc.mutation.SetMAC(v)
  222. }
  223. if _, ok := tc.mutation.OrganizationID(); !ok {
  224. v := token.DefaultOrganizationID
  225. tc.mutation.SetOrganizationID(v)
  226. }
  227. if _, ok := tc.mutation.AgentID(); !ok {
  228. v := token.DefaultAgentID
  229. tc.mutation.SetAgentID(v)
  230. }
  231. if _, ok := tc.mutation.CustomAgentBase(); !ok {
  232. v := token.DefaultCustomAgentBase
  233. tc.mutation.SetCustomAgentBase(v)
  234. }
  235. if _, ok := tc.mutation.CustomAgentKey(); !ok {
  236. v := token.DefaultCustomAgentKey
  237. tc.mutation.SetCustomAgentKey(v)
  238. }
  239. if _, ok := tc.mutation.OpenaiBase(); !ok {
  240. v := token.DefaultOpenaiBase
  241. tc.mutation.SetOpenaiBase(v)
  242. }
  243. if _, ok := tc.mutation.OpenaiKey(); !ok {
  244. v := token.DefaultOpenaiKey
  245. tc.mutation.SetOpenaiKey(v)
  246. }
  247. return nil
  248. }
  249. // check runs all checks and user-defined validators on the builder.
  250. func (tc *TokenCreate) check() error {
  251. if _, ok := tc.mutation.CreatedAt(); !ok {
  252. return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "Token.created_at"`)}
  253. }
  254. if _, ok := tc.mutation.UpdatedAt(); !ok {
  255. return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "Token.updated_at"`)}
  256. }
  257. if _, ok := tc.mutation.MAC(); !ok {
  258. return &ValidationError{Name: "mac", err: errors.New(`ent: missing required field "Token.mac"`)}
  259. }
  260. if _, ok := tc.mutation.OrganizationID(); !ok {
  261. return &ValidationError{Name: "organization_id", err: errors.New(`ent: missing required field "Token.organization_id"`)}
  262. }
  263. if _, ok := tc.mutation.AgentID(); !ok {
  264. return &ValidationError{Name: "agent_id", err: errors.New(`ent: missing required field "Token.agent_id"`)}
  265. }
  266. return nil
  267. }
  268. func (tc *TokenCreate) sqlSave(ctx context.Context) (*Token, error) {
  269. if err := tc.check(); err != nil {
  270. return nil, err
  271. }
  272. _node, _spec := tc.createSpec()
  273. if err := sqlgraph.CreateNode(ctx, tc.driver, _spec); err != nil {
  274. if sqlgraph.IsConstraintError(err) {
  275. err = &ConstraintError{msg: err.Error(), wrap: err}
  276. }
  277. return nil, err
  278. }
  279. if _spec.ID.Value != _node.ID {
  280. id := _spec.ID.Value.(int64)
  281. _node.ID = uint64(id)
  282. }
  283. tc.mutation.id = &_node.ID
  284. tc.mutation.done = true
  285. return _node, nil
  286. }
  287. func (tc *TokenCreate) createSpec() (*Token, *sqlgraph.CreateSpec) {
  288. var (
  289. _node = &Token{config: tc.config}
  290. _spec = sqlgraph.NewCreateSpec(token.Table, sqlgraph.NewFieldSpec(token.FieldID, field.TypeUint64))
  291. )
  292. _spec.OnConflict = tc.conflict
  293. if id, ok := tc.mutation.ID(); ok {
  294. _node.ID = id
  295. _spec.ID.Value = id
  296. }
  297. if value, ok := tc.mutation.CreatedAt(); ok {
  298. _spec.SetField(token.FieldCreatedAt, field.TypeTime, value)
  299. _node.CreatedAt = value
  300. }
  301. if value, ok := tc.mutation.UpdatedAt(); ok {
  302. _spec.SetField(token.FieldUpdatedAt, field.TypeTime, value)
  303. _node.UpdatedAt = value
  304. }
  305. if value, ok := tc.mutation.DeletedAt(); ok {
  306. _spec.SetField(token.FieldDeletedAt, field.TypeTime, value)
  307. _node.DeletedAt = value
  308. }
  309. if value, ok := tc.mutation.ExpireAt(); ok {
  310. _spec.SetField(token.FieldExpireAt, field.TypeTime, value)
  311. _node.ExpireAt = value
  312. }
  313. if value, ok := tc.mutation.Token(); ok {
  314. _spec.SetField(token.FieldToken, field.TypeString, value)
  315. _node.Token = value
  316. }
  317. if value, ok := tc.mutation.MAC(); ok {
  318. _spec.SetField(token.FieldMAC, field.TypeString, value)
  319. _node.MAC = value
  320. }
  321. if value, ok := tc.mutation.OrganizationID(); ok {
  322. _spec.SetField(token.FieldOrganizationID, field.TypeUint64, value)
  323. _node.OrganizationID = value
  324. }
  325. if value, ok := tc.mutation.AgentID(); ok {
  326. _spec.SetField(token.FieldAgentID, field.TypeUint64, value)
  327. _node.AgentID = value
  328. }
  329. if value, ok := tc.mutation.CustomAgentBase(); ok {
  330. _spec.SetField(token.FieldCustomAgentBase, field.TypeString, value)
  331. _node.CustomAgentBase = value
  332. }
  333. if value, ok := tc.mutation.CustomAgentKey(); ok {
  334. _spec.SetField(token.FieldCustomAgentKey, field.TypeString, value)
  335. _node.CustomAgentKey = value
  336. }
  337. if value, ok := tc.mutation.OpenaiBase(); ok {
  338. _spec.SetField(token.FieldOpenaiBase, field.TypeString, value)
  339. _node.OpenaiBase = value
  340. }
  341. if value, ok := tc.mutation.OpenaiKey(); ok {
  342. _spec.SetField(token.FieldOpenaiKey, field.TypeString, value)
  343. _node.OpenaiKey = value
  344. }
  345. return _node, _spec
  346. }
  347. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  348. // of the `INSERT` statement. For example:
  349. //
  350. // client.Token.Create().
  351. // SetCreatedAt(v).
  352. // OnConflict(
  353. // // Update the row with the new values
  354. // // the was proposed for insertion.
  355. // sql.ResolveWithNewValues(),
  356. // ).
  357. // // Override some of the fields with custom
  358. // // update values.
  359. // Update(func(u *ent.TokenUpsert) {
  360. // SetCreatedAt(v+v).
  361. // }).
  362. // Exec(ctx)
  363. func (tc *TokenCreate) OnConflict(opts ...sql.ConflictOption) *TokenUpsertOne {
  364. tc.conflict = opts
  365. return &TokenUpsertOne{
  366. create: tc,
  367. }
  368. }
  369. // OnConflictColumns calls `OnConflict` and configures the columns
  370. // as conflict target. Using this option is equivalent to using:
  371. //
  372. // client.Token.Create().
  373. // OnConflict(sql.ConflictColumns(columns...)).
  374. // Exec(ctx)
  375. func (tc *TokenCreate) OnConflictColumns(columns ...string) *TokenUpsertOne {
  376. tc.conflict = append(tc.conflict, sql.ConflictColumns(columns...))
  377. return &TokenUpsertOne{
  378. create: tc,
  379. }
  380. }
  381. type (
  382. // TokenUpsertOne is the builder for "upsert"-ing
  383. // one Token node.
  384. TokenUpsertOne struct {
  385. create *TokenCreate
  386. }
  387. // TokenUpsert is the "OnConflict" setter.
  388. TokenUpsert struct {
  389. *sql.UpdateSet
  390. }
  391. )
  392. // SetUpdatedAt sets the "updated_at" field.
  393. func (u *TokenUpsert) SetUpdatedAt(v time.Time) *TokenUpsert {
  394. u.Set(token.FieldUpdatedAt, v)
  395. return u
  396. }
  397. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  398. func (u *TokenUpsert) UpdateUpdatedAt() *TokenUpsert {
  399. u.SetExcluded(token.FieldUpdatedAt)
  400. return u
  401. }
  402. // SetDeletedAt sets the "deleted_at" field.
  403. func (u *TokenUpsert) SetDeletedAt(v time.Time) *TokenUpsert {
  404. u.Set(token.FieldDeletedAt, v)
  405. return u
  406. }
  407. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  408. func (u *TokenUpsert) UpdateDeletedAt() *TokenUpsert {
  409. u.SetExcluded(token.FieldDeletedAt)
  410. return u
  411. }
  412. // ClearDeletedAt clears the value of the "deleted_at" field.
  413. func (u *TokenUpsert) ClearDeletedAt() *TokenUpsert {
  414. u.SetNull(token.FieldDeletedAt)
  415. return u
  416. }
  417. // SetExpireAt sets the "expire_at" field.
  418. func (u *TokenUpsert) SetExpireAt(v time.Time) *TokenUpsert {
  419. u.Set(token.FieldExpireAt, v)
  420. return u
  421. }
  422. // UpdateExpireAt sets the "expire_at" field to the value that was provided on create.
  423. func (u *TokenUpsert) UpdateExpireAt() *TokenUpsert {
  424. u.SetExcluded(token.FieldExpireAt)
  425. return u
  426. }
  427. // ClearExpireAt clears the value of the "expire_at" field.
  428. func (u *TokenUpsert) ClearExpireAt() *TokenUpsert {
  429. u.SetNull(token.FieldExpireAt)
  430. return u
  431. }
  432. // SetToken sets the "token" field.
  433. func (u *TokenUpsert) SetToken(v string) *TokenUpsert {
  434. u.Set(token.FieldToken, v)
  435. return u
  436. }
  437. // UpdateToken sets the "token" field to the value that was provided on create.
  438. func (u *TokenUpsert) UpdateToken() *TokenUpsert {
  439. u.SetExcluded(token.FieldToken)
  440. return u
  441. }
  442. // ClearToken clears the value of the "token" field.
  443. func (u *TokenUpsert) ClearToken() *TokenUpsert {
  444. u.SetNull(token.FieldToken)
  445. return u
  446. }
  447. // SetMAC sets the "mac" field.
  448. func (u *TokenUpsert) SetMAC(v string) *TokenUpsert {
  449. u.Set(token.FieldMAC, v)
  450. return u
  451. }
  452. // UpdateMAC sets the "mac" field to the value that was provided on create.
  453. func (u *TokenUpsert) UpdateMAC() *TokenUpsert {
  454. u.SetExcluded(token.FieldMAC)
  455. return u
  456. }
  457. // SetOrganizationID sets the "organization_id" field.
  458. func (u *TokenUpsert) SetOrganizationID(v uint64) *TokenUpsert {
  459. u.Set(token.FieldOrganizationID, v)
  460. return u
  461. }
  462. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  463. func (u *TokenUpsert) UpdateOrganizationID() *TokenUpsert {
  464. u.SetExcluded(token.FieldOrganizationID)
  465. return u
  466. }
  467. // AddOrganizationID adds v to the "organization_id" field.
  468. func (u *TokenUpsert) AddOrganizationID(v uint64) *TokenUpsert {
  469. u.Add(token.FieldOrganizationID, v)
  470. return u
  471. }
  472. // SetAgentID sets the "agent_id" field.
  473. func (u *TokenUpsert) SetAgentID(v uint64) *TokenUpsert {
  474. u.Set(token.FieldAgentID, v)
  475. return u
  476. }
  477. // UpdateAgentID sets the "agent_id" field to the value that was provided on create.
  478. func (u *TokenUpsert) UpdateAgentID() *TokenUpsert {
  479. u.SetExcluded(token.FieldAgentID)
  480. return u
  481. }
  482. // AddAgentID adds v to the "agent_id" field.
  483. func (u *TokenUpsert) AddAgentID(v uint64) *TokenUpsert {
  484. u.Add(token.FieldAgentID, v)
  485. return u
  486. }
  487. // SetCustomAgentBase sets the "custom_agent_base" field.
  488. func (u *TokenUpsert) SetCustomAgentBase(v string) *TokenUpsert {
  489. u.Set(token.FieldCustomAgentBase, v)
  490. return u
  491. }
  492. // UpdateCustomAgentBase sets the "custom_agent_base" field to the value that was provided on create.
  493. func (u *TokenUpsert) UpdateCustomAgentBase() *TokenUpsert {
  494. u.SetExcluded(token.FieldCustomAgentBase)
  495. return u
  496. }
  497. // ClearCustomAgentBase clears the value of the "custom_agent_base" field.
  498. func (u *TokenUpsert) ClearCustomAgentBase() *TokenUpsert {
  499. u.SetNull(token.FieldCustomAgentBase)
  500. return u
  501. }
  502. // SetCustomAgentKey sets the "custom_agent_key" field.
  503. func (u *TokenUpsert) SetCustomAgentKey(v string) *TokenUpsert {
  504. u.Set(token.FieldCustomAgentKey, v)
  505. return u
  506. }
  507. // UpdateCustomAgentKey sets the "custom_agent_key" field to the value that was provided on create.
  508. func (u *TokenUpsert) UpdateCustomAgentKey() *TokenUpsert {
  509. u.SetExcluded(token.FieldCustomAgentKey)
  510. return u
  511. }
  512. // ClearCustomAgentKey clears the value of the "custom_agent_key" field.
  513. func (u *TokenUpsert) ClearCustomAgentKey() *TokenUpsert {
  514. u.SetNull(token.FieldCustomAgentKey)
  515. return u
  516. }
  517. // SetOpenaiBase sets the "openai_base" field.
  518. func (u *TokenUpsert) SetOpenaiBase(v string) *TokenUpsert {
  519. u.Set(token.FieldOpenaiBase, v)
  520. return u
  521. }
  522. // UpdateOpenaiBase sets the "openai_base" field to the value that was provided on create.
  523. func (u *TokenUpsert) UpdateOpenaiBase() *TokenUpsert {
  524. u.SetExcluded(token.FieldOpenaiBase)
  525. return u
  526. }
  527. // ClearOpenaiBase clears the value of the "openai_base" field.
  528. func (u *TokenUpsert) ClearOpenaiBase() *TokenUpsert {
  529. u.SetNull(token.FieldOpenaiBase)
  530. return u
  531. }
  532. // SetOpenaiKey sets the "openai_key" field.
  533. func (u *TokenUpsert) SetOpenaiKey(v string) *TokenUpsert {
  534. u.Set(token.FieldOpenaiKey, v)
  535. return u
  536. }
  537. // UpdateOpenaiKey sets the "openai_key" field to the value that was provided on create.
  538. func (u *TokenUpsert) UpdateOpenaiKey() *TokenUpsert {
  539. u.SetExcluded(token.FieldOpenaiKey)
  540. return u
  541. }
  542. // ClearOpenaiKey clears the value of the "openai_key" field.
  543. func (u *TokenUpsert) ClearOpenaiKey() *TokenUpsert {
  544. u.SetNull(token.FieldOpenaiKey)
  545. return u
  546. }
  547. // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
  548. // Using this option is equivalent to using:
  549. //
  550. // client.Token.Create().
  551. // OnConflict(
  552. // sql.ResolveWithNewValues(),
  553. // sql.ResolveWith(func(u *sql.UpdateSet) {
  554. // u.SetIgnore(token.FieldID)
  555. // }),
  556. // ).
  557. // Exec(ctx)
  558. func (u *TokenUpsertOne) UpdateNewValues() *TokenUpsertOne {
  559. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  560. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  561. if _, exists := u.create.mutation.ID(); exists {
  562. s.SetIgnore(token.FieldID)
  563. }
  564. if _, exists := u.create.mutation.CreatedAt(); exists {
  565. s.SetIgnore(token.FieldCreatedAt)
  566. }
  567. }))
  568. return u
  569. }
  570. // Ignore sets each column to itself in case of conflict.
  571. // Using this option is equivalent to using:
  572. //
  573. // client.Token.Create().
  574. // OnConflict(sql.ResolveWithIgnore()).
  575. // Exec(ctx)
  576. func (u *TokenUpsertOne) Ignore() *TokenUpsertOne {
  577. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  578. return u
  579. }
  580. // DoNothing configures the conflict_action to `DO NOTHING`.
  581. // Supported only by SQLite and PostgreSQL.
  582. func (u *TokenUpsertOne) DoNothing() *TokenUpsertOne {
  583. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  584. return u
  585. }
  586. // Update allows overriding fields `UPDATE` values. See the TokenCreate.OnConflict
  587. // documentation for more info.
  588. func (u *TokenUpsertOne) Update(set func(*TokenUpsert)) *TokenUpsertOne {
  589. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  590. set(&TokenUpsert{UpdateSet: update})
  591. }))
  592. return u
  593. }
  594. // SetUpdatedAt sets the "updated_at" field.
  595. func (u *TokenUpsertOne) SetUpdatedAt(v time.Time) *TokenUpsertOne {
  596. return u.Update(func(s *TokenUpsert) {
  597. s.SetUpdatedAt(v)
  598. })
  599. }
  600. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  601. func (u *TokenUpsertOne) UpdateUpdatedAt() *TokenUpsertOne {
  602. return u.Update(func(s *TokenUpsert) {
  603. s.UpdateUpdatedAt()
  604. })
  605. }
  606. // SetDeletedAt sets the "deleted_at" field.
  607. func (u *TokenUpsertOne) SetDeletedAt(v time.Time) *TokenUpsertOne {
  608. return u.Update(func(s *TokenUpsert) {
  609. s.SetDeletedAt(v)
  610. })
  611. }
  612. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  613. func (u *TokenUpsertOne) UpdateDeletedAt() *TokenUpsertOne {
  614. return u.Update(func(s *TokenUpsert) {
  615. s.UpdateDeletedAt()
  616. })
  617. }
  618. // ClearDeletedAt clears the value of the "deleted_at" field.
  619. func (u *TokenUpsertOne) ClearDeletedAt() *TokenUpsertOne {
  620. return u.Update(func(s *TokenUpsert) {
  621. s.ClearDeletedAt()
  622. })
  623. }
  624. // SetExpireAt sets the "expire_at" field.
  625. func (u *TokenUpsertOne) SetExpireAt(v time.Time) *TokenUpsertOne {
  626. return u.Update(func(s *TokenUpsert) {
  627. s.SetExpireAt(v)
  628. })
  629. }
  630. // UpdateExpireAt sets the "expire_at" field to the value that was provided on create.
  631. func (u *TokenUpsertOne) UpdateExpireAt() *TokenUpsertOne {
  632. return u.Update(func(s *TokenUpsert) {
  633. s.UpdateExpireAt()
  634. })
  635. }
  636. // ClearExpireAt clears the value of the "expire_at" field.
  637. func (u *TokenUpsertOne) ClearExpireAt() *TokenUpsertOne {
  638. return u.Update(func(s *TokenUpsert) {
  639. s.ClearExpireAt()
  640. })
  641. }
  642. // SetToken sets the "token" field.
  643. func (u *TokenUpsertOne) SetToken(v string) *TokenUpsertOne {
  644. return u.Update(func(s *TokenUpsert) {
  645. s.SetToken(v)
  646. })
  647. }
  648. // UpdateToken sets the "token" field to the value that was provided on create.
  649. func (u *TokenUpsertOne) UpdateToken() *TokenUpsertOne {
  650. return u.Update(func(s *TokenUpsert) {
  651. s.UpdateToken()
  652. })
  653. }
  654. // ClearToken clears the value of the "token" field.
  655. func (u *TokenUpsertOne) ClearToken() *TokenUpsertOne {
  656. return u.Update(func(s *TokenUpsert) {
  657. s.ClearToken()
  658. })
  659. }
  660. // SetMAC sets the "mac" field.
  661. func (u *TokenUpsertOne) SetMAC(v string) *TokenUpsertOne {
  662. return u.Update(func(s *TokenUpsert) {
  663. s.SetMAC(v)
  664. })
  665. }
  666. // UpdateMAC sets the "mac" field to the value that was provided on create.
  667. func (u *TokenUpsertOne) UpdateMAC() *TokenUpsertOne {
  668. return u.Update(func(s *TokenUpsert) {
  669. s.UpdateMAC()
  670. })
  671. }
  672. // SetOrganizationID sets the "organization_id" field.
  673. func (u *TokenUpsertOne) SetOrganizationID(v uint64) *TokenUpsertOne {
  674. return u.Update(func(s *TokenUpsert) {
  675. s.SetOrganizationID(v)
  676. })
  677. }
  678. // AddOrganizationID adds v to the "organization_id" field.
  679. func (u *TokenUpsertOne) AddOrganizationID(v uint64) *TokenUpsertOne {
  680. return u.Update(func(s *TokenUpsert) {
  681. s.AddOrganizationID(v)
  682. })
  683. }
  684. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  685. func (u *TokenUpsertOne) UpdateOrganizationID() *TokenUpsertOne {
  686. return u.Update(func(s *TokenUpsert) {
  687. s.UpdateOrganizationID()
  688. })
  689. }
  690. // SetAgentID sets the "agent_id" field.
  691. func (u *TokenUpsertOne) SetAgentID(v uint64) *TokenUpsertOne {
  692. return u.Update(func(s *TokenUpsert) {
  693. s.SetAgentID(v)
  694. })
  695. }
  696. // AddAgentID adds v to the "agent_id" field.
  697. func (u *TokenUpsertOne) AddAgentID(v uint64) *TokenUpsertOne {
  698. return u.Update(func(s *TokenUpsert) {
  699. s.AddAgentID(v)
  700. })
  701. }
  702. // UpdateAgentID sets the "agent_id" field to the value that was provided on create.
  703. func (u *TokenUpsertOne) UpdateAgentID() *TokenUpsertOne {
  704. return u.Update(func(s *TokenUpsert) {
  705. s.UpdateAgentID()
  706. })
  707. }
  708. // SetCustomAgentBase sets the "custom_agent_base" field.
  709. func (u *TokenUpsertOne) SetCustomAgentBase(v string) *TokenUpsertOne {
  710. return u.Update(func(s *TokenUpsert) {
  711. s.SetCustomAgentBase(v)
  712. })
  713. }
  714. // UpdateCustomAgentBase sets the "custom_agent_base" field to the value that was provided on create.
  715. func (u *TokenUpsertOne) UpdateCustomAgentBase() *TokenUpsertOne {
  716. return u.Update(func(s *TokenUpsert) {
  717. s.UpdateCustomAgentBase()
  718. })
  719. }
  720. // ClearCustomAgentBase clears the value of the "custom_agent_base" field.
  721. func (u *TokenUpsertOne) ClearCustomAgentBase() *TokenUpsertOne {
  722. return u.Update(func(s *TokenUpsert) {
  723. s.ClearCustomAgentBase()
  724. })
  725. }
  726. // SetCustomAgentKey sets the "custom_agent_key" field.
  727. func (u *TokenUpsertOne) SetCustomAgentKey(v string) *TokenUpsertOne {
  728. return u.Update(func(s *TokenUpsert) {
  729. s.SetCustomAgentKey(v)
  730. })
  731. }
  732. // UpdateCustomAgentKey sets the "custom_agent_key" field to the value that was provided on create.
  733. func (u *TokenUpsertOne) UpdateCustomAgentKey() *TokenUpsertOne {
  734. return u.Update(func(s *TokenUpsert) {
  735. s.UpdateCustomAgentKey()
  736. })
  737. }
  738. // ClearCustomAgentKey clears the value of the "custom_agent_key" field.
  739. func (u *TokenUpsertOne) ClearCustomAgentKey() *TokenUpsertOne {
  740. return u.Update(func(s *TokenUpsert) {
  741. s.ClearCustomAgentKey()
  742. })
  743. }
  744. // SetOpenaiBase sets the "openai_base" field.
  745. func (u *TokenUpsertOne) SetOpenaiBase(v string) *TokenUpsertOne {
  746. return u.Update(func(s *TokenUpsert) {
  747. s.SetOpenaiBase(v)
  748. })
  749. }
  750. // UpdateOpenaiBase sets the "openai_base" field to the value that was provided on create.
  751. func (u *TokenUpsertOne) UpdateOpenaiBase() *TokenUpsertOne {
  752. return u.Update(func(s *TokenUpsert) {
  753. s.UpdateOpenaiBase()
  754. })
  755. }
  756. // ClearOpenaiBase clears the value of the "openai_base" field.
  757. func (u *TokenUpsertOne) ClearOpenaiBase() *TokenUpsertOne {
  758. return u.Update(func(s *TokenUpsert) {
  759. s.ClearOpenaiBase()
  760. })
  761. }
  762. // SetOpenaiKey sets the "openai_key" field.
  763. func (u *TokenUpsertOne) SetOpenaiKey(v string) *TokenUpsertOne {
  764. return u.Update(func(s *TokenUpsert) {
  765. s.SetOpenaiKey(v)
  766. })
  767. }
  768. // UpdateOpenaiKey sets the "openai_key" field to the value that was provided on create.
  769. func (u *TokenUpsertOne) UpdateOpenaiKey() *TokenUpsertOne {
  770. return u.Update(func(s *TokenUpsert) {
  771. s.UpdateOpenaiKey()
  772. })
  773. }
  774. // ClearOpenaiKey clears the value of the "openai_key" field.
  775. func (u *TokenUpsertOne) ClearOpenaiKey() *TokenUpsertOne {
  776. return u.Update(func(s *TokenUpsert) {
  777. s.ClearOpenaiKey()
  778. })
  779. }
  780. // Exec executes the query.
  781. func (u *TokenUpsertOne) Exec(ctx context.Context) error {
  782. if len(u.create.conflict) == 0 {
  783. return errors.New("ent: missing options for TokenCreate.OnConflict")
  784. }
  785. return u.create.Exec(ctx)
  786. }
  787. // ExecX is like Exec, but panics if an error occurs.
  788. func (u *TokenUpsertOne) ExecX(ctx context.Context) {
  789. if err := u.create.Exec(ctx); err != nil {
  790. panic(err)
  791. }
  792. }
  793. // Exec executes the UPSERT query and returns the inserted/updated ID.
  794. func (u *TokenUpsertOne) ID(ctx context.Context) (id uint64, err error) {
  795. node, err := u.create.Save(ctx)
  796. if err != nil {
  797. return id, err
  798. }
  799. return node.ID, nil
  800. }
  801. // IDX is like ID, but panics if an error occurs.
  802. func (u *TokenUpsertOne) IDX(ctx context.Context) uint64 {
  803. id, err := u.ID(ctx)
  804. if err != nil {
  805. panic(err)
  806. }
  807. return id
  808. }
  809. // TokenCreateBulk is the builder for creating many Token entities in bulk.
  810. type TokenCreateBulk struct {
  811. config
  812. err error
  813. builders []*TokenCreate
  814. conflict []sql.ConflictOption
  815. }
  816. // Save creates the Token entities in the database.
  817. func (tcb *TokenCreateBulk) Save(ctx context.Context) ([]*Token, error) {
  818. if tcb.err != nil {
  819. return nil, tcb.err
  820. }
  821. specs := make([]*sqlgraph.CreateSpec, len(tcb.builders))
  822. nodes := make([]*Token, len(tcb.builders))
  823. mutators := make([]Mutator, len(tcb.builders))
  824. for i := range tcb.builders {
  825. func(i int, root context.Context) {
  826. builder := tcb.builders[i]
  827. builder.defaults()
  828. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  829. mutation, ok := m.(*TokenMutation)
  830. if !ok {
  831. return nil, fmt.Errorf("unexpected mutation type %T", m)
  832. }
  833. if err := builder.check(); err != nil {
  834. return nil, err
  835. }
  836. builder.mutation = mutation
  837. var err error
  838. nodes[i], specs[i] = builder.createSpec()
  839. if i < len(mutators)-1 {
  840. _, err = mutators[i+1].Mutate(root, tcb.builders[i+1].mutation)
  841. } else {
  842. spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
  843. spec.OnConflict = tcb.conflict
  844. // Invoke the actual operation on the latest mutation in the chain.
  845. if err = sqlgraph.BatchCreate(ctx, tcb.driver, spec); err != nil {
  846. if sqlgraph.IsConstraintError(err) {
  847. err = &ConstraintError{msg: err.Error(), wrap: err}
  848. }
  849. }
  850. }
  851. if err != nil {
  852. return nil, err
  853. }
  854. mutation.id = &nodes[i].ID
  855. if specs[i].ID.Value != nil && nodes[i].ID == 0 {
  856. id := specs[i].ID.Value.(int64)
  857. nodes[i].ID = uint64(id)
  858. }
  859. mutation.done = true
  860. return nodes[i], nil
  861. })
  862. for i := len(builder.hooks) - 1; i >= 0; i-- {
  863. mut = builder.hooks[i](mut)
  864. }
  865. mutators[i] = mut
  866. }(i, ctx)
  867. }
  868. if len(mutators) > 0 {
  869. if _, err := mutators[0].Mutate(ctx, tcb.builders[0].mutation); err != nil {
  870. return nil, err
  871. }
  872. }
  873. return nodes, nil
  874. }
  875. // SaveX is like Save, but panics if an error occurs.
  876. func (tcb *TokenCreateBulk) SaveX(ctx context.Context) []*Token {
  877. v, err := tcb.Save(ctx)
  878. if err != nil {
  879. panic(err)
  880. }
  881. return v
  882. }
  883. // Exec executes the query.
  884. func (tcb *TokenCreateBulk) Exec(ctx context.Context) error {
  885. _, err := tcb.Save(ctx)
  886. return err
  887. }
  888. // ExecX is like Exec, but panics if an error occurs.
  889. func (tcb *TokenCreateBulk) ExecX(ctx context.Context) {
  890. if err := tcb.Exec(ctx); err != nil {
  891. panic(err)
  892. }
  893. }
  894. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  895. // of the `INSERT` statement. For example:
  896. //
  897. // client.Token.CreateBulk(builders...).
  898. // OnConflict(
  899. // // Update the row with the new values
  900. // // the was proposed for insertion.
  901. // sql.ResolveWithNewValues(),
  902. // ).
  903. // // Override some of the fields with custom
  904. // // update values.
  905. // Update(func(u *ent.TokenUpsert) {
  906. // SetCreatedAt(v+v).
  907. // }).
  908. // Exec(ctx)
  909. func (tcb *TokenCreateBulk) OnConflict(opts ...sql.ConflictOption) *TokenUpsertBulk {
  910. tcb.conflict = opts
  911. return &TokenUpsertBulk{
  912. create: tcb,
  913. }
  914. }
  915. // OnConflictColumns calls `OnConflict` and configures the columns
  916. // as conflict target. Using this option is equivalent to using:
  917. //
  918. // client.Token.Create().
  919. // OnConflict(sql.ConflictColumns(columns...)).
  920. // Exec(ctx)
  921. func (tcb *TokenCreateBulk) OnConflictColumns(columns ...string) *TokenUpsertBulk {
  922. tcb.conflict = append(tcb.conflict, sql.ConflictColumns(columns...))
  923. return &TokenUpsertBulk{
  924. create: tcb,
  925. }
  926. }
  927. // TokenUpsertBulk is the builder for "upsert"-ing
  928. // a bulk of Token nodes.
  929. type TokenUpsertBulk struct {
  930. create *TokenCreateBulk
  931. }
  932. // UpdateNewValues updates the mutable fields using the new values that
  933. // were set on create. Using this option is equivalent to using:
  934. //
  935. // client.Token.Create().
  936. // OnConflict(
  937. // sql.ResolveWithNewValues(),
  938. // sql.ResolveWith(func(u *sql.UpdateSet) {
  939. // u.SetIgnore(token.FieldID)
  940. // }),
  941. // ).
  942. // Exec(ctx)
  943. func (u *TokenUpsertBulk) UpdateNewValues() *TokenUpsertBulk {
  944. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  945. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  946. for _, b := range u.create.builders {
  947. if _, exists := b.mutation.ID(); exists {
  948. s.SetIgnore(token.FieldID)
  949. }
  950. if _, exists := b.mutation.CreatedAt(); exists {
  951. s.SetIgnore(token.FieldCreatedAt)
  952. }
  953. }
  954. }))
  955. return u
  956. }
  957. // Ignore sets each column to itself in case of conflict.
  958. // Using this option is equivalent to using:
  959. //
  960. // client.Token.Create().
  961. // OnConflict(sql.ResolveWithIgnore()).
  962. // Exec(ctx)
  963. func (u *TokenUpsertBulk) Ignore() *TokenUpsertBulk {
  964. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  965. return u
  966. }
  967. // DoNothing configures the conflict_action to `DO NOTHING`.
  968. // Supported only by SQLite and PostgreSQL.
  969. func (u *TokenUpsertBulk) DoNothing() *TokenUpsertBulk {
  970. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  971. return u
  972. }
  973. // Update allows overriding fields `UPDATE` values. See the TokenCreateBulk.OnConflict
  974. // documentation for more info.
  975. func (u *TokenUpsertBulk) Update(set func(*TokenUpsert)) *TokenUpsertBulk {
  976. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  977. set(&TokenUpsert{UpdateSet: update})
  978. }))
  979. return u
  980. }
  981. // SetUpdatedAt sets the "updated_at" field.
  982. func (u *TokenUpsertBulk) SetUpdatedAt(v time.Time) *TokenUpsertBulk {
  983. return u.Update(func(s *TokenUpsert) {
  984. s.SetUpdatedAt(v)
  985. })
  986. }
  987. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  988. func (u *TokenUpsertBulk) UpdateUpdatedAt() *TokenUpsertBulk {
  989. return u.Update(func(s *TokenUpsert) {
  990. s.UpdateUpdatedAt()
  991. })
  992. }
  993. // SetDeletedAt sets the "deleted_at" field.
  994. func (u *TokenUpsertBulk) SetDeletedAt(v time.Time) *TokenUpsertBulk {
  995. return u.Update(func(s *TokenUpsert) {
  996. s.SetDeletedAt(v)
  997. })
  998. }
  999. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  1000. func (u *TokenUpsertBulk) UpdateDeletedAt() *TokenUpsertBulk {
  1001. return u.Update(func(s *TokenUpsert) {
  1002. s.UpdateDeletedAt()
  1003. })
  1004. }
  1005. // ClearDeletedAt clears the value of the "deleted_at" field.
  1006. func (u *TokenUpsertBulk) ClearDeletedAt() *TokenUpsertBulk {
  1007. return u.Update(func(s *TokenUpsert) {
  1008. s.ClearDeletedAt()
  1009. })
  1010. }
  1011. // SetExpireAt sets the "expire_at" field.
  1012. func (u *TokenUpsertBulk) SetExpireAt(v time.Time) *TokenUpsertBulk {
  1013. return u.Update(func(s *TokenUpsert) {
  1014. s.SetExpireAt(v)
  1015. })
  1016. }
  1017. // UpdateExpireAt sets the "expire_at" field to the value that was provided on create.
  1018. func (u *TokenUpsertBulk) UpdateExpireAt() *TokenUpsertBulk {
  1019. return u.Update(func(s *TokenUpsert) {
  1020. s.UpdateExpireAt()
  1021. })
  1022. }
  1023. // ClearExpireAt clears the value of the "expire_at" field.
  1024. func (u *TokenUpsertBulk) ClearExpireAt() *TokenUpsertBulk {
  1025. return u.Update(func(s *TokenUpsert) {
  1026. s.ClearExpireAt()
  1027. })
  1028. }
  1029. // SetToken sets the "token" field.
  1030. func (u *TokenUpsertBulk) SetToken(v string) *TokenUpsertBulk {
  1031. return u.Update(func(s *TokenUpsert) {
  1032. s.SetToken(v)
  1033. })
  1034. }
  1035. // UpdateToken sets the "token" field to the value that was provided on create.
  1036. func (u *TokenUpsertBulk) UpdateToken() *TokenUpsertBulk {
  1037. return u.Update(func(s *TokenUpsert) {
  1038. s.UpdateToken()
  1039. })
  1040. }
  1041. // ClearToken clears the value of the "token" field.
  1042. func (u *TokenUpsertBulk) ClearToken() *TokenUpsertBulk {
  1043. return u.Update(func(s *TokenUpsert) {
  1044. s.ClearToken()
  1045. })
  1046. }
  1047. // SetMAC sets the "mac" field.
  1048. func (u *TokenUpsertBulk) SetMAC(v string) *TokenUpsertBulk {
  1049. return u.Update(func(s *TokenUpsert) {
  1050. s.SetMAC(v)
  1051. })
  1052. }
  1053. // UpdateMAC sets the "mac" field to the value that was provided on create.
  1054. func (u *TokenUpsertBulk) UpdateMAC() *TokenUpsertBulk {
  1055. return u.Update(func(s *TokenUpsert) {
  1056. s.UpdateMAC()
  1057. })
  1058. }
  1059. // SetOrganizationID sets the "organization_id" field.
  1060. func (u *TokenUpsertBulk) SetOrganizationID(v uint64) *TokenUpsertBulk {
  1061. return u.Update(func(s *TokenUpsert) {
  1062. s.SetOrganizationID(v)
  1063. })
  1064. }
  1065. // AddOrganizationID adds v to the "organization_id" field.
  1066. func (u *TokenUpsertBulk) AddOrganizationID(v uint64) *TokenUpsertBulk {
  1067. return u.Update(func(s *TokenUpsert) {
  1068. s.AddOrganizationID(v)
  1069. })
  1070. }
  1071. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  1072. func (u *TokenUpsertBulk) UpdateOrganizationID() *TokenUpsertBulk {
  1073. return u.Update(func(s *TokenUpsert) {
  1074. s.UpdateOrganizationID()
  1075. })
  1076. }
  1077. // SetAgentID sets the "agent_id" field.
  1078. func (u *TokenUpsertBulk) SetAgentID(v uint64) *TokenUpsertBulk {
  1079. return u.Update(func(s *TokenUpsert) {
  1080. s.SetAgentID(v)
  1081. })
  1082. }
  1083. // AddAgentID adds v to the "agent_id" field.
  1084. func (u *TokenUpsertBulk) AddAgentID(v uint64) *TokenUpsertBulk {
  1085. return u.Update(func(s *TokenUpsert) {
  1086. s.AddAgentID(v)
  1087. })
  1088. }
  1089. // UpdateAgentID sets the "agent_id" field to the value that was provided on create.
  1090. func (u *TokenUpsertBulk) UpdateAgentID() *TokenUpsertBulk {
  1091. return u.Update(func(s *TokenUpsert) {
  1092. s.UpdateAgentID()
  1093. })
  1094. }
  1095. // SetCustomAgentBase sets the "custom_agent_base" field.
  1096. func (u *TokenUpsertBulk) SetCustomAgentBase(v string) *TokenUpsertBulk {
  1097. return u.Update(func(s *TokenUpsert) {
  1098. s.SetCustomAgentBase(v)
  1099. })
  1100. }
  1101. // UpdateCustomAgentBase sets the "custom_agent_base" field to the value that was provided on create.
  1102. func (u *TokenUpsertBulk) UpdateCustomAgentBase() *TokenUpsertBulk {
  1103. return u.Update(func(s *TokenUpsert) {
  1104. s.UpdateCustomAgentBase()
  1105. })
  1106. }
  1107. // ClearCustomAgentBase clears the value of the "custom_agent_base" field.
  1108. func (u *TokenUpsertBulk) ClearCustomAgentBase() *TokenUpsertBulk {
  1109. return u.Update(func(s *TokenUpsert) {
  1110. s.ClearCustomAgentBase()
  1111. })
  1112. }
  1113. // SetCustomAgentKey sets the "custom_agent_key" field.
  1114. func (u *TokenUpsertBulk) SetCustomAgentKey(v string) *TokenUpsertBulk {
  1115. return u.Update(func(s *TokenUpsert) {
  1116. s.SetCustomAgentKey(v)
  1117. })
  1118. }
  1119. // UpdateCustomAgentKey sets the "custom_agent_key" field to the value that was provided on create.
  1120. func (u *TokenUpsertBulk) UpdateCustomAgentKey() *TokenUpsertBulk {
  1121. return u.Update(func(s *TokenUpsert) {
  1122. s.UpdateCustomAgentKey()
  1123. })
  1124. }
  1125. // ClearCustomAgentKey clears the value of the "custom_agent_key" field.
  1126. func (u *TokenUpsertBulk) ClearCustomAgentKey() *TokenUpsertBulk {
  1127. return u.Update(func(s *TokenUpsert) {
  1128. s.ClearCustomAgentKey()
  1129. })
  1130. }
  1131. // SetOpenaiBase sets the "openai_base" field.
  1132. func (u *TokenUpsertBulk) SetOpenaiBase(v string) *TokenUpsertBulk {
  1133. return u.Update(func(s *TokenUpsert) {
  1134. s.SetOpenaiBase(v)
  1135. })
  1136. }
  1137. // UpdateOpenaiBase sets the "openai_base" field to the value that was provided on create.
  1138. func (u *TokenUpsertBulk) UpdateOpenaiBase() *TokenUpsertBulk {
  1139. return u.Update(func(s *TokenUpsert) {
  1140. s.UpdateOpenaiBase()
  1141. })
  1142. }
  1143. // ClearOpenaiBase clears the value of the "openai_base" field.
  1144. func (u *TokenUpsertBulk) ClearOpenaiBase() *TokenUpsertBulk {
  1145. return u.Update(func(s *TokenUpsert) {
  1146. s.ClearOpenaiBase()
  1147. })
  1148. }
  1149. // SetOpenaiKey sets the "openai_key" field.
  1150. func (u *TokenUpsertBulk) SetOpenaiKey(v string) *TokenUpsertBulk {
  1151. return u.Update(func(s *TokenUpsert) {
  1152. s.SetOpenaiKey(v)
  1153. })
  1154. }
  1155. // UpdateOpenaiKey sets the "openai_key" field to the value that was provided on create.
  1156. func (u *TokenUpsertBulk) UpdateOpenaiKey() *TokenUpsertBulk {
  1157. return u.Update(func(s *TokenUpsert) {
  1158. s.UpdateOpenaiKey()
  1159. })
  1160. }
  1161. // ClearOpenaiKey clears the value of the "openai_key" field.
  1162. func (u *TokenUpsertBulk) ClearOpenaiKey() *TokenUpsertBulk {
  1163. return u.Update(func(s *TokenUpsert) {
  1164. s.ClearOpenaiKey()
  1165. })
  1166. }
  1167. // Exec executes the query.
  1168. func (u *TokenUpsertBulk) Exec(ctx context.Context) error {
  1169. if u.create.err != nil {
  1170. return u.create.err
  1171. }
  1172. for i, b := range u.create.builders {
  1173. if len(b.conflict) != 0 {
  1174. return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the TokenCreateBulk instead", i)
  1175. }
  1176. }
  1177. if len(u.create.conflict) == 0 {
  1178. return errors.New("ent: missing options for TokenCreateBulk.OnConflict")
  1179. }
  1180. return u.create.Exec(ctx)
  1181. }
  1182. // ExecX is like Exec, but panics if an error occurs.
  1183. func (u *TokenUpsertBulk) ExecX(ctx context.Context) {
  1184. if err := u.create.Exec(ctx); err != nil {
  1185. panic(err)
  1186. }
  1187. }