labelrelationship_update.go 21 KB

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