token_update.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  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/predicate"
  9. "wechat-api/ent/token"
  10. "entgo.io/ent/dialect/sql"
  11. "entgo.io/ent/dialect/sql/sqlgraph"
  12. "entgo.io/ent/schema/field"
  13. )
  14. // TokenUpdate is the builder for updating Token entities.
  15. type TokenUpdate struct {
  16. config
  17. hooks []Hook
  18. mutation *TokenMutation
  19. }
  20. // Where appends a list predicates to the TokenUpdate builder.
  21. func (tu *TokenUpdate) Where(ps ...predicate.Token) *TokenUpdate {
  22. tu.mutation.Where(ps...)
  23. return tu
  24. }
  25. // SetUpdatedAt sets the "updated_at" field.
  26. func (tu *TokenUpdate) SetUpdatedAt(t time.Time) *TokenUpdate {
  27. tu.mutation.SetUpdatedAt(t)
  28. return tu
  29. }
  30. // SetDeletedAt sets the "deleted_at" field.
  31. func (tu *TokenUpdate) SetDeletedAt(t time.Time) *TokenUpdate {
  32. tu.mutation.SetDeletedAt(t)
  33. return tu
  34. }
  35. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  36. func (tu *TokenUpdate) SetNillableDeletedAt(t *time.Time) *TokenUpdate {
  37. if t != nil {
  38. tu.SetDeletedAt(*t)
  39. }
  40. return tu
  41. }
  42. // ClearDeletedAt clears the value of the "deleted_at" field.
  43. func (tu *TokenUpdate) ClearDeletedAt() *TokenUpdate {
  44. tu.mutation.ClearDeletedAt()
  45. return tu
  46. }
  47. // SetExpireAt sets the "expire_at" field.
  48. func (tu *TokenUpdate) SetExpireAt(t time.Time) *TokenUpdate {
  49. tu.mutation.SetExpireAt(t)
  50. return tu
  51. }
  52. // SetNillableExpireAt sets the "expire_at" field if the given value is not nil.
  53. func (tu *TokenUpdate) SetNillableExpireAt(t *time.Time) *TokenUpdate {
  54. if t != nil {
  55. tu.SetExpireAt(*t)
  56. }
  57. return tu
  58. }
  59. // ClearExpireAt clears the value of the "expire_at" field.
  60. func (tu *TokenUpdate) ClearExpireAt() *TokenUpdate {
  61. tu.mutation.ClearExpireAt()
  62. return tu
  63. }
  64. // SetToken sets the "token" field.
  65. func (tu *TokenUpdate) SetToken(s string) *TokenUpdate {
  66. tu.mutation.SetToken(s)
  67. return tu
  68. }
  69. // SetNillableToken sets the "token" field if the given value is not nil.
  70. func (tu *TokenUpdate) SetNillableToken(s *string) *TokenUpdate {
  71. if s != nil {
  72. tu.SetToken(*s)
  73. }
  74. return tu
  75. }
  76. // ClearToken clears the value of the "token" field.
  77. func (tu *TokenUpdate) ClearToken() *TokenUpdate {
  78. tu.mutation.ClearToken()
  79. return tu
  80. }
  81. // SetMAC sets the "mac" field.
  82. func (tu *TokenUpdate) SetMAC(s string) *TokenUpdate {
  83. tu.mutation.SetMAC(s)
  84. return tu
  85. }
  86. // SetNillableMAC sets the "mac" field if the given value is not nil.
  87. func (tu *TokenUpdate) SetNillableMAC(s *string) *TokenUpdate {
  88. if s != nil {
  89. tu.SetMAC(*s)
  90. }
  91. return tu
  92. }
  93. // SetOrganizationID sets the "organization_id" field.
  94. func (tu *TokenUpdate) SetOrganizationID(u uint64) *TokenUpdate {
  95. tu.mutation.ResetOrganizationID()
  96. tu.mutation.SetOrganizationID(u)
  97. return tu
  98. }
  99. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  100. func (tu *TokenUpdate) SetNillableOrganizationID(u *uint64) *TokenUpdate {
  101. if u != nil {
  102. tu.SetOrganizationID(*u)
  103. }
  104. return tu
  105. }
  106. // AddOrganizationID adds u to the "organization_id" field.
  107. func (tu *TokenUpdate) AddOrganizationID(u int64) *TokenUpdate {
  108. tu.mutation.AddOrganizationID(u)
  109. return tu
  110. }
  111. // SetAgentID sets the "agent_id" field.
  112. func (tu *TokenUpdate) SetAgentID(u uint64) *TokenUpdate {
  113. tu.mutation.ResetAgentID()
  114. tu.mutation.SetAgentID(u)
  115. return tu
  116. }
  117. // SetNillableAgentID sets the "agent_id" field if the given value is not nil.
  118. func (tu *TokenUpdate) SetNillableAgentID(u *uint64) *TokenUpdate {
  119. if u != nil {
  120. tu.SetAgentID(*u)
  121. }
  122. return tu
  123. }
  124. // AddAgentID adds u to the "agent_id" field.
  125. func (tu *TokenUpdate) AddAgentID(u int64) *TokenUpdate {
  126. tu.mutation.AddAgentID(u)
  127. return tu
  128. }
  129. // SetCustomAgentBase sets the "custom_agent_base" field.
  130. func (tu *TokenUpdate) SetCustomAgentBase(s string) *TokenUpdate {
  131. tu.mutation.SetCustomAgentBase(s)
  132. return tu
  133. }
  134. // SetNillableCustomAgentBase sets the "custom_agent_base" field if the given value is not nil.
  135. func (tu *TokenUpdate) SetNillableCustomAgentBase(s *string) *TokenUpdate {
  136. if s != nil {
  137. tu.SetCustomAgentBase(*s)
  138. }
  139. return tu
  140. }
  141. // ClearCustomAgentBase clears the value of the "custom_agent_base" field.
  142. func (tu *TokenUpdate) ClearCustomAgentBase() *TokenUpdate {
  143. tu.mutation.ClearCustomAgentBase()
  144. return tu
  145. }
  146. // SetCustomAgentKey sets the "custom_agent_key" field.
  147. func (tu *TokenUpdate) SetCustomAgentKey(s string) *TokenUpdate {
  148. tu.mutation.SetCustomAgentKey(s)
  149. return tu
  150. }
  151. // SetNillableCustomAgentKey sets the "custom_agent_key" field if the given value is not nil.
  152. func (tu *TokenUpdate) SetNillableCustomAgentKey(s *string) *TokenUpdate {
  153. if s != nil {
  154. tu.SetCustomAgentKey(*s)
  155. }
  156. return tu
  157. }
  158. // ClearCustomAgentKey clears the value of the "custom_agent_key" field.
  159. func (tu *TokenUpdate) ClearCustomAgentKey() *TokenUpdate {
  160. tu.mutation.ClearCustomAgentKey()
  161. return tu
  162. }
  163. // SetOpenaiBase sets the "openai_base" field.
  164. func (tu *TokenUpdate) SetOpenaiBase(s string) *TokenUpdate {
  165. tu.mutation.SetOpenaiBase(s)
  166. return tu
  167. }
  168. // SetNillableOpenaiBase sets the "openai_base" field if the given value is not nil.
  169. func (tu *TokenUpdate) SetNillableOpenaiBase(s *string) *TokenUpdate {
  170. if s != nil {
  171. tu.SetOpenaiBase(*s)
  172. }
  173. return tu
  174. }
  175. // ClearOpenaiBase clears the value of the "openai_base" field.
  176. func (tu *TokenUpdate) ClearOpenaiBase() *TokenUpdate {
  177. tu.mutation.ClearOpenaiBase()
  178. return tu
  179. }
  180. // SetOpenaiKey sets the "openai_key" field.
  181. func (tu *TokenUpdate) SetOpenaiKey(s string) *TokenUpdate {
  182. tu.mutation.SetOpenaiKey(s)
  183. return tu
  184. }
  185. // SetNillableOpenaiKey sets the "openai_key" field if the given value is not nil.
  186. func (tu *TokenUpdate) SetNillableOpenaiKey(s *string) *TokenUpdate {
  187. if s != nil {
  188. tu.SetOpenaiKey(*s)
  189. }
  190. return tu
  191. }
  192. // ClearOpenaiKey clears the value of the "openai_key" field.
  193. func (tu *TokenUpdate) ClearOpenaiKey() *TokenUpdate {
  194. tu.mutation.ClearOpenaiKey()
  195. return tu
  196. }
  197. // Mutation returns the TokenMutation object of the builder.
  198. func (tu *TokenUpdate) Mutation() *TokenMutation {
  199. return tu.mutation
  200. }
  201. // Save executes the query and returns the number of nodes affected by the update operation.
  202. func (tu *TokenUpdate) Save(ctx context.Context) (int, error) {
  203. if err := tu.defaults(); err != nil {
  204. return 0, err
  205. }
  206. return withHooks(ctx, tu.sqlSave, tu.mutation, tu.hooks)
  207. }
  208. // SaveX is like Save, but panics if an error occurs.
  209. func (tu *TokenUpdate) SaveX(ctx context.Context) int {
  210. affected, err := tu.Save(ctx)
  211. if err != nil {
  212. panic(err)
  213. }
  214. return affected
  215. }
  216. // Exec executes the query.
  217. func (tu *TokenUpdate) Exec(ctx context.Context) error {
  218. _, err := tu.Save(ctx)
  219. return err
  220. }
  221. // ExecX is like Exec, but panics if an error occurs.
  222. func (tu *TokenUpdate) ExecX(ctx context.Context) {
  223. if err := tu.Exec(ctx); err != nil {
  224. panic(err)
  225. }
  226. }
  227. // defaults sets the default values of the builder before save.
  228. func (tu *TokenUpdate) defaults() error {
  229. if _, ok := tu.mutation.UpdatedAt(); !ok {
  230. if token.UpdateDefaultUpdatedAt == nil {
  231. return fmt.Errorf("ent: uninitialized token.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  232. }
  233. v := token.UpdateDefaultUpdatedAt()
  234. tu.mutation.SetUpdatedAt(v)
  235. }
  236. return nil
  237. }
  238. func (tu *TokenUpdate) sqlSave(ctx context.Context) (n int, err error) {
  239. _spec := sqlgraph.NewUpdateSpec(token.Table, token.Columns, sqlgraph.NewFieldSpec(token.FieldID, field.TypeUint64))
  240. if ps := tu.mutation.predicates; len(ps) > 0 {
  241. _spec.Predicate = func(selector *sql.Selector) {
  242. for i := range ps {
  243. ps[i](selector)
  244. }
  245. }
  246. }
  247. if value, ok := tu.mutation.UpdatedAt(); ok {
  248. _spec.SetField(token.FieldUpdatedAt, field.TypeTime, value)
  249. }
  250. if value, ok := tu.mutation.DeletedAt(); ok {
  251. _spec.SetField(token.FieldDeletedAt, field.TypeTime, value)
  252. }
  253. if tu.mutation.DeletedAtCleared() {
  254. _spec.ClearField(token.FieldDeletedAt, field.TypeTime)
  255. }
  256. if value, ok := tu.mutation.ExpireAt(); ok {
  257. _spec.SetField(token.FieldExpireAt, field.TypeTime, value)
  258. }
  259. if tu.mutation.ExpireAtCleared() {
  260. _spec.ClearField(token.FieldExpireAt, field.TypeTime)
  261. }
  262. if value, ok := tu.mutation.Token(); ok {
  263. _spec.SetField(token.FieldToken, field.TypeString, value)
  264. }
  265. if tu.mutation.TokenCleared() {
  266. _spec.ClearField(token.FieldToken, field.TypeString)
  267. }
  268. if value, ok := tu.mutation.MAC(); ok {
  269. _spec.SetField(token.FieldMAC, field.TypeString, value)
  270. }
  271. if value, ok := tu.mutation.OrganizationID(); ok {
  272. _spec.SetField(token.FieldOrganizationID, field.TypeUint64, value)
  273. }
  274. if value, ok := tu.mutation.AddedOrganizationID(); ok {
  275. _spec.AddField(token.FieldOrganizationID, field.TypeUint64, value)
  276. }
  277. if value, ok := tu.mutation.AgentID(); ok {
  278. _spec.SetField(token.FieldAgentID, field.TypeUint64, value)
  279. }
  280. if value, ok := tu.mutation.AddedAgentID(); ok {
  281. _spec.AddField(token.FieldAgentID, field.TypeUint64, value)
  282. }
  283. if value, ok := tu.mutation.CustomAgentBase(); ok {
  284. _spec.SetField(token.FieldCustomAgentBase, field.TypeString, value)
  285. }
  286. if tu.mutation.CustomAgentBaseCleared() {
  287. _spec.ClearField(token.FieldCustomAgentBase, field.TypeString)
  288. }
  289. if value, ok := tu.mutation.CustomAgentKey(); ok {
  290. _spec.SetField(token.FieldCustomAgentKey, field.TypeString, value)
  291. }
  292. if tu.mutation.CustomAgentKeyCleared() {
  293. _spec.ClearField(token.FieldCustomAgentKey, field.TypeString)
  294. }
  295. if value, ok := tu.mutation.OpenaiBase(); ok {
  296. _spec.SetField(token.FieldOpenaiBase, field.TypeString, value)
  297. }
  298. if tu.mutation.OpenaiBaseCleared() {
  299. _spec.ClearField(token.FieldOpenaiBase, field.TypeString)
  300. }
  301. if value, ok := tu.mutation.OpenaiKey(); ok {
  302. _spec.SetField(token.FieldOpenaiKey, field.TypeString, value)
  303. }
  304. if tu.mutation.OpenaiKeyCleared() {
  305. _spec.ClearField(token.FieldOpenaiKey, field.TypeString)
  306. }
  307. if n, err = sqlgraph.UpdateNodes(ctx, tu.driver, _spec); err != nil {
  308. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  309. err = &NotFoundError{token.Label}
  310. } else if sqlgraph.IsConstraintError(err) {
  311. err = &ConstraintError{msg: err.Error(), wrap: err}
  312. }
  313. return 0, err
  314. }
  315. tu.mutation.done = true
  316. return n, nil
  317. }
  318. // TokenUpdateOne is the builder for updating a single Token entity.
  319. type TokenUpdateOne struct {
  320. config
  321. fields []string
  322. hooks []Hook
  323. mutation *TokenMutation
  324. }
  325. // SetUpdatedAt sets the "updated_at" field.
  326. func (tuo *TokenUpdateOne) SetUpdatedAt(t time.Time) *TokenUpdateOne {
  327. tuo.mutation.SetUpdatedAt(t)
  328. return tuo
  329. }
  330. // SetDeletedAt sets the "deleted_at" field.
  331. func (tuo *TokenUpdateOne) SetDeletedAt(t time.Time) *TokenUpdateOne {
  332. tuo.mutation.SetDeletedAt(t)
  333. return tuo
  334. }
  335. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  336. func (tuo *TokenUpdateOne) SetNillableDeletedAt(t *time.Time) *TokenUpdateOne {
  337. if t != nil {
  338. tuo.SetDeletedAt(*t)
  339. }
  340. return tuo
  341. }
  342. // ClearDeletedAt clears the value of the "deleted_at" field.
  343. func (tuo *TokenUpdateOne) ClearDeletedAt() *TokenUpdateOne {
  344. tuo.mutation.ClearDeletedAt()
  345. return tuo
  346. }
  347. // SetExpireAt sets the "expire_at" field.
  348. func (tuo *TokenUpdateOne) SetExpireAt(t time.Time) *TokenUpdateOne {
  349. tuo.mutation.SetExpireAt(t)
  350. return tuo
  351. }
  352. // SetNillableExpireAt sets the "expire_at" field if the given value is not nil.
  353. func (tuo *TokenUpdateOne) SetNillableExpireAt(t *time.Time) *TokenUpdateOne {
  354. if t != nil {
  355. tuo.SetExpireAt(*t)
  356. }
  357. return tuo
  358. }
  359. // ClearExpireAt clears the value of the "expire_at" field.
  360. func (tuo *TokenUpdateOne) ClearExpireAt() *TokenUpdateOne {
  361. tuo.mutation.ClearExpireAt()
  362. return tuo
  363. }
  364. // SetToken sets the "token" field.
  365. func (tuo *TokenUpdateOne) SetToken(s string) *TokenUpdateOne {
  366. tuo.mutation.SetToken(s)
  367. return tuo
  368. }
  369. // SetNillableToken sets the "token" field if the given value is not nil.
  370. func (tuo *TokenUpdateOne) SetNillableToken(s *string) *TokenUpdateOne {
  371. if s != nil {
  372. tuo.SetToken(*s)
  373. }
  374. return tuo
  375. }
  376. // ClearToken clears the value of the "token" field.
  377. func (tuo *TokenUpdateOne) ClearToken() *TokenUpdateOne {
  378. tuo.mutation.ClearToken()
  379. return tuo
  380. }
  381. // SetMAC sets the "mac" field.
  382. func (tuo *TokenUpdateOne) SetMAC(s string) *TokenUpdateOne {
  383. tuo.mutation.SetMAC(s)
  384. return tuo
  385. }
  386. // SetNillableMAC sets the "mac" field if the given value is not nil.
  387. func (tuo *TokenUpdateOne) SetNillableMAC(s *string) *TokenUpdateOne {
  388. if s != nil {
  389. tuo.SetMAC(*s)
  390. }
  391. return tuo
  392. }
  393. // SetOrganizationID sets the "organization_id" field.
  394. func (tuo *TokenUpdateOne) SetOrganizationID(u uint64) *TokenUpdateOne {
  395. tuo.mutation.ResetOrganizationID()
  396. tuo.mutation.SetOrganizationID(u)
  397. return tuo
  398. }
  399. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  400. func (tuo *TokenUpdateOne) SetNillableOrganizationID(u *uint64) *TokenUpdateOne {
  401. if u != nil {
  402. tuo.SetOrganizationID(*u)
  403. }
  404. return tuo
  405. }
  406. // AddOrganizationID adds u to the "organization_id" field.
  407. func (tuo *TokenUpdateOne) AddOrganizationID(u int64) *TokenUpdateOne {
  408. tuo.mutation.AddOrganizationID(u)
  409. return tuo
  410. }
  411. // SetAgentID sets the "agent_id" field.
  412. func (tuo *TokenUpdateOne) SetAgentID(u uint64) *TokenUpdateOne {
  413. tuo.mutation.ResetAgentID()
  414. tuo.mutation.SetAgentID(u)
  415. return tuo
  416. }
  417. // SetNillableAgentID sets the "agent_id" field if the given value is not nil.
  418. func (tuo *TokenUpdateOne) SetNillableAgentID(u *uint64) *TokenUpdateOne {
  419. if u != nil {
  420. tuo.SetAgentID(*u)
  421. }
  422. return tuo
  423. }
  424. // AddAgentID adds u to the "agent_id" field.
  425. func (tuo *TokenUpdateOne) AddAgentID(u int64) *TokenUpdateOne {
  426. tuo.mutation.AddAgentID(u)
  427. return tuo
  428. }
  429. // SetCustomAgentBase sets the "custom_agent_base" field.
  430. func (tuo *TokenUpdateOne) SetCustomAgentBase(s string) *TokenUpdateOne {
  431. tuo.mutation.SetCustomAgentBase(s)
  432. return tuo
  433. }
  434. // SetNillableCustomAgentBase sets the "custom_agent_base" field if the given value is not nil.
  435. func (tuo *TokenUpdateOne) SetNillableCustomAgentBase(s *string) *TokenUpdateOne {
  436. if s != nil {
  437. tuo.SetCustomAgentBase(*s)
  438. }
  439. return tuo
  440. }
  441. // ClearCustomAgentBase clears the value of the "custom_agent_base" field.
  442. func (tuo *TokenUpdateOne) ClearCustomAgentBase() *TokenUpdateOne {
  443. tuo.mutation.ClearCustomAgentBase()
  444. return tuo
  445. }
  446. // SetCustomAgentKey sets the "custom_agent_key" field.
  447. func (tuo *TokenUpdateOne) SetCustomAgentKey(s string) *TokenUpdateOne {
  448. tuo.mutation.SetCustomAgentKey(s)
  449. return tuo
  450. }
  451. // SetNillableCustomAgentKey sets the "custom_agent_key" field if the given value is not nil.
  452. func (tuo *TokenUpdateOne) SetNillableCustomAgentKey(s *string) *TokenUpdateOne {
  453. if s != nil {
  454. tuo.SetCustomAgentKey(*s)
  455. }
  456. return tuo
  457. }
  458. // ClearCustomAgentKey clears the value of the "custom_agent_key" field.
  459. func (tuo *TokenUpdateOne) ClearCustomAgentKey() *TokenUpdateOne {
  460. tuo.mutation.ClearCustomAgentKey()
  461. return tuo
  462. }
  463. // SetOpenaiBase sets the "openai_base" field.
  464. func (tuo *TokenUpdateOne) SetOpenaiBase(s string) *TokenUpdateOne {
  465. tuo.mutation.SetOpenaiBase(s)
  466. return tuo
  467. }
  468. // SetNillableOpenaiBase sets the "openai_base" field if the given value is not nil.
  469. func (tuo *TokenUpdateOne) SetNillableOpenaiBase(s *string) *TokenUpdateOne {
  470. if s != nil {
  471. tuo.SetOpenaiBase(*s)
  472. }
  473. return tuo
  474. }
  475. // ClearOpenaiBase clears the value of the "openai_base" field.
  476. func (tuo *TokenUpdateOne) ClearOpenaiBase() *TokenUpdateOne {
  477. tuo.mutation.ClearOpenaiBase()
  478. return tuo
  479. }
  480. // SetOpenaiKey sets the "openai_key" field.
  481. func (tuo *TokenUpdateOne) SetOpenaiKey(s string) *TokenUpdateOne {
  482. tuo.mutation.SetOpenaiKey(s)
  483. return tuo
  484. }
  485. // SetNillableOpenaiKey sets the "openai_key" field if the given value is not nil.
  486. func (tuo *TokenUpdateOne) SetNillableOpenaiKey(s *string) *TokenUpdateOne {
  487. if s != nil {
  488. tuo.SetOpenaiKey(*s)
  489. }
  490. return tuo
  491. }
  492. // ClearOpenaiKey clears the value of the "openai_key" field.
  493. func (tuo *TokenUpdateOne) ClearOpenaiKey() *TokenUpdateOne {
  494. tuo.mutation.ClearOpenaiKey()
  495. return tuo
  496. }
  497. // Mutation returns the TokenMutation object of the builder.
  498. func (tuo *TokenUpdateOne) Mutation() *TokenMutation {
  499. return tuo.mutation
  500. }
  501. // Where appends a list predicates to the TokenUpdate builder.
  502. func (tuo *TokenUpdateOne) Where(ps ...predicate.Token) *TokenUpdateOne {
  503. tuo.mutation.Where(ps...)
  504. return tuo
  505. }
  506. // Select allows selecting one or more fields (columns) of the returned entity.
  507. // The default is selecting all fields defined in the entity schema.
  508. func (tuo *TokenUpdateOne) Select(field string, fields ...string) *TokenUpdateOne {
  509. tuo.fields = append([]string{field}, fields...)
  510. return tuo
  511. }
  512. // Save executes the query and returns the updated Token entity.
  513. func (tuo *TokenUpdateOne) Save(ctx context.Context) (*Token, error) {
  514. if err := tuo.defaults(); err != nil {
  515. return nil, err
  516. }
  517. return withHooks(ctx, tuo.sqlSave, tuo.mutation, tuo.hooks)
  518. }
  519. // SaveX is like Save, but panics if an error occurs.
  520. func (tuo *TokenUpdateOne) SaveX(ctx context.Context) *Token {
  521. node, err := tuo.Save(ctx)
  522. if err != nil {
  523. panic(err)
  524. }
  525. return node
  526. }
  527. // Exec executes the query on the entity.
  528. func (tuo *TokenUpdateOne) Exec(ctx context.Context) error {
  529. _, err := tuo.Save(ctx)
  530. return err
  531. }
  532. // ExecX is like Exec, but panics if an error occurs.
  533. func (tuo *TokenUpdateOne) ExecX(ctx context.Context) {
  534. if err := tuo.Exec(ctx); err != nil {
  535. panic(err)
  536. }
  537. }
  538. // defaults sets the default values of the builder before save.
  539. func (tuo *TokenUpdateOne) defaults() error {
  540. if _, ok := tuo.mutation.UpdatedAt(); !ok {
  541. if token.UpdateDefaultUpdatedAt == nil {
  542. return fmt.Errorf("ent: uninitialized token.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  543. }
  544. v := token.UpdateDefaultUpdatedAt()
  545. tuo.mutation.SetUpdatedAt(v)
  546. }
  547. return nil
  548. }
  549. func (tuo *TokenUpdateOne) sqlSave(ctx context.Context) (_node *Token, err error) {
  550. _spec := sqlgraph.NewUpdateSpec(token.Table, token.Columns, sqlgraph.NewFieldSpec(token.FieldID, field.TypeUint64))
  551. id, ok := tuo.mutation.ID()
  552. if !ok {
  553. return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Token.id" for update`)}
  554. }
  555. _spec.Node.ID.Value = id
  556. if fields := tuo.fields; len(fields) > 0 {
  557. _spec.Node.Columns = make([]string, 0, len(fields))
  558. _spec.Node.Columns = append(_spec.Node.Columns, token.FieldID)
  559. for _, f := range fields {
  560. if !token.ValidColumn(f) {
  561. return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
  562. }
  563. if f != token.FieldID {
  564. _spec.Node.Columns = append(_spec.Node.Columns, f)
  565. }
  566. }
  567. }
  568. if ps := tuo.mutation.predicates; len(ps) > 0 {
  569. _spec.Predicate = func(selector *sql.Selector) {
  570. for i := range ps {
  571. ps[i](selector)
  572. }
  573. }
  574. }
  575. if value, ok := tuo.mutation.UpdatedAt(); ok {
  576. _spec.SetField(token.FieldUpdatedAt, field.TypeTime, value)
  577. }
  578. if value, ok := tuo.mutation.DeletedAt(); ok {
  579. _spec.SetField(token.FieldDeletedAt, field.TypeTime, value)
  580. }
  581. if tuo.mutation.DeletedAtCleared() {
  582. _spec.ClearField(token.FieldDeletedAt, field.TypeTime)
  583. }
  584. if value, ok := tuo.mutation.ExpireAt(); ok {
  585. _spec.SetField(token.FieldExpireAt, field.TypeTime, value)
  586. }
  587. if tuo.mutation.ExpireAtCleared() {
  588. _spec.ClearField(token.FieldExpireAt, field.TypeTime)
  589. }
  590. if value, ok := tuo.mutation.Token(); ok {
  591. _spec.SetField(token.FieldToken, field.TypeString, value)
  592. }
  593. if tuo.mutation.TokenCleared() {
  594. _spec.ClearField(token.FieldToken, field.TypeString)
  595. }
  596. if value, ok := tuo.mutation.MAC(); ok {
  597. _spec.SetField(token.FieldMAC, field.TypeString, value)
  598. }
  599. if value, ok := tuo.mutation.OrganizationID(); ok {
  600. _spec.SetField(token.FieldOrganizationID, field.TypeUint64, value)
  601. }
  602. if value, ok := tuo.mutation.AddedOrganizationID(); ok {
  603. _spec.AddField(token.FieldOrganizationID, field.TypeUint64, value)
  604. }
  605. if value, ok := tuo.mutation.AgentID(); ok {
  606. _spec.SetField(token.FieldAgentID, field.TypeUint64, value)
  607. }
  608. if value, ok := tuo.mutation.AddedAgentID(); ok {
  609. _spec.AddField(token.FieldAgentID, field.TypeUint64, value)
  610. }
  611. if value, ok := tuo.mutation.CustomAgentBase(); ok {
  612. _spec.SetField(token.FieldCustomAgentBase, field.TypeString, value)
  613. }
  614. if tuo.mutation.CustomAgentBaseCleared() {
  615. _spec.ClearField(token.FieldCustomAgentBase, field.TypeString)
  616. }
  617. if value, ok := tuo.mutation.CustomAgentKey(); ok {
  618. _spec.SetField(token.FieldCustomAgentKey, field.TypeString, value)
  619. }
  620. if tuo.mutation.CustomAgentKeyCleared() {
  621. _spec.ClearField(token.FieldCustomAgentKey, field.TypeString)
  622. }
  623. if value, ok := tuo.mutation.OpenaiBase(); ok {
  624. _spec.SetField(token.FieldOpenaiBase, field.TypeString, value)
  625. }
  626. if tuo.mutation.OpenaiBaseCleared() {
  627. _spec.ClearField(token.FieldOpenaiBase, field.TypeString)
  628. }
  629. if value, ok := tuo.mutation.OpenaiKey(); ok {
  630. _spec.SetField(token.FieldOpenaiKey, field.TypeString, value)
  631. }
  632. if tuo.mutation.OpenaiKeyCleared() {
  633. _spec.ClearField(token.FieldOpenaiKey, field.TypeString)
  634. }
  635. _node = &Token{config: tuo.config}
  636. _spec.Assign = _node.assignValues
  637. _spec.ScanValues = _node.scanValues
  638. if err = sqlgraph.UpdateNode(ctx, tuo.driver, _spec); err != nil {
  639. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  640. err = &NotFoundError{token.Label}
  641. } else if sqlgraph.IsConstraintError(err) {
  642. err = &ConstraintError{msg: err.Error(), wrap: err}
  643. }
  644. return nil, err
  645. }
  646. tuo.mutation.done = true
  647. return _node, nil
  648. }