whatsapp_update.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961
  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/whatsapp"
  10. "entgo.io/ent/dialect/sql"
  11. "entgo.io/ent/dialect/sql/sqlgraph"
  12. "entgo.io/ent/dialect/sql/sqljson"
  13. "entgo.io/ent/schema/field"
  14. )
  15. // WhatsappUpdate is the builder for updating Whatsapp entities.
  16. type WhatsappUpdate struct {
  17. config
  18. hooks []Hook
  19. mutation *WhatsappMutation
  20. }
  21. // Where appends a list predicates to the WhatsappUpdate builder.
  22. func (wu *WhatsappUpdate) Where(ps ...predicate.Whatsapp) *WhatsappUpdate {
  23. wu.mutation.Where(ps...)
  24. return wu
  25. }
  26. // SetUpdatedAt sets the "updated_at" field.
  27. func (wu *WhatsappUpdate) SetUpdatedAt(t time.Time) *WhatsappUpdate {
  28. wu.mutation.SetUpdatedAt(t)
  29. return wu
  30. }
  31. // SetStatus sets the "status" field.
  32. func (wu *WhatsappUpdate) SetStatus(u uint8) *WhatsappUpdate {
  33. wu.mutation.ResetStatus()
  34. wu.mutation.SetStatus(u)
  35. return wu
  36. }
  37. // SetNillableStatus sets the "status" field if the given value is not nil.
  38. func (wu *WhatsappUpdate) SetNillableStatus(u *uint8) *WhatsappUpdate {
  39. if u != nil {
  40. wu.SetStatus(*u)
  41. }
  42. return wu
  43. }
  44. // AddStatus adds u to the "status" field.
  45. func (wu *WhatsappUpdate) AddStatus(u int8) *WhatsappUpdate {
  46. wu.mutation.AddStatus(u)
  47. return wu
  48. }
  49. // ClearStatus clears the value of the "status" field.
  50. func (wu *WhatsappUpdate) ClearStatus() *WhatsappUpdate {
  51. wu.mutation.ClearStatus()
  52. return wu
  53. }
  54. // SetDeletedAt sets the "deleted_at" field.
  55. func (wu *WhatsappUpdate) SetDeletedAt(t time.Time) *WhatsappUpdate {
  56. wu.mutation.SetDeletedAt(t)
  57. return wu
  58. }
  59. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  60. func (wu *WhatsappUpdate) SetNillableDeletedAt(t *time.Time) *WhatsappUpdate {
  61. if t != nil {
  62. wu.SetDeletedAt(*t)
  63. }
  64. return wu
  65. }
  66. // ClearDeletedAt clears the value of the "deleted_at" field.
  67. func (wu *WhatsappUpdate) ClearDeletedAt() *WhatsappUpdate {
  68. wu.mutation.ClearDeletedAt()
  69. return wu
  70. }
  71. // SetAk sets the "ak" field.
  72. func (wu *WhatsappUpdate) SetAk(s string) *WhatsappUpdate {
  73. wu.mutation.SetAk(s)
  74. return wu
  75. }
  76. // SetNillableAk sets the "ak" field if the given value is not nil.
  77. func (wu *WhatsappUpdate) SetNillableAk(s *string) *WhatsappUpdate {
  78. if s != nil {
  79. wu.SetAk(*s)
  80. }
  81. return wu
  82. }
  83. // ClearAk clears the value of the "ak" field.
  84. func (wu *WhatsappUpdate) ClearAk() *WhatsappUpdate {
  85. wu.mutation.ClearAk()
  86. return wu
  87. }
  88. // SetSk sets the "sk" field.
  89. func (wu *WhatsappUpdate) SetSk(s string) *WhatsappUpdate {
  90. wu.mutation.SetSk(s)
  91. return wu
  92. }
  93. // SetNillableSk sets the "sk" field if the given value is not nil.
  94. func (wu *WhatsappUpdate) SetNillableSk(s *string) *WhatsappUpdate {
  95. if s != nil {
  96. wu.SetSk(*s)
  97. }
  98. return wu
  99. }
  100. // SetCallback sets the "callback" field.
  101. func (wu *WhatsappUpdate) SetCallback(s string) *WhatsappUpdate {
  102. wu.mutation.SetCallback(s)
  103. return wu
  104. }
  105. // SetNillableCallback sets the "callback" field if the given value is not nil.
  106. func (wu *WhatsappUpdate) SetNillableCallback(s *string) *WhatsappUpdate {
  107. if s != nil {
  108. wu.SetCallback(*s)
  109. }
  110. return wu
  111. }
  112. // SetAccount sets the "account" field.
  113. func (wu *WhatsappUpdate) SetAccount(s string) *WhatsappUpdate {
  114. wu.mutation.SetAccount(s)
  115. return wu
  116. }
  117. // SetNillableAccount sets the "account" field if the given value is not nil.
  118. func (wu *WhatsappUpdate) SetNillableAccount(s *string) *WhatsappUpdate {
  119. if s != nil {
  120. wu.SetAccount(*s)
  121. }
  122. return wu
  123. }
  124. // SetNickname sets the "nickname" field.
  125. func (wu *WhatsappUpdate) SetNickname(s string) *WhatsappUpdate {
  126. wu.mutation.SetNickname(s)
  127. return wu
  128. }
  129. // SetNillableNickname sets the "nickname" field if the given value is not nil.
  130. func (wu *WhatsappUpdate) SetNillableNickname(s *string) *WhatsappUpdate {
  131. if s != nil {
  132. wu.SetNickname(*s)
  133. }
  134. return wu
  135. }
  136. // SetPhone sets the "phone" field.
  137. func (wu *WhatsappUpdate) SetPhone(s string) *WhatsappUpdate {
  138. wu.mutation.SetPhone(s)
  139. return wu
  140. }
  141. // SetNillablePhone sets the "phone" field if the given value is not nil.
  142. func (wu *WhatsappUpdate) SetNillablePhone(s *string) *WhatsappUpdate {
  143. if s != nil {
  144. wu.SetPhone(*s)
  145. }
  146. return wu
  147. }
  148. // SetOrganizationID sets the "organization_id" field.
  149. func (wu *WhatsappUpdate) SetOrganizationID(u uint64) *WhatsappUpdate {
  150. wu.mutation.ResetOrganizationID()
  151. wu.mutation.SetOrganizationID(u)
  152. return wu
  153. }
  154. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  155. func (wu *WhatsappUpdate) SetNillableOrganizationID(u *uint64) *WhatsappUpdate {
  156. if u != nil {
  157. wu.SetOrganizationID(*u)
  158. }
  159. return wu
  160. }
  161. // AddOrganizationID adds u to the "organization_id" field.
  162. func (wu *WhatsappUpdate) AddOrganizationID(u int64) *WhatsappUpdate {
  163. wu.mutation.AddOrganizationID(u)
  164. return wu
  165. }
  166. // ClearOrganizationID clears the value of the "organization_id" field.
  167. func (wu *WhatsappUpdate) ClearOrganizationID() *WhatsappUpdate {
  168. wu.mutation.ClearOrganizationID()
  169. return wu
  170. }
  171. // SetAgentID sets the "agent_id" field.
  172. func (wu *WhatsappUpdate) SetAgentID(u uint64) *WhatsappUpdate {
  173. wu.mutation.ResetAgentID()
  174. wu.mutation.SetAgentID(u)
  175. return wu
  176. }
  177. // SetNillableAgentID sets the "agent_id" field if the given value is not nil.
  178. func (wu *WhatsappUpdate) SetNillableAgentID(u *uint64) *WhatsappUpdate {
  179. if u != nil {
  180. wu.SetAgentID(*u)
  181. }
  182. return wu
  183. }
  184. // AddAgentID adds u to the "agent_id" field.
  185. func (wu *WhatsappUpdate) AddAgentID(u int64) *WhatsappUpdate {
  186. wu.mutation.AddAgentID(u)
  187. return wu
  188. }
  189. // SetAPIBase sets the "api_base" field.
  190. func (wu *WhatsappUpdate) SetAPIBase(s string) *WhatsappUpdate {
  191. wu.mutation.SetAPIBase(s)
  192. return wu
  193. }
  194. // SetNillableAPIBase sets the "api_base" field if the given value is not nil.
  195. func (wu *WhatsappUpdate) SetNillableAPIBase(s *string) *WhatsappUpdate {
  196. if s != nil {
  197. wu.SetAPIBase(*s)
  198. }
  199. return wu
  200. }
  201. // ClearAPIBase clears the value of the "api_base" field.
  202. func (wu *WhatsappUpdate) ClearAPIBase() *WhatsappUpdate {
  203. wu.mutation.ClearAPIBase()
  204. return wu
  205. }
  206. // SetAPIKey sets the "api_key" field.
  207. func (wu *WhatsappUpdate) SetAPIKey(s string) *WhatsappUpdate {
  208. wu.mutation.SetAPIKey(s)
  209. return wu
  210. }
  211. // SetNillableAPIKey sets the "api_key" field if the given value is not nil.
  212. func (wu *WhatsappUpdate) SetNillableAPIKey(s *string) *WhatsappUpdate {
  213. if s != nil {
  214. wu.SetAPIKey(*s)
  215. }
  216. return wu
  217. }
  218. // ClearAPIKey clears the value of the "api_key" field.
  219. func (wu *WhatsappUpdate) ClearAPIKey() *WhatsappUpdate {
  220. wu.mutation.ClearAPIKey()
  221. return wu
  222. }
  223. // SetAllowList sets the "allow_list" field.
  224. func (wu *WhatsappUpdate) SetAllowList(s []string) *WhatsappUpdate {
  225. wu.mutation.SetAllowList(s)
  226. return wu
  227. }
  228. // AppendAllowList appends s to the "allow_list" field.
  229. func (wu *WhatsappUpdate) AppendAllowList(s []string) *WhatsappUpdate {
  230. wu.mutation.AppendAllowList(s)
  231. return wu
  232. }
  233. // SetGroupAllowList sets the "group_allow_list" field.
  234. func (wu *WhatsappUpdate) SetGroupAllowList(s []string) *WhatsappUpdate {
  235. wu.mutation.SetGroupAllowList(s)
  236. return wu
  237. }
  238. // AppendGroupAllowList appends s to the "group_allow_list" field.
  239. func (wu *WhatsappUpdate) AppendGroupAllowList(s []string) *WhatsappUpdate {
  240. wu.mutation.AppendGroupAllowList(s)
  241. return wu
  242. }
  243. // SetBlockList sets the "block_list" field.
  244. func (wu *WhatsappUpdate) SetBlockList(s []string) *WhatsappUpdate {
  245. wu.mutation.SetBlockList(s)
  246. return wu
  247. }
  248. // AppendBlockList appends s to the "block_list" field.
  249. func (wu *WhatsappUpdate) AppendBlockList(s []string) *WhatsappUpdate {
  250. wu.mutation.AppendBlockList(s)
  251. return wu
  252. }
  253. // SetGroupBlockList sets the "group_block_list" field.
  254. func (wu *WhatsappUpdate) SetGroupBlockList(s []string) *WhatsappUpdate {
  255. wu.mutation.SetGroupBlockList(s)
  256. return wu
  257. }
  258. // AppendGroupBlockList appends s to the "group_block_list" field.
  259. func (wu *WhatsappUpdate) AppendGroupBlockList(s []string) *WhatsappUpdate {
  260. wu.mutation.AppendGroupBlockList(s)
  261. return wu
  262. }
  263. // Mutation returns the WhatsappMutation object of the builder.
  264. func (wu *WhatsappUpdate) Mutation() *WhatsappMutation {
  265. return wu.mutation
  266. }
  267. // Save executes the query and returns the number of nodes affected by the update operation.
  268. func (wu *WhatsappUpdate) Save(ctx context.Context) (int, error) {
  269. if err := wu.defaults(); err != nil {
  270. return 0, err
  271. }
  272. return withHooks(ctx, wu.sqlSave, wu.mutation, wu.hooks)
  273. }
  274. // SaveX is like Save, but panics if an error occurs.
  275. func (wu *WhatsappUpdate) SaveX(ctx context.Context) int {
  276. affected, err := wu.Save(ctx)
  277. if err != nil {
  278. panic(err)
  279. }
  280. return affected
  281. }
  282. // Exec executes the query.
  283. func (wu *WhatsappUpdate) Exec(ctx context.Context) error {
  284. _, err := wu.Save(ctx)
  285. return err
  286. }
  287. // ExecX is like Exec, but panics if an error occurs.
  288. func (wu *WhatsappUpdate) ExecX(ctx context.Context) {
  289. if err := wu.Exec(ctx); err != nil {
  290. panic(err)
  291. }
  292. }
  293. // defaults sets the default values of the builder before save.
  294. func (wu *WhatsappUpdate) defaults() error {
  295. if _, ok := wu.mutation.UpdatedAt(); !ok {
  296. if whatsapp.UpdateDefaultUpdatedAt == nil {
  297. return fmt.Errorf("ent: uninitialized whatsapp.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  298. }
  299. v := whatsapp.UpdateDefaultUpdatedAt()
  300. wu.mutation.SetUpdatedAt(v)
  301. }
  302. return nil
  303. }
  304. func (wu *WhatsappUpdate) sqlSave(ctx context.Context) (n int, err error) {
  305. _spec := sqlgraph.NewUpdateSpec(whatsapp.Table, whatsapp.Columns, sqlgraph.NewFieldSpec(whatsapp.FieldID, field.TypeUint64))
  306. if ps := wu.mutation.predicates; len(ps) > 0 {
  307. _spec.Predicate = func(selector *sql.Selector) {
  308. for i := range ps {
  309. ps[i](selector)
  310. }
  311. }
  312. }
  313. if value, ok := wu.mutation.UpdatedAt(); ok {
  314. _spec.SetField(whatsapp.FieldUpdatedAt, field.TypeTime, value)
  315. }
  316. if value, ok := wu.mutation.Status(); ok {
  317. _spec.SetField(whatsapp.FieldStatus, field.TypeUint8, value)
  318. }
  319. if value, ok := wu.mutation.AddedStatus(); ok {
  320. _spec.AddField(whatsapp.FieldStatus, field.TypeUint8, value)
  321. }
  322. if wu.mutation.StatusCleared() {
  323. _spec.ClearField(whatsapp.FieldStatus, field.TypeUint8)
  324. }
  325. if value, ok := wu.mutation.DeletedAt(); ok {
  326. _spec.SetField(whatsapp.FieldDeletedAt, field.TypeTime, value)
  327. }
  328. if wu.mutation.DeletedAtCleared() {
  329. _spec.ClearField(whatsapp.FieldDeletedAt, field.TypeTime)
  330. }
  331. if value, ok := wu.mutation.Ak(); ok {
  332. _spec.SetField(whatsapp.FieldAk, field.TypeString, value)
  333. }
  334. if wu.mutation.AkCleared() {
  335. _spec.ClearField(whatsapp.FieldAk, field.TypeString)
  336. }
  337. if value, ok := wu.mutation.Sk(); ok {
  338. _spec.SetField(whatsapp.FieldSk, field.TypeString, value)
  339. }
  340. if value, ok := wu.mutation.Callback(); ok {
  341. _spec.SetField(whatsapp.FieldCallback, field.TypeString, value)
  342. }
  343. if value, ok := wu.mutation.Account(); ok {
  344. _spec.SetField(whatsapp.FieldAccount, field.TypeString, value)
  345. }
  346. if value, ok := wu.mutation.Nickname(); ok {
  347. _spec.SetField(whatsapp.FieldNickname, field.TypeString, value)
  348. }
  349. if value, ok := wu.mutation.Phone(); ok {
  350. _spec.SetField(whatsapp.FieldPhone, field.TypeString, value)
  351. }
  352. if value, ok := wu.mutation.OrganizationID(); ok {
  353. _spec.SetField(whatsapp.FieldOrganizationID, field.TypeUint64, value)
  354. }
  355. if value, ok := wu.mutation.AddedOrganizationID(); ok {
  356. _spec.AddField(whatsapp.FieldOrganizationID, field.TypeUint64, value)
  357. }
  358. if wu.mutation.OrganizationIDCleared() {
  359. _spec.ClearField(whatsapp.FieldOrganizationID, field.TypeUint64)
  360. }
  361. if value, ok := wu.mutation.AgentID(); ok {
  362. _spec.SetField(whatsapp.FieldAgentID, field.TypeUint64, value)
  363. }
  364. if value, ok := wu.mutation.AddedAgentID(); ok {
  365. _spec.AddField(whatsapp.FieldAgentID, field.TypeUint64, value)
  366. }
  367. if value, ok := wu.mutation.APIBase(); ok {
  368. _spec.SetField(whatsapp.FieldAPIBase, field.TypeString, value)
  369. }
  370. if wu.mutation.APIBaseCleared() {
  371. _spec.ClearField(whatsapp.FieldAPIBase, field.TypeString)
  372. }
  373. if value, ok := wu.mutation.APIKey(); ok {
  374. _spec.SetField(whatsapp.FieldAPIKey, field.TypeString, value)
  375. }
  376. if wu.mutation.APIKeyCleared() {
  377. _spec.ClearField(whatsapp.FieldAPIKey, field.TypeString)
  378. }
  379. if value, ok := wu.mutation.AllowList(); ok {
  380. _spec.SetField(whatsapp.FieldAllowList, field.TypeJSON, value)
  381. }
  382. if value, ok := wu.mutation.AppendedAllowList(); ok {
  383. _spec.AddModifier(func(u *sql.UpdateBuilder) {
  384. sqljson.Append(u, whatsapp.FieldAllowList, value)
  385. })
  386. }
  387. if value, ok := wu.mutation.GroupAllowList(); ok {
  388. _spec.SetField(whatsapp.FieldGroupAllowList, field.TypeJSON, value)
  389. }
  390. if value, ok := wu.mutation.AppendedGroupAllowList(); ok {
  391. _spec.AddModifier(func(u *sql.UpdateBuilder) {
  392. sqljson.Append(u, whatsapp.FieldGroupAllowList, value)
  393. })
  394. }
  395. if value, ok := wu.mutation.BlockList(); ok {
  396. _spec.SetField(whatsapp.FieldBlockList, field.TypeJSON, value)
  397. }
  398. if value, ok := wu.mutation.AppendedBlockList(); ok {
  399. _spec.AddModifier(func(u *sql.UpdateBuilder) {
  400. sqljson.Append(u, whatsapp.FieldBlockList, value)
  401. })
  402. }
  403. if value, ok := wu.mutation.GroupBlockList(); ok {
  404. _spec.SetField(whatsapp.FieldGroupBlockList, field.TypeJSON, value)
  405. }
  406. if value, ok := wu.mutation.AppendedGroupBlockList(); ok {
  407. _spec.AddModifier(func(u *sql.UpdateBuilder) {
  408. sqljson.Append(u, whatsapp.FieldGroupBlockList, value)
  409. })
  410. }
  411. if n, err = sqlgraph.UpdateNodes(ctx, wu.driver, _spec); err != nil {
  412. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  413. err = &NotFoundError{whatsapp.Label}
  414. } else if sqlgraph.IsConstraintError(err) {
  415. err = &ConstraintError{msg: err.Error(), wrap: err}
  416. }
  417. return 0, err
  418. }
  419. wu.mutation.done = true
  420. return n, nil
  421. }
  422. // WhatsappUpdateOne is the builder for updating a single Whatsapp entity.
  423. type WhatsappUpdateOne struct {
  424. config
  425. fields []string
  426. hooks []Hook
  427. mutation *WhatsappMutation
  428. }
  429. // SetUpdatedAt sets the "updated_at" field.
  430. func (wuo *WhatsappUpdateOne) SetUpdatedAt(t time.Time) *WhatsappUpdateOne {
  431. wuo.mutation.SetUpdatedAt(t)
  432. return wuo
  433. }
  434. // SetStatus sets the "status" field.
  435. func (wuo *WhatsappUpdateOne) SetStatus(u uint8) *WhatsappUpdateOne {
  436. wuo.mutation.ResetStatus()
  437. wuo.mutation.SetStatus(u)
  438. return wuo
  439. }
  440. // SetNillableStatus sets the "status" field if the given value is not nil.
  441. func (wuo *WhatsappUpdateOne) SetNillableStatus(u *uint8) *WhatsappUpdateOne {
  442. if u != nil {
  443. wuo.SetStatus(*u)
  444. }
  445. return wuo
  446. }
  447. // AddStatus adds u to the "status" field.
  448. func (wuo *WhatsappUpdateOne) AddStatus(u int8) *WhatsappUpdateOne {
  449. wuo.mutation.AddStatus(u)
  450. return wuo
  451. }
  452. // ClearStatus clears the value of the "status" field.
  453. func (wuo *WhatsappUpdateOne) ClearStatus() *WhatsappUpdateOne {
  454. wuo.mutation.ClearStatus()
  455. return wuo
  456. }
  457. // SetDeletedAt sets the "deleted_at" field.
  458. func (wuo *WhatsappUpdateOne) SetDeletedAt(t time.Time) *WhatsappUpdateOne {
  459. wuo.mutation.SetDeletedAt(t)
  460. return wuo
  461. }
  462. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  463. func (wuo *WhatsappUpdateOne) SetNillableDeletedAt(t *time.Time) *WhatsappUpdateOne {
  464. if t != nil {
  465. wuo.SetDeletedAt(*t)
  466. }
  467. return wuo
  468. }
  469. // ClearDeletedAt clears the value of the "deleted_at" field.
  470. func (wuo *WhatsappUpdateOne) ClearDeletedAt() *WhatsappUpdateOne {
  471. wuo.mutation.ClearDeletedAt()
  472. return wuo
  473. }
  474. // SetAk sets the "ak" field.
  475. func (wuo *WhatsappUpdateOne) SetAk(s string) *WhatsappUpdateOne {
  476. wuo.mutation.SetAk(s)
  477. return wuo
  478. }
  479. // SetNillableAk sets the "ak" field if the given value is not nil.
  480. func (wuo *WhatsappUpdateOne) SetNillableAk(s *string) *WhatsappUpdateOne {
  481. if s != nil {
  482. wuo.SetAk(*s)
  483. }
  484. return wuo
  485. }
  486. // ClearAk clears the value of the "ak" field.
  487. func (wuo *WhatsappUpdateOne) ClearAk() *WhatsappUpdateOne {
  488. wuo.mutation.ClearAk()
  489. return wuo
  490. }
  491. // SetSk sets the "sk" field.
  492. func (wuo *WhatsappUpdateOne) SetSk(s string) *WhatsappUpdateOne {
  493. wuo.mutation.SetSk(s)
  494. return wuo
  495. }
  496. // SetNillableSk sets the "sk" field if the given value is not nil.
  497. func (wuo *WhatsappUpdateOne) SetNillableSk(s *string) *WhatsappUpdateOne {
  498. if s != nil {
  499. wuo.SetSk(*s)
  500. }
  501. return wuo
  502. }
  503. // SetCallback sets the "callback" field.
  504. func (wuo *WhatsappUpdateOne) SetCallback(s string) *WhatsappUpdateOne {
  505. wuo.mutation.SetCallback(s)
  506. return wuo
  507. }
  508. // SetNillableCallback sets the "callback" field if the given value is not nil.
  509. func (wuo *WhatsappUpdateOne) SetNillableCallback(s *string) *WhatsappUpdateOne {
  510. if s != nil {
  511. wuo.SetCallback(*s)
  512. }
  513. return wuo
  514. }
  515. // SetAccount sets the "account" field.
  516. func (wuo *WhatsappUpdateOne) SetAccount(s string) *WhatsappUpdateOne {
  517. wuo.mutation.SetAccount(s)
  518. return wuo
  519. }
  520. // SetNillableAccount sets the "account" field if the given value is not nil.
  521. func (wuo *WhatsappUpdateOne) SetNillableAccount(s *string) *WhatsappUpdateOne {
  522. if s != nil {
  523. wuo.SetAccount(*s)
  524. }
  525. return wuo
  526. }
  527. // SetNickname sets the "nickname" field.
  528. func (wuo *WhatsappUpdateOne) SetNickname(s string) *WhatsappUpdateOne {
  529. wuo.mutation.SetNickname(s)
  530. return wuo
  531. }
  532. // SetNillableNickname sets the "nickname" field if the given value is not nil.
  533. func (wuo *WhatsappUpdateOne) SetNillableNickname(s *string) *WhatsappUpdateOne {
  534. if s != nil {
  535. wuo.SetNickname(*s)
  536. }
  537. return wuo
  538. }
  539. // SetPhone sets the "phone" field.
  540. func (wuo *WhatsappUpdateOne) SetPhone(s string) *WhatsappUpdateOne {
  541. wuo.mutation.SetPhone(s)
  542. return wuo
  543. }
  544. // SetNillablePhone sets the "phone" field if the given value is not nil.
  545. func (wuo *WhatsappUpdateOne) SetNillablePhone(s *string) *WhatsappUpdateOne {
  546. if s != nil {
  547. wuo.SetPhone(*s)
  548. }
  549. return wuo
  550. }
  551. // SetOrganizationID sets the "organization_id" field.
  552. func (wuo *WhatsappUpdateOne) SetOrganizationID(u uint64) *WhatsappUpdateOne {
  553. wuo.mutation.ResetOrganizationID()
  554. wuo.mutation.SetOrganizationID(u)
  555. return wuo
  556. }
  557. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  558. func (wuo *WhatsappUpdateOne) SetNillableOrganizationID(u *uint64) *WhatsappUpdateOne {
  559. if u != nil {
  560. wuo.SetOrganizationID(*u)
  561. }
  562. return wuo
  563. }
  564. // AddOrganizationID adds u to the "organization_id" field.
  565. func (wuo *WhatsappUpdateOne) AddOrganizationID(u int64) *WhatsappUpdateOne {
  566. wuo.mutation.AddOrganizationID(u)
  567. return wuo
  568. }
  569. // ClearOrganizationID clears the value of the "organization_id" field.
  570. func (wuo *WhatsappUpdateOne) ClearOrganizationID() *WhatsappUpdateOne {
  571. wuo.mutation.ClearOrganizationID()
  572. return wuo
  573. }
  574. // SetAgentID sets the "agent_id" field.
  575. func (wuo *WhatsappUpdateOne) SetAgentID(u uint64) *WhatsappUpdateOne {
  576. wuo.mutation.ResetAgentID()
  577. wuo.mutation.SetAgentID(u)
  578. return wuo
  579. }
  580. // SetNillableAgentID sets the "agent_id" field if the given value is not nil.
  581. func (wuo *WhatsappUpdateOne) SetNillableAgentID(u *uint64) *WhatsappUpdateOne {
  582. if u != nil {
  583. wuo.SetAgentID(*u)
  584. }
  585. return wuo
  586. }
  587. // AddAgentID adds u to the "agent_id" field.
  588. func (wuo *WhatsappUpdateOne) AddAgentID(u int64) *WhatsappUpdateOne {
  589. wuo.mutation.AddAgentID(u)
  590. return wuo
  591. }
  592. // SetAPIBase sets the "api_base" field.
  593. func (wuo *WhatsappUpdateOne) SetAPIBase(s string) *WhatsappUpdateOne {
  594. wuo.mutation.SetAPIBase(s)
  595. return wuo
  596. }
  597. // SetNillableAPIBase sets the "api_base" field if the given value is not nil.
  598. func (wuo *WhatsappUpdateOne) SetNillableAPIBase(s *string) *WhatsappUpdateOne {
  599. if s != nil {
  600. wuo.SetAPIBase(*s)
  601. }
  602. return wuo
  603. }
  604. // ClearAPIBase clears the value of the "api_base" field.
  605. func (wuo *WhatsappUpdateOne) ClearAPIBase() *WhatsappUpdateOne {
  606. wuo.mutation.ClearAPIBase()
  607. return wuo
  608. }
  609. // SetAPIKey sets the "api_key" field.
  610. func (wuo *WhatsappUpdateOne) SetAPIKey(s string) *WhatsappUpdateOne {
  611. wuo.mutation.SetAPIKey(s)
  612. return wuo
  613. }
  614. // SetNillableAPIKey sets the "api_key" field if the given value is not nil.
  615. func (wuo *WhatsappUpdateOne) SetNillableAPIKey(s *string) *WhatsappUpdateOne {
  616. if s != nil {
  617. wuo.SetAPIKey(*s)
  618. }
  619. return wuo
  620. }
  621. // ClearAPIKey clears the value of the "api_key" field.
  622. func (wuo *WhatsappUpdateOne) ClearAPIKey() *WhatsappUpdateOne {
  623. wuo.mutation.ClearAPIKey()
  624. return wuo
  625. }
  626. // SetAllowList sets the "allow_list" field.
  627. func (wuo *WhatsappUpdateOne) SetAllowList(s []string) *WhatsappUpdateOne {
  628. wuo.mutation.SetAllowList(s)
  629. return wuo
  630. }
  631. // AppendAllowList appends s to the "allow_list" field.
  632. func (wuo *WhatsappUpdateOne) AppendAllowList(s []string) *WhatsappUpdateOne {
  633. wuo.mutation.AppendAllowList(s)
  634. return wuo
  635. }
  636. // SetGroupAllowList sets the "group_allow_list" field.
  637. func (wuo *WhatsappUpdateOne) SetGroupAllowList(s []string) *WhatsappUpdateOne {
  638. wuo.mutation.SetGroupAllowList(s)
  639. return wuo
  640. }
  641. // AppendGroupAllowList appends s to the "group_allow_list" field.
  642. func (wuo *WhatsappUpdateOne) AppendGroupAllowList(s []string) *WhatsappUpdateOne {
  643. wuo.mutation.AppendGroupAllowList(s)
  644. return wuo
  645. }
  646. // SetBlockList sets the "block_list" field.
  647. func (wuo *WhatsappUpdateOne) SetBlockList(s []string) *WhatsappUpdateOne {
  648. wuo.mutation.SetBlockList(s)
  649. return wuo
  650. }
  651. // AppendBlockList appends s to the "block_list" field.
  652. func (wuo *WhatsappUpdateOne) AppendBlockList(s []string) *WhatsappUpdateOne {
  653. wuo.mutation.AppendBlockList(s)
  654. return wuo
  655. }
  656. // SetGroupBlockList sets the "group_block_list" field.
  657. func (wuo *WhatsappUpdateOne) SetGroupBlockList(s []string) *WhatsappUpdateOne {
  658. wuo.mutation.SetGroupBlockList(s)
  659. return wuo
  660. }
  661. // AppendGroupBlockList appends s to the "group_block_list" field.
  662. func (wuo *WhatsappUpdateOne) AppendGroupBlockList(s []string) *WhatsappUpdateOne {
  663. wuo.mutation.AppendGroupBlockList(s)
  664. return wuo
  665. }
  666. // Mutation returns the WhatsappMutation object of the builder.
  667. func (wuo *WhatsappUpdateOne) Mutation() *WhatsappMutation {
  668. return wuo.mutation
  669. }
  670. // Where appends a list predicates to the WhatsappUpdate builder.
  671. func (wuo *WhatsappUpdateOne) Where(ps ...predicate.Whatsapp) *WhatsappUpdateOne {
  672. wuo.mutation.Where(ps...)
  673. return wuo
  674. }
  675. // Select allows selecting one or more fields (columns) of the returned entity.
  676. // The default is selecting all fields defined in the entity schema.
  677. func (wuo *WhatsappUpdateOne) Select(field string, fields ...string) *WhatsappUpdateOne {
  678. wuo.fields = append([]string{field}, fields...)
  679. return wuo
  680. }
  681. // Save executes the query and returns the updated Whatsapp entity.
  682. func (wuo *WhatsappUpdateOne) Save(ctx context.Context) (*Whatsapp, error) {
  683. if err := wuo.defaults(); err != nil {
  684. return nil, err
  685. }
  686. return withHooks(ctx, wuo.sqlSave, wuo.mutation, wuo.hooks)
  687. }
  688. // SaveX is like Save, but panics if an error occurs.
  689. func (wuo *WhatsappUpdateOne) SaveX(ctx context.Context) *Whatsapp {
  690. node, err := wuo.Save(ctx)
  691. if err != nil {
  692. panic(err)
  693. }
  694. return node
  695. }
  696. // Exec executes the query on the entity.
  697. func (wuo *WhatsappUpdateOne) Exec(ctx context.Context) error {
  698. _, err := wuo.Save(ctx)
  699. return err
  700. }
  701. // ExecX is like Exec, but panics if an error occurs.
  702. func (wuo *WhatsappUpdateOne) ExecX(ctx context.Context) {
  703. if err := wuo.Exec(ctx); err != nil {
  704. panic(err)
  705. }
  706. }
  707. // defaults sets the default values of the builder before save.
  708. func (wuo *WhatsappUpdateOne) defaults() error {
  709. if _, ok := wuo.mutation.UpdatedAt(); !ok {
  710. if whatsapp.UpdateDefaultUpdatedAt == nil {
  711. return fmt.Errorf("ent: uninitialized whatsapp.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  712. }
  713. v := whatsapp.UpdateDefaultUpdatedAt()
  714. wuo.mutation.SetUpdatedAt(v)
  715. }
  716. return nil
  717. }
  718. func (wuo *WhatsappUpdateOne) sqlSave(ctx context.Context) (_node *Whatsapp, err error) {
  719. _spec := sqlgraph.NewUpdateSpec(whatsapp.Table, whatsapp.Columns, sqlgraph.NewFieldSpec(whatsapp.FieldID, field.TypeUint64))
  720. id, ok := wuo.mutation.ID()
  721. if !ok {
  722. return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Whatsapp.id" for update`)}
  723. }
  724. _spec.Node.ID.Value = id
  725. if fields := wuo.fields; len(fields) > 0 {
  726. _spec.Node.Columns = make([]string, 0, len(fields))
  727. _spec.Node.Columns = append(_spec.Node.Columns, whatsapp.FieldID)
  728. for _, f := range fields {
  729. if !whatsapp.ValidColumn(f) {
  730. return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
  731. }
  732. if f != whatsapp.FieldID {
  733. _spec.Node.Columns = append(_spec.Node.Columns, f)
  734. }
  735. }
  736. }
  737. if ps := wuo.mutation.predicates; len(ps) > 0 {
  738. _spec.Predicate = func(selector *sql.Selector) {
  739. for i := range ps {
  740. ps[i](selector)
  741. }
  742. }
  743. }
  744. if value, ok := wuo.mutation.UpdatedAt(); ok {
  745. _spec.SetField(whatsapp.FieldUpdatedAt, field.TypeTime, value)
  746. }
  747. if value, ok := wuo.mutation.Status(); ok {
  748. _spec.SetField(whatsapp.FieldStatus, field.TypeUint8, value)
  749. }
  750. if value, ok := wuo.mutation.AddedStatus(); ok {
  751. _spec.AddField(whatsapp.FieldStatus, field.TypeUint8, value)
  752. }
  753. if wuo.mutation.StatusCleared() {
  754. _spec.ClearField(whatsapp.FieldStatus, field.TypeUint8)
  755. }
  756. if value, ok := wuo.mutation.DeletedAt(); ok {
  757. _spec.SetField(whatsapp.FieldDeletedAt, field.TypeTime, value)
  758. }
  759. if wuo.mutation.DeletedAtCleared() {
  760. _spec.ClearField(whatsapp.FieldDeletedAt, field.TypeTime)
  761. }
  762. if value, ok := wuo.mutation.Ak(); ok {
  763. _spec.SetField(whatsapp.FieldAk, field.TypeString, value)
  764. }
  765. if wuo.mutation.AkCleared() {
  766. _spec.ClearField(whatsapp.FieldAk, field.TypeString)
  767. }
  768. if value, ok := wuo.mutation.Sk(); ok {
  769. _spec.SetField(whatsapp.FieldSk, field.TypeString, value)
  770. }
  771. if value, ok := wuo.mutation.Callback(); ok {
  772. _spec.SetField(whatsapp.FieldCallback, field.TypeString, value)
  773. }
  774. if value, ok := wuo.mutation.Account(); ok {
  775. _spec.SetField(whatsapp.FieldAccount, field.TypeString, value)
  776. }
  777. if value, ok := wuo.mutation.Nickname(); ok {
  778. _spec.SetField(whatsapp.FieldNickname, field.TypeString, value)
  779. }
  780. if value, ok := wuo.mutation.Phone(); ok {
  781. _spec.SetField(whatsapp.FieldPhone, field.TypeString, value)
  782. }
  783. if value, ok := wuo.mutation.OrganizationID(); ok {
  784. _spec.SetField(whatsapp.FieldOrganizationID, field.TypeUint64, value)
  785. }
  786. if value, ok := wuo.mutation.AddedOrganizationID(); ok {
  787. _spec.AddField(whatsapp.FieldOrganizationID, field.TypeUint64, value)
  788. }
  789. if wuo.mutation.OrganizationIDCleared() {
  790. _spec.ClearField(whatsapp.FieldOrganizationID, field.TypeUint64)
  791. }
  792. if value, ok := wuo.mutation.AgentID(); ok {
  793. _spec.SetField(whatsapp.FieldAgentID, field.TypeUint64, value)
  794. }
  795. if value, ok := wuo.mutation.AddedAgentID(); ok {
  796. _spec.AddField(whatsapp.FieldAgentID, field.TypeUint64, value)
  797. }
  798. if value, ok := wuo.mutation.APIBase(); ok {
  799. _spec.SetField(whatsapp.FieldAPIBase, field.TypeString, value)
  800. }
  801. if wuo.mutation.APIBaseCleared() {
  802. _spec.ClearField(whatsapp.FieldAPIBase, field.TypeString)
  803. }
  804. if value, ok := wuo.mutation.APIKey(); ok {
  805. _spec.SetField(whatsapp.FieldAPIKey, field.TypeString, value)
  806. }
  807. if wuo.mutation.APIKeyCleared() {
  808. _spec.ClearField(whatsapp.FieldAPIKey, field.TypeString)
  809. }
  810. if value, ok := wuo.mutation.AllowList(); ok {
  811. _spec.SetField(whatsapp.FieldAllowList, field.TypeJSON, value)
  812. }
  813. if value, ok := wuo.mutation.AppendedAllowList(); ok {
  814. _spec.AddModifier(func(u *sql.UpdateBuilder) {
  815. sqljson.Append(u, whatsapp.FieldAllowList, value)
  816. })
  817. }
  818. if value, ok := wuo.mutation.GroupAllowList(); ok {
  819. _spec.SetField(whatsapp.FieldGroupAllowList, field.TypeJSON, value)
  820. }
  821. if value, ok := wuo.mutation.AppendedGroupAllowList(); ok {
  822. _spec.AddModifier(func(u *sql.UpdateBuilder) {
  823. sqljson.Append(u, whatsapp.FieldGroupAllowList, value)
  824. })
  825. }
  826. if value, ok := wuo.mutation.BlockList(); ok {
  827. _spec.SetField(whatsapp.FieldBlockList, field.TypeJSON, value)
  828. }
  829. if value, ok := wuo.mutation.AppendedBlockList(); ok {
  830. _spec.AddModifier(func(u *sql.UpdateBuilder) {
  831. sqljson.Append(u, whatsapp.FieldBlockList, value)
  832. })
  833. }
  834. if value, ok := wuo.mutation.GroupBlockList(); ok {
  835. _spec.SetField(whatsapp.FieldGroupBlockList, field.TypeJSON, value)
  836. }
  837. if value, ok := wuo.mutation.AppendedGroupBlockList(); ok {
  838. _spec.AddModifier(func(u *sql.UpdateBuilder) {
  839. sqljson.Append(u, whatsapp.FieldGroupBlockList, value)
  840. })
  841. }
  842. _node = &Whatsapp{config: wuo.config}
  843. _spec.Assign = _node.assignValues
  844. _spec.ScanValues = _node.scanValues
  845. if err = sqlgraph.UpdateNode(ctx, wuo.driver, _spec); err != nil {
  846. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  847. err = &NotFoundError{whatsapp.Label}
  848. } else if sqlgraph.IsConstraintError(err) {
  849. err = &ConstraintError{msg: err.Error(), wrap: err}
  850. }
  851. return nil, err
  852. }
  853. wuo.mutation.done = true
  854. return _node, nil
  855. }