contact_update.go 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137
  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/contact"
  9. "wechat-api/ent/labelrelationship"
  10. "wechat-api/ent/predicate"
  11. "entgo.io/ent/dialect/sql"
  12. "entgo.io/ent/dialect/sql/sqlgraph"
  13. "entgo.io/ent/schema/field"
  14. )
  15. // ContactUpdate is the builder for updating Contact entities.
  16. type ContactUpdate struct {
  17. config
  18. hooks []Hook
  19. mutation *ContactMutation
  20. }
  21. // Where appends a list predicates to the ContactUpdate builder.
  22. func (cu *ContactUpdate) Where(ps ...predicate.Contact) *ContactUpdate {
  23. cu.mutation.Where(ps...)
  24. return cu
  25. }
  26. // SetUpdatedAt sets the "updated_at" field.
  27. func (cu *ContactUpdate) SetUpdatedAt(t time.Time) *ContactUpdate {
  28. cu.mutation.SetUpdatedAt(t)
  29. return cu
  30. }
  31. // SetStatus sets the "status" field.
  32. func (cu *ContactUpdate) SetStatus(u uint8) *ContactUpdate {
  33. cu.mutation.ResetStatus()
  34. cu.mutation.SetStatus(u)
  35. return cu
  36. }
  37. // SetNillableStatus sets the "status" field if the given value is not nil.
  38. func (cu *ContactUpdate) SetNillableStatus(u *uint8) *ContactUpdate {
  39. if u != nil {
  40. cu.SetStatus(*u)
  41. }
  42. return cu
  43. }
  44. // AddStatus adds u to the "status" field.
  45. func (cu *ContactUpdate) AddStatus(u int8) *ContactUpdate {
  46. cu.mutation.AddStatus(u)
  47. return cu
  48. }
  49. // ClearStatus clears the value of the "status" field.
  50. func (cu *ContactUpdate) ClearStatus() *ContactUpdate {
  51. cu.mutation.ClearStatus()
  52. return cu
  53. }
  54. // SetDeletedAt sets the "deleted_at" field.
  55. func (cu *ContactUpdate) SetDeletedAt(t time.Time) *ContactUpdate {
  56. cu.mutation.SetDeletedAt(t)
  57. return cu
  58. }
  59. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  60. func (cu *ContactUpdate) SetNillableDeletedAt(t *time.Time) *ContactUpdate {
  61. if t != nil {
  62. cu.SetDeletedAt(*t)
  63. }
  64. return cu
  65. }
  66. // ClearDeletedAt clears the value of the "deleted_at" field.
  67. func (cu *ContactUpdate) ClearDeletedAt() *ContactUpdate {
  68. cu.mutation.ClearDeletedAt()
  69. return cu
  70. }
  71. // SetWxWxid sets the "wx_wxid" field.
  72. func (cu *ContactUpdate) SetWxWxid(s string) *ContactUpdate {
  73. cu.mutation.SetWxWxid(s)
  74. return cu
  75. }
  76. // SetNillableWxWxid sets the "wx_wxid" field if the given value is not nil.
  77. func (cu *ContactUpdate) SetNillableWxWxid(s *string) *ContactUpdate {
  78. if s != nil {
  79. cu.SetWxWxid(*s)
  80. }
  81. return cu
  82. }
  83. // ClearWxWxid clears the value of the "wx_wxid" field.
  84. func (cu *ContactUpdate) ClearWxWxid() *ContactUpdate {
  85. cu.mutation.ClearWxWxid()
  86. return cu
  87. }
  88. // SetType sets the "type" field.
  89. func (cu *ContactUpdate) SetType(i int) *ContactUpdate {
  90. cu.mutation.ResetType()
  91. cu.mutation.SetType(i)
  92. return cu
  93. }
  94. // SetNillableType sets the "type" field if the given value is not nil.
  95. func (cu *ContactUpdate) SetNillableType(i *int) *ContactUpdate {
  96. if i != nil {
  97. cu.SetType(*i)
  98. }
  99. return cu
  100. }
  101. // AddType adds i to the "type" field.
  102. func (cu *ContactUpdate) AddType(i int) *ContactUpdate {
  103. cu.mutation.AddType(i)
  104. return cu
  105. }
  106. // ClearType clears the value of the "type" field.
  107. func (cu *ContactUpdate) ClearType() *ContactUpdate {
  108. cu.mutation.ClearType()
  109. return cu
  110. }
  111. // SetWxid sets the "wxid" field.
  112. func (cu *ContactUpdate) SetWxid(s string) *ContactUpdate {
  113. cu.mutation.SetWxid(s)
  114. return cu
  115. }
  116. // SetNillableWxid sets the "wxid" field if the given value is not nil.
  117. func (cu *ContactUpdate) SetNillableWxid(s *string) *ContactUpdate {
  118. if s != nil {
  119. cu.SetWxid(*s)
  120. }
  121. return cu
  122. }
  123. // SetAccount sets the "account" field.
  124. func (cu *ContactUpdate) SetAccount(s string) *ContactUpdate {
  125. cu.mutation.SetAccount(s)
  126. return cu
  127. }
  128. // SetNillableAccount sets the "account" field if the given value is not nil.
  129. func (cu *ContactUpdate) SetNillableAccount(s *string) *ContactUpdate {
  130. if s != nil {
  131. cu.SetAccount(*s)
  132. }
  133. return cu
  134. }
  135. // SetNickname sets the "nickname" field.
  136. func (cu *ContactUpdate) SetNickname(s string) *ContactUpdate {
  137. cu.mutation.SetNickname(s)
  138. return cu
  139. }
  140. // SetNillableNickname sets the "nickname" field if the given value is not nil.
  141. func (cu *ContactUpdate) SetNillableNickname(s *string) *ContactUpdate {
  142. if s != nil {
  143. cu.SetNickname(*s)
  144. }
  145. return cu
  146. }
  147. // SetMarkname sets the "markname" field.
  148. func (cu *ContactUpdate) SetMarkname(s string) *ContactUpdate {
  149. cu.mutation.SetMarkname(s)
  150. return cu
  151. }
  152. // SetNillableMarkname sets the "markname" field if the given value is not nil.
  153. func (cu *ContactUpdate) SetNillableMarkname(s *string) *ContactUpdate {
  154. if s != nil {
  155. cu.SetMarkname(*s)
  156. }
  157. return cu
  158. }
  159. // SetHeadimg sets the "headimg" field.
  160. func (cu *ContactUpdate) SetHeadimg(s string) *ContactUpdate {
  161. cu.mutation.SetHeadimg(s)
  162. return cu
  163. }
  164. // SetNillableHeadimg sets the "headimg" field if the given value is not nil.
  165. func (cu *ContactUpdate) SetNillableHeadimg(s *string) *ContactUpdate {
  166. if s != nil {
  167. cu.SetHeadimg(*s)
  168. }
  169. return cu
  170. }
  171. // SetSex sets the "sex" field.
  172. func (cu *ContactUpdate) SetSex(i int) *ContactUpdate {
  173. cu.mutation.ResetSex()
  174. cu.mutation.SetSex(i)
  175. return cu
  176. }
  177. // SetNillableSex sets the "sex" field if the given value is not nil.
  178. func (cu *ContactUpdate) SetNillableSex(i *int) *ContactUpdate {
  179. if i != nil {
  180. cu.SetSex(*i)
  181. }
  182. return cu
  183. }
  184. // AddSex adds i to the "sex" field.
  185. func (cu *ContactUpdate) AddSex(i int) *ContactUpdate {
  186. cu.mutation.AddSex(i)
  187. return cu
  188. }
  189. // SetStarrole sets the "starrole" field.
  190. func (cu *ContactUpdate) SetStarrole(s string) *ContactUpdate {
  191. cu.mutation.SetStarrole(s)
  192. return cu
  193. }
  194. // SetNillableStarrole sets the "starrole" field if the given value is not nil.
  195. func (cu *ContactUpdate) SetNillableStarrole(s *string) *ContactUpdate {
  196. if s != nil {
  197. cu.SetStarrole(*s)
  198. }
  199. return cu
  200. }
  201. // SetDontseeit sets the "dontseeit" field.
  202. func (cu *ContactUpdate) SetDontseeit(i int) *ContactUpdate {
  203. cu.mutation.ResetDontseeit()
  204. cu.mutation.SetDontseeit(i)
  205. return cu
  206. }
  207. // SetNillableDontseeit sets the "dontseeit" field if the given value is not nil.
  208. func (cu *ContactUpdate) SetNillableDontseeit(i *int) *ContactUpdate {
  209. if i != nil {
  210. cu.SetDontseeit(*i)
  211. }
  212. return cu
  213. }
  214. // AddDontseeit adds i to the "dontseeit" field.
  215. func (cu *ContactUpdate) AddDontseeit(i int) *ContactUpdate {
  216. cu.mutation.AddDontseeit(i)
  217. return cu
  218. }
  219. // SetDontseeme sets the "dontseeme" field.
  220. func (cu *ContactUpdate) SetDontseeme(i int) *ContactUpdate {
  221. cu.mutation.ResetDontseeme()
  222. cu.mutation.SetDontseeme(i)
  223. return cu
  224. }
  225. // SetNillableDontseeme sets the "dontseeme" field if the given value is not nil.
  226. func (cu *ContactUpdate) SetNillableDontseeme(i *int) *ContactUpdate {
  227. if i != nil {
  228. cu.SetDontseeme(*i)
  229. }
  230. return cu
  231. }
  232. // AddDontseeme adds i to the "dontseeme" field.
  233. func (cu *ContactUpdate) AddDontseeme(i int) *ContactUpdate {
  234. cu.mutation.AddDontseeme(i)
  235. return cu
  236. }
  237. // SetLag sets the "lag" field.
  238. func (cu *ContactUpdate) SetLag(s string) *ContactUpdate {
  239. cu.mutation.SetLag(s)
  240. return cu
  241. }
  242. // SetNillableLag sets the "lag" field if the given value is not nil.
  243. func (cu *ContactUpdate) SetNillableLag(s *string) *ContactUpdate {
  244. if s != nil {
  245. cu.SetLag(*s)
  246. }
  247. return cu
  248. }
  249. // SetGid sets the "gid" field.
  250. func (cu *ContactUpdate) SetGid(s string) *ContactUpdate {
  251. cu.mutation.SetGid(s)
  252. return cu
  253. }
  254. // SetNillableGid sets the "gid" field if the given value is not nil.
  255. func (cu *ContactUpdate) SetNillableGid(s *string) *ContactUpdate {
  256. if s != nil {
  257. cu.SetGid(*s)
  258. }
  259. return cu
  260. }
  261. // SetGname sets the "gname" field.
  262. func (cu *ContactUpdate) SetGname(s string) *ContactUpdate {
  263. cu.mutation.SetGname(s)
  264. return cu
  265. }
  266. // SetNillableGname sets the "gname" field if the given value is not nil.
  267. func (cu *ContactUpdate) SetNillableGname(s *string) *ContactUpdate {
  268. if s != nil {
  269. cu.SetGname(*s)
  270. }
  271. return cu
  272. }
  273. // SetV3 sets the "v3" field.
  274. func (cu *ContactUpdate) SetV3(s string) *ContactUpdate {
  275. cu.mutation.SetV3(s)
  276. return cu
  277. }
  278. // SetNillableV3 sets the "v3" field if the given value is not nil.
  279. func (cu *ContactUpdate) SetNillableV3(s *string) *ContactUpdate {
  280. if s != nil {
  281. cu.SetV3(*s)
  282. }
  283. return cu
  284. }
  285. // AddContactRelationshipIDs adds the "contact_relationships" edge to the LabelRelationship entity by IDs.
  286. func (cu *ContactUpdate) AddContactRelationshipIDs(ids ...uint64) *ContactUpdate {
  287. cu.mutation.AddContactRelationshipIDs(ids...)
  288. return cu
  289. }
  290. // AddContactRelationships adds the "contact_relationships" edges to the LabelRelationship entity.
  291. func (cu *ContactUpdate) AddContactRelationships(l ...*LabelRelationship) *ContactUpdate {
  292. ids := make([]uint64, len(l))
  293. for i := range l {
  294. ids[i] = l[i].ID
  295. }
  296. return cu.AddContactRelationshipIDs(ids...)
  297. }
  298. // Mutation returns the ContactMutation object of the builder.
  299. func (cu *ContactUpdate) Mutation() *ContactMutation {
  300. return cu.mutation
  301. }
  302. // ClearContactRelationships clears all "contact_relationships" edges to the LabelRelationship entity.
  303. func (cu *ContactUpdate) ClearContactRelationships() *ContactUpdate {
  304. cu.mutation.ClearContactRelationships()
  305. return cu
  306. }
  307. // RemoveContactRelationshipIDs removes the "contact_relationships" edge to LabelRelationship entities by IDs.
  308. func (cu *ContactUpdate) RemoveContactRelationshipIDs(ids ...uint64) *ContactUpdate {
  309. cu.mutation.RemoveContactRelationshipIDs(ids...)
  310. return cu
  311. }
  312. // RemoveContactRelationships removes "contact_relationships" edges to LabelRelationship entities.
  313. func (cu *ContactUpdate) RemoveContactRelationships(l ...*LabelRelationship) *ContactUpdate {
  314. ids := make([]uint64, len(l))
  315. for i := range l {
  316. ids[i] = l[i].ID
  317. }
  318. return cu.RemoveContactRelationshipIDs(ids...)
  319. }
  320. // Save executes the query and returns the number of nodes affected by the update operation.
  321. func (cu *ContactUpdate) Save(ctx context.Context) (int, error) {
  322. if err := cu.defaults(); err != nil {
  323. return 0, err
  324. }
  325. return withHooks(ctx, cu.sqlSave, cu.mutation, cu.hooks)
  326. }
  327. // SaveX is like Save, but panics if an error occurs.
  328. func (cu *ContactUpdate) SaveX(ctx context.Context) int {
  329. affected, err := cu.Save(ctx)
  330. if err != nil {
  331. panic(err)
  332. }
  333. return affected
  334. }
  335. // Exec executes the query.
  336. func (cu *ContactUpdate) Exec(ctx context.Context) error {
  337. _, err := cu.Save(ctx)
  338. return err
  339. }
  340. // ExecX is like Exec, but panics if an error occurs.
  341. func (cu *ContactUpdate) ExecX(ctx context.Context) {
  342. if err := cu.Exec(ctx); err != nil {
  343. panic(err)
  344. }
  345. }
  346. // defaults sets the default values of the builder before save.
  347. func (cu *ContactUpdate) defaults() error {
  348. if _, ok := cu.mutation.UpdatedAt(); !ok {
  349. if contact.UpdateDefaultUpdatedAt == nil {
  350. return fmt.Errorf("ent: uninitialized contact.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  351. }
  352. v := contact.UpdateDefaultUpdatedAt()
  353. cu.mutation.SetUpdatedAt(v)
  354. }
  355. return nil
  356. }
  357. func (cu *ContactUpdate) sqlSave(ctx context.Context) (n int, err error) {
  358. _spec := sqlgraph.NewUpdateSpec(contact.Table, contact.Columns, sqlgraph.NewFieldSpec(contact.FieldID, field.TypeUint64))
  359. if ps := cu.mutation.predicates; len(ps) > 0 {
  360. _spec.Predicate = func(selector *sql.Selector) {
  361. for i := range ps {
  362. ps[i](selector)
  363. }
  364. }
  365. }
  366. if value, ok := cu.mutation.UpdatedAt(); ok {
  367. _spec.SetField(contact.FieldUpdatedAt, field.TypeTime, value)
  368. }
  369. if value, ok := cu.mutation.Status(); ok {
  370. _spec.SetField(contact.FieldStatus, field.TypeUint8, value)
  371. }
  372. if value, ok := cu.mutation.AddedStatus(); ok {
  373. _spec.AddField(contact.FieldStatus, field.TypeUint8, value)
  374. }
  375. if cu.mutation.StatusCleared() {
  376. _spec.ClearField(contact.FieldStatus, field.TypeUint8)
  377. }
  378. if value, ok := cu.mutation.DeletedAt(); ok {
  379. _spec.SetField(contact.FieldDeletedAt, field.TypeTime, value)
  380. }
  381. if cu.mutation.DeletedAtCleared() {
  382. _spec.ClearField(contact.FieldDeletedAt, field.TypeTime)
  383. }
  384. if value, ok := cu.mutation.WxWxid(); ok {
  385. _spec.SetField(contact.FieldWxWxid, field.TypeString, value)
  386. }
  387. if cu.mutation.WxWxidCleared() {
  388. _spec.ClearField(contact.FieldWxWxid, field.TypeString)
  389. }
  390. if value, ok := cu.mutation.GetType(); ok {
  391. _spec.SetField(contact.FieldType, field.TypeInt, value)
  392. }
  393. if value, ok := cu.mutation.AddedType(); ok {
  394. _spec.AddField(contact.FieldType, field.TypeInt, value)
  395. }
  396. if cu.mutation.TypeCleared() {
  397. _spec.ClearField(contact.FieldType, field.TypeInt)
  398. }
  399. if value, ok := cu.mutation.Wxid(); ok {
  400. _spec.SetField(contact.FieldWxid, field.TypeString, value)
  401. }
  402. if value, ok := cu.mutation.Account(); ok {
  403. _spec.SetField(contact.FieldAccount, field.TypeString, value)
  404. }
  405. if value, ok := cu.mutation.Nickname(); ok {
  406. _spec.SetField(contact.FieldNickname, field.TypeString, value)
  407. }
  408. if value, ok := cu.mutation.Markname(); ok {
  409. _spec.SetField(contact.FieldMarkname, field.TypeString, value)
  410. }
  411. if value, ok := cu.mutation.Headimg(); ok {
  412. _spec.SetField(contact.FieldHeadimg, field.TypeString, value)
  413. }
  414. if value, ok := cu.mutation.Sex(); ok {
  415. _spec.SetField(contact.FieldSex, field.TypeInt, value)
  416. }
  417. if value, ok := cu.mutation.AddedSex(); ok {
  418. _spec.AddField(contact.FieldSex, field.TypeInt, value)
  419. }
  420. if value, ok := cu.mutation.Starrole(); ok {
  421. _spec.SetField(contact.FieldStarrole, field.TypeString, value)
  422. }
  423. if value, ok := cu.mutation.Dontseeit(); ok {
  424. _spec.SetField(contact.FieldDontseeit, field.TypeInt, value)
  425. }
  426. if value, ok := cu.mutation.AddedDontseeit(); ok {
  427. _spec.AddField(contact.FieldDontseeit, field.TypeInt, value)
  428. }
  429. if value, ok := cu.mutation.Dontseeme(); ok {
  430. _spec.SetField(contact.FieldDontseeme, field.TypeInt, value)
  431. }
  432. if value, ok := cu.mutation.AddedDontseeme(); ok {
  433. _spec.AddField(contact.FieldDontseeme, field.TypeInt, value)
  434. }
  435. if value, ok := cu.mutation.Lag(); ok {
  436. _spec.SetField(contact.FieldLag, field.TypeString, value)
  437. }
  438. if value, ok := cu.mutation.Gid(); ok {
  439. _spec.SetField(contact.FieldGid, field.TypeString, value)
  440. }
  441. if value, ok := cu.mutation.Gname(); ok {
  442. _spec.SetField(contact.FieldGname, field.TypeString, value)
  443. }
  444. if value, ok := cu.mutation.V3(); ok {
  445. _spec.SetField(contact.FieldV3, field.TypeString, value)
  446. }
  447. if cu.mutation.ContactRelationshipsCleared() {
  448. edge := &sqlgraph.EdgeSpec{
  449. Rel: sqlgraph.O2M,
  450. Inverse: false,
  451. Table: contact.ContactRelationshipsTable,
  452. Columns: []string{contact.ContactRelationshipsColumn},
  453. Bidi: false,
  454. Target: &sqlgraph.EdgeTarget{
  455. IDSpec: sqlgraph.NewFieldSpec(labelrelationship.FieldID, field.TypeUint64),
  456. },
  457. }
  458. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  459. }
  460. if nodes := cu.mutation.RemovedContactRelationshipsIDs(); len(nodes) > 0 && !cu.mutation.ContactRelationshipsCleared() {
  461. edge := &sqlgraph.EdgeSpec{
  462. Rel: sqlgraph.O2M,
  463. Inverse: false,
  464. Table: contact.ContactRelationshipsTable,
  465. Columns: []string{contact.ContactRelationshipsColumn},
  466. Bidi: false,
  467. Target: &sqlgraph.EdgeTarget{
  468. IDSpec: sqlgraph.NewFieldSpec(labelrelationship.FieldID, field.TypeUint64),
  469. },
  470. }
  471. for _, k := range nodes {
  472. edge.Target.Nodes = append(edge.Target.Nodes, k)
  473. }
  474. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  475. }
  476. if nodes := cu.mutation.ContactRelationshipsIDs(); len(nodes) > 0 {
  477. edge := &sqlgraph.EdgeSpec{
  478. Rel: sqlgraph.O2M,
  479. Inverse: false,
  480. Table: contact.ContactRelationshipsTable,
  481. Columns: []string{contact.ContactRelationshipsColumn},
  482. Bidi: false,
  483. Target: &sqlgraph.EdgeTarget{
  484. IDSpec: sqlgraph.NewFieldSpec(labelrelationship.FieldID, field.TypeUint64),
  485. },
  486. }
  487. for _, k := range nodes {
  488. edge.Target.Nodes = append(edge.Target.Nodes, k)
  489. }
  490. _spec.Edges.Add = append(_spec.Edges.Add, edge)
  491. }
  492. if n, err = sqlgraph.UpdateNodes(ctx, cu.driver, _spec); err != nil {
  493. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  494. err = &NotFoundError{contact.Label}
  495. } else if sqlgraph.IsConstraintError(err) {
  496. err = &ConstraintError{msg: err.Error(), wrap: err}
  497. }
  498. return 0, err
  499. }
  500. cu.mutation.done = true
  501. return n, nil
  502. }
  503. // ContactUpdateOne is the builder for updating a single Contact entity.
  504. type ContactUpdateOne struct {
  505. config
  506. fields []string
  507. hooks []Hook
  508. mutation *ContactMutation
  509. }
  510. // SetUpdatedAt sets the "updated_at" field.
  511. func (cuo *ContactUpdateOne) SetUpdatedAt(t time.Time) *ContactUpdateOne {
  512. cuo.mutation.SetUpdatedAt(t)
  513. return cuo
  514. }
  515. // SetStatus sets the "status" field.
  516. func (cuo *ContactUpdateOne) SetStatus(u uint8) *ContactUpdateOne {
  517. cuo.mutation.ResetStatus()
  518. cuo.mutation.SetStatus(u)
  519. return cuo
  520. }
  521. // SetNillableStatus sets the "status" field if the given value is not nil.
  522. func (cuo *ContactUpdateOne) SetNillableStatus(u *uint8) *ContactUpdateOne {
  523. if u != nil {
  524. cuo.SetStatus(*u)
  525. }
  526. return cuo
  527. }
  528. // AddStatus adds u to the "status" field.
  529. func (cuo *ContactUpdateOne) AddStatus(u int8) *ContactUpdateOne {
  530. cuo.mutation.AddStatus(u)
  531. return cuo
  532. }
  533. // ClearStatus clears the value of the "status" field.
  534. func (cuo *ContactUpdateOne) ClearStatus() *ContactUpdateOne {
  535. cuo.mutation.ClearStatus()
  536. return cuo
  537. }
  538. // SetDeletedAt sets the "deleted_at" field.
  539. func (cuo *ContactUpdateOne) SetDeletedAt(t time.Time) *ContactUpdateOne {
  540. cuo.mutation.SetDeletedAt(t)
  541. return cuo
  542. }
  543. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  544. func (cuo *ContactUpdateOne) SetNillableDeletedAt(t *time.Time) *ContactUpdateOne {
  545. if t != nil {
  546. cuo.SetDeletedAt(*t)
  547. }
  548. return cuo
  549. }
  550. // ClearDeletedAt clears the value of the "deleted_at" field.
  551. func (cuo *ContactUpdateOne) ClearDeletedAt() *ContactUpdateOne {
  552. cuo.mutation.ClearDeletedAt()
  553. return cuo
  554. }
  555. // SetWxWxid sets the "wx_wxid" field.
  556. func (cuo *ContactUpdateOne) SetWxWxid(s string) *ContactUpdateOne {
  557. cuo.mutation.SetWxWxid(s)
  558. return cuo
  559. }
  560. // SetNillableWxWxid sets the "wx_wxid" field if the given value is not nil.
  561. func (cuo *ContactUpdateOne) SetNillableWxWxid(s *string) *ContactUpdateOne {
  562. if s != nil {
  563. cuo.SetWxWxid(*s)
  564. }
  565. return cuo
  566. }
  567. // ClearWxWxid clears the value of the "wx_wxid" field.
  568. func (cuo *ContactUpdateOne) ClearWxWxid() *ContactUpdateOne {
  569. cuo.mutation.ClearWxWxid()
  570. return cuo
  571. }
  572. // SetType sets the "type" field.
  573. func (cuo *ContactUpdateOne) SetType(i int) *ContactUpdateOne {
  574. cuo.mutation.ResetType()
  575. cuo.mutation.SetType(i)
  576. return cuo
  577. }
  578. // SetNillableType sets the "type" field if the given value is not nil.
  579. func (cuo *ContactUpdateOne) SetNillableType(i *int) *ContactUpdateOne {
  580. if i != nil {
  581. cuo.SetType(*i)
  582. }
  583. return cuo
  584. }
  585. // AddType adds i to the "type" field.
  586. func (cuo *ContactUpdateOne) AddType(i int) *ContactUpdateOne {
  587. cuo.mutation.AddType(i)
  588. return cuo
  589. }
  590. // ClearType clears the value of the "type" field.
  591. func (cuo *ContactUpdateOne) ClearType() *ContactUpdateOne {
  592. cuo.mutation.ClearType()
  593. return cuo
  594. }
  595. // SetWxid sets the "wxid" field.
  596. func (cuo *ContactUpdateOne) SetWxid(s string) *ContactUpdateOne {
  597. cuo.mutation.SetWxid(s)
  598. return cuo
  599. }
  600. // SetNillableWxid sets the "wxid" field if the given value is not nil.
  601. func (cuo *ContactUpdateOne) SetNillableWxid(s *string) *ContactUpdateOne {
  602. if s != nil {
  603. cuo.SetWxid(*s)
  604. }
  605. return cuo
  606. }
  607. // SetAccount sets the "account" field.
  608. func (cuo *ContactUpdateOne) SetAccount(s string) *ContactUpdateOne {
  609. cuo.mutation.SetAccount(s)
  610. return cuo
  611. }
  612. // SetNillableAccount sets the "account" field if the given value is not nil.
  613. func (cuo *ContactUpdateOne) SetNillableAccount(s *string) *ContactUpdateOne {
  614. if s != nil {
  615. cuo.SetAccount(*s)
  616. }
  617. return cuo
  618. }
  619. // SetNickname sets the "nickname" field.
  620. func (cuo *ContactUpdateOne) SetNickname(s string) *ContactUpdateOne {
  621. cuo.mutation.SetNickname(s)
  622. return cuo
  623. }
  624. // SetNillableNickname sets the "nickname" field if the given value is not nil.
  625. func (cuo *ContactUpdateOne) SetNillableNickname(s *string) *ContactUpdateOne {
  626. if s != nil {
  627. cuo.SetNickname(*s)
  628. }
  629. return cuo
  630. }
  631. // SetMarkname sets the "markname" field.
  632. func (cuo *ContactUpdateOne) SetMarkname(s string) *ContactUpdateOne {
  633. cuo.mutation.SetMarkname(s)
  634. return cuo
  635. }
  636. // SetNillableMarkname sets the "markname" field if the given value is not nil.
  637. func (cuo *ContactUpdateOne) SetNillableMarkname(s *string) *ContactUpdateOne {
  638. if s != nil {
  639. cuo.SetMarkname(*s)
  640. }
  641. return cuo
  642. }
  643. // SetHeadimg sets the "headimg" field.
  644. func (cuo *ContactUpdateOne) SetHeadimg(s string) *ContactUpdateOne {
  645. cuo.mutation.SetHeadimg(s)
  646. return cuo
  647. }
  648. // SetNillableHeadimg sets the "headimg" field if the given value is not nil.
  649. func (cuo *ContactUpdateOne) SetNillableHeadimg(s *string) *ContactUpdateOne {
  650. if s != nil {
  651. cuo.SetHeadimg(*s)
  652. }
  653. return cuo
  654. }
  655. // SetSex sets the "sex" field.
  656. func (cuo *ContactUpdateOne) SetSex(i int) *ContactUpdateOne {
  657. cuo.mutation.ResetSex()
  658. cuo.mutation.SetSex(i)
  659. return cuo
  660. }
  661. // SetNillableSex sets the "sex" field if the given value is not nil.
  662. func (cuo *ContactUpdateOne) SetNillableSex(i *int) *ContactUpdateOne {
  663. if i != nil {
  664. cuo.SetSex(*i)
  665. }
  666. return cuo
  667. }
  668. // AddSex adds i to the "sex" field.
  669. func (cuo *ContactUpdateOne) AddSex(i int) *ContactUpdateOne {
  670. cuo.mutation.AddSex(i)
  671. return cuo
  672. }
  673. // SetStarrole sets the "starrole" field.
  674. func (cuo *ContactUpdateOne) SetStarrole(s string) *ContactUpdateOne {
  675. cuo.mutation.SetStarrole(s)
  676. return cuo
  677. }
  678. // SetNillableStarrole sets the "starrole" field if the given value is not nil.
  679. func (cuo *ContactUpdateOne) SetNillableStarrole(s *string) *ContactUpdateOne {
  680. if s != nil {
  681. cuo.SetStarrole(*s)
  682. }
  683. return cuo
  684. }
  685. // SetDontseeit sets the "dontseeit" field.
  686. func (cuo *ContactUpdateOne) SetDontseeit(i int) *ContactUpdateOne {
  687. cuo.mutation.ResetDontseeit()
  688. cuo.mutation.SetDontseeit(i)
  689. return cuo
  690. }
  691. // SetNillableDontseeit sets the "dontseeit" field if the given value is not nil.
  692. func (cuo *ContactUpdateOne) SetNillableDontseeit(i *int) *ContactUpdateOne {
  693. if i != nil {
  694. cuo.SetDontseeit(*i)
  695. }
  696. return cuo
  697. }
  698. // AddDontseeit adds i to the "dontseeit" field.
  699. func (cuo *ContactUpdateOne) AddDontseeit(i int) *ContactUpdateOne {
  700. cuo.mutation.AddDontseeit(i)
  701. return cuo
  702. }
  703. // SetDontseeme sets the "dontseeme" field.
  704. func (cuo *ContactUpdateOne) SetDontseeme(i int) *ContactUpdateOne {
  705. cuo.mutation.ResetDontseeme()
  706. cuo.mutation.SetDontseeme(i)
  707. return cuo
  708. }
  709. // SetNillableDontseeme sets the "dontseeme" field if the given value is not nil.
  710. func (cuo *ContactUpdateOne) SetNillableDontseeme(i *int) *ContactUpdateOne {
  711. if i != nil {
  712. cuo.SetDontseeme(*i)
  713. }
  714. return cuo
  715. }
  716. // AddDontseeme adds i to the "dontseeme" field.
  717. func (cuo *ContactUpdateOne) AddDontseeme(i int) *ContactUpdateOne {
  718. cuo.mutation.AddDontseeme(i)
  719. return cuo
  720. }
  721. // SetLag sets the "lag" field.
  722. func (cuo *ContactUpdateOne) SetLag(s string) *ContactUpdateOne {
  723. cuo.mutation.SetLag(s)
  724. return cuo
  725. }
  726. // SetNillableLag sets the "lag" field if the given value is not nil.
  727. func (cuo *ContactUpdateOne) SetNillableLag(s *string) *ContactUpdateOne {
  728. if s != nil {
  729. cuo.SetLag(*s)
  730. }
  731. return cuo
  732. }
  733. // SetGid sets the "gid" field.
  734. func (cuo *ContactUpdateOne) SetGid(s string) *ContactUpdateOne {
  735. cuo.mutation.SetGid(s)
  736. return cuo
  737. }
  738. // SetNillableGid sets the "gid" field if the given value is not nil.
  739. func (cuo *ContactUpdateOne) SetNillableGid(s *string) *ContactUpdateOne {
  740. if s != nil {
  741. cuo.SetGid(*s)
  742. }
  743. return cuo
  744. }
  745. // SetGname sets the "gname" field.
  746. func (cuo *ContactUpdateOne) SetGname(s string) *ContactUpdateOne {
  747. cuo.mutation.SetGname(s)
  748. return cuo
  749. }
  750. // SetNillableGname sets the "gname" field if the given value is not nil.
  751. func (cuo *ContactUpdateOne) SetNillableGname(s *string) *ContactUpdateOne {
  752. if s != nil {
  753. cuo.SetGname(*s)
  754. }
  755. return cuo
  756. }
  757. // SetV3 sets the "v3" field.
  758. func (cuo *ContactUpdateOne) SetV3(s string) *ContactUpdateOne {
  759. cuo.mutation.SetV3(s)
  760. return cuo
  761. }
  762. // SetNillableV3 sets the "v3" field if the given value is not nil.
  763. func (cuo *ContactUpdateOne) SetNillableV3(s *string) *ContactUpdateOne {
  764. if s != nil {
  765. cuo.SetV3(*s)
  766. }
  767. return cuo
  768. }
  769. // AddContactRelationshipIDs adds the "contact_relationships" edge to the LabelRelationship entity by IDs.
  770. func (cuo *ContactUpdateOne) AddContactRelationshipIDs(ids ...uint64) *ContactUpdateOne {
  771. cuo.mutation.AddContactRelationshipIDs(ids...)
  772. return cuo
  773. }
  774. // AddContactRelationships adds the "contact_relationships" edges to the LabelRelationship entity.
  775. func (cuo *ContactUpdateOne) AddContactRelationships(l ...*LabelRelationship) *ContactUpdateOne {
  776. ids := make([]uint64, len(l))
  777. for i := range l {
  778. ids[i] = l[i].ID
  779. }
  780. return cuo.AddContactRelationshipIDs(ids...)
  781. }
  782. // Mutation returns the ContactMutation object of the builder.
  783. func (cuo *ContactUpdateOne) Mutation() *ContactMutation {
  784. return cuo.mutation
  785. }
  786. // ClearContactRelationships clears all "contact_relationships" edges to the LabelRelationship entity.
  787. func (cuo *ContactUpdateOne) ClearContactRelationships() *ContactUpdateOne {
  788. cuo.mutation.ClearContactRelationships()
  789. return cuo
  790. }
  791. // RemoveContactRelationshipIDs removes the "contact_relationships" edge to LabelRelationship entities by IDs.
  792. func (cuo *ContactUpdateOne) RemoveContactRelationshipIDs(ids ...uint64) *ContactUpdateOne {
  793. cuo.mutation.RemoveContactRelationshipIDs(ids...)
  794. return cuo
  795. }
  796. // RemoveContactRelationships removes "contact_relationships" edges to LabelRelationship entities.
  797. func (cuo *ContactUpdateOne) RemoveContactRelationships(l ...*LabelRelationship) *ContactUpdateOne {
  798. ids := make([]uint64, len(l))
  799. for i := range l {
  800. ids[i] = l[i].ID
  801. }
  802. return cuo.RemoveContactRelationshipIDs(ids...)
  803. }
  804. // Where appends a list predicates to the ContactUpdate builder.
  805. func (cuo *ContactUpdateOne) Where(ps ...predicate.Contact) *ContactUpdateOne {
  806. cuo.mutation.Where(ps...)
  807. return cuo
  808. }
  809. // Select allows selecting one or more fields (columns) of the returned entity.
  810. // The default is selecting all fields defined in the entity schema.
  811. func (cuo *ContactUpdateOne) Select(field string, fields ...string) *ContactUpdateOne {
  812. cuo.fields = append([]string{field}, fields...)
  813. return cuo
  814. }
  815. // Save executes the query and returns the updated Contact entity.
  816. func (cuo *ContactUpdateOne) Save(ctx context.Context) (*Contact, error) {
  817. if err := cuo.defaults(); err != nil {
  818. return nil, err
  819. }
  820. return withHooks(ctx, cuo.sqlSave, cuo.mutation, cuo.hooks)
  821. }
  822. // SaveX is like Save, but panics if an error occurs.
  823. func (cuo *ContactUpdateOne) SaveX(ctx context.Context) *Contact {
  824. node, err := cuo.Save(ctx)
  825. if err != nil {
  826. panic(err)
  827. }
  828. return node
  829. }
  830. // Exec executes the query on the entity.
  831. func (cuo *ContactUpdateOne) Exec(ctx context.Context) error {
  832. _, err := cuo.Save(ctx)
  833. return err
  834. }
  835. // ExecX is like Exec, but panics if an error occurs.
  836. func (cuo *ContactUpdateOne) ExecX(ctx context.Context) {
  837. if err := cuo.Exec(ctx); err != nil {
  838. panic(err)
  839. }
  840. }
  841. // defaults sets the default values of the builder before save.
  842. func (cuo *ContactUpdateOne) defaults() error {
  843. if _, ok := cuo.mutation.UpdatedAt(); !ok {
  844. if contact.UpdateDefaultUpdatedAt == nil {
  845. return fmt.Errorf("ent: uninitialized contact.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  846. }
  847. v := contact.UpdateDefaultUpdatedAt()
  848. cuo.mutation.SetUpdatedAt(v)
  849. }
  850. return nil
  851. }
  852. func (cuo *ContactUpdateOne) sqlSave(ctx context.Context) (_node *Contact, err error) {
  853. _spec := sqlgraph.NewUpdateSpec(contact.Table, contact.Columns, sqlgraph.NewFieldSpec(contact.FieldID, field.TypeUint64))
  854. id, ok := cuo.mutation.ID()
  855. if !ok {
  856. return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Contact.id" for update`)}
  857. }
  858. _spec.Node.ID.Value = id
  859. if fields := cuo.fields; len(fields) > 0 {
  860. _spec.Node.Columns = make([]string, 0, len(fields))
  861. _spec.Node.Columns = append(_spec.Node.Columns, contact.FieldID)
  862. for _, f := range fields {
  863. if !contact.ValidColumn(f) {
  864. return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
  865. }
  866. if f != contact.FieldID {
  867. _spec.Node.Columns = append(_spec.Node.Columns, f)
  868. }
  869. }
  870. }
  871. if ps := cuo.mutation.predicates; len(ps) > 0 {
  872. _spec.Predicate = func(selector *sql.Selector) {
  873. for i := range ps {
  874. ps[i](selector)
  875. }
  876. }
  877. }
  878. if value, ok := cuo.mutation.UpdatedAt(); ok {
  879. _spec.SetField(contact.FieldUpdatedAt, field.TypeTime, value)
  880. }
  881. if value, ok := cuo.mutation.Status(); ok {
  882. _spec.SetField(contact.FieldStatus, field.TypeUint8, value)
  883. }
  884. if value, ok := cuo.mutation.AddedStatus(); ok {
  885. _spec.AddField(contact.FieldStatus, field.TypeUint8, value)
  886. }
  887. if cuo.mutation.StatusCleared() {
  888. _spec.ClearField(contact.FieldStatus, field.TypeUint8)
  889. }
  890. if value, ok := cuo.mutation.DeletedAt(); ok {
  891. _spec.SetField(contact.FieldDeletedAt, field.TypeTime, value)
  892. }
  893. if cuo.mutation.DeletedAtCleared() {
  894. _spec.ClearField(contact.FieldDeletedAt, field.TypeTime)
  895. }
  896. if value, ok := cuo.mutation.WxWxid(); ok {
  897. _spec.SetField(contact.FieldWxWxid, field.TypeString, value)
  898. }
  899. if cuo.mutation.WxWxidCleared() {
  900. _spec.ClearField(contact.FieldWxWxid, field.TypeString)
  901. }
  902. if value, ok := cuo.mutation.GetType(); ok {
  903. _spec.SetField(contact.FieldType, field.TypeInt, value)
  904. }
  905. if value, ok := cuo.mutation.AddedType(); ok {
  906. _spec.AddField(contact.FieldType, field.TypeInt, value)
  907. }
  908. if cuo.mutation.TypeCleared() {
  909. _spec.ClearField(contact.FieldType, field.TypeInt)
  910. }
  911. if value, ok := cuo.mutation.Wxid(); ok {
  912. _spec.SetField(contact.FieldWxid, field.TypeString, value)
  913. }
  914. if value, ok := cuo.mutation.Account(); ok {
  915. _spec.SetField(contact.FieldAccount, field.TypeString, value)
  916. }
  917. if value, ok := cuo.mutation.Nickname(); ok {
  918. _spec.SetField(contact.FieldNickname, field.TypeString, value)
  919. }
  920. if value, ok := cuo.mutation.Markname(); ok {
  921. _spec.SetField(contact.FieldMarkname, field.TypeString, value)
  922. }
  923. if value, ok := cuo.mutation.Headimg(); ok {
  924. _spec.SetField(contact.FieldHeadimg, field.TypeString, value)
  925. }
  926. if value, ok := cuo.mutation.Sex(); ok {
  927. _spec.SetField(contact.FieldSex, field.TypeInt, value)
  928. }
  929. if value, ok := cuo.mutation.AddedSex(); ok {
  930. _spec.AddField(contact.FieldSex, field.TypeInt, value)
  931. }
  932. if value, ok := cuo.mutation.Starrole(); ok {
  933. _spec.SetField(contact.FieldStarrole, field.TypeString, value)
  934. }
  935. if value, ok := cuo.mutation.Dontseeit(); ok {
  936. _spec.SetField(contact.FieldDontseeit, field.TypeInt, value)
  937. }
  938. if value, ok := cuo.mutation.AddedDontseeit(); ok {
  939. _spec.AddField(contact.FieldDontseeit, field.TypeInt, value)
  940. }
  941. if value, ok := cuo.mutation.Dontseeme(); ok {
  942. _spec.SetField(contact.FieldDontseeme, field.TypeInt, value)
  943. }
  944. if value, ok := cuo.mutation.AddedDontseeme(); ok {
  945. _spec.AddField(contact.FieldDontseeme, field.TypeInt, value)
  946. }
  947. if value, ok := cuo.mutation.Lag(); ok {
  948. _spec.SetField(contact.FieldLag, field.TypeString, value)
  949. }
  950. if value, ok := cuo.mutation.Gid(); ok {
  951. _spec.SetField(contact.FieldGid, field.TypeString, value)
  952. }
  953. if value, ok := cuo.mutation.Gname(); ok {
  954. _spec.SetField(contact.FieldGname, field.TypeString, value)
  955. }
  956. if value, ok := cuo.mutation.V3(); ok {
  957. _spec.SetField(contact.FieldV3, field.TypeString, value)
  958. }
  959. if cuo.mutation.ContactRelationshipsCleared() {
  960. edge := &sqlgraph.EdgeSpec{
  961. Rel: sqlgraph.O2M,
  962. Inverse: false,
  963. Table: contact.ContactRelationshipsTable,
  964. Columns: []string{contact.ContactRelationshipsColumn},
  965. Bidi: false,
  966. Target: &sqlgraph.EdgeTarget{
  967. IDSpec: sqlgraph.NewFieldSpec(labelrelationship.FieldID, field.TypeUint64),
  968. },
  969. }
  970. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  971. }
  972. if nodes := cuo.mutation.RemovedContactRelationshipsIDs(); len(nodes) > 0 && !cuo.mutation.ContactRelationshipsCleared() {
  973. edge := &sqlgraph.EdgeSpec{
  974. Rel: sqlgraph.O2M,
  975. Inverse: false,
  976. Table: contact.ContactRelationshipsTable,
  977. Columns: []string{contact.ContactRelationshipsColumn},
  978. Bidi: false,
  979. Target: &sqlgraph.EdgeTarget{
  980. IDSpec: sqlgraph.NewFieldSpec(labelrelationship.FieldID, field.TypeUint64),
  981. },
  982. }
  983. for _, k := range nodes {
  984. edge.Target.Nodes = append(edge.Target.Nodes, k)
  985. }
  986. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  987. }
  988. if nodes := cuo.mutation.ContactRelationshipsIDs(); len(nodes) > 0 {
  989. edge := &sqlgraph.EdgeSpec{
  990. Rel: sqlgraph.O2M,
  991. Inverse: false,
  992. Table: contact.ContactRelationshipsTable,
  993. Columns: []string{contact.ContactRelationshipsColumn},
  994. Bidi: false,
  995. Target: &sqlgraph.EdgeTarget{
  996. IDSpec: sqlgraph.NewFieldSpec(labelrelationship.FieldID, field.TypeUint64),
  997. },
  998. }
  999. for _, k := range nodes {
  1000. edge.Target.Nodes = append(edge.Target.Nodes, k)
  1001. }
  1002. _spec.Edges.Add = append(_spec.Edges.Add, edge)
  1003. }
  1004. _node = &Contact{config: cuo.config}
  1005. _spec.Assign = _node.assignValues
  1006. _spec.ScanValues = _node.scanValues
  1007. if err = sqlgraph.UpdateNode(ctx, cuo.driver, _spec); err != nil {
  1008. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  1009. err = &NotFoundError{contact.Label}
  1010. } else if sqlgraph.IsConstraintError(err) {
  1011. err = &ConstraintError{msg: err.Error(), wrap: err}
  1012. }
  1013. return nil, err
  1014. }
  1015. cuo.mutation.done = true
  1016. return _node, nil
  1017. }