agent_update.go 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871
  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/agent"
  9. "wechat-api/ent/predicate"
  10. "wechat-api/ent/wx"
  11. "entgo.io/ent/dialect/sql"
  12. "entgo.io/ent/dialect/sql/sqlgraph"
  13. "entgo.io/ent/schema/field"
  14. )
  15. // AgentUpdate is the builder for updating Agent entities.
  16. type AgentUpdate struct {
  17. config
  18. hooks []Hook
  19. mutation *AgentMutation
  20. }
  21. // Where appends a list predicates to the AgentUpdate builder.
  22. func (au *AgentUpdate) Where(ps ...predicate.Agent) *AgentUpdate {
  23. au.mutation.Where(ps...)
  24. return au
  25. }
  26. // SetUpdatedAt sets the "updated_at" field.
  27. func (au *AgentUpdate) SetUpdatedAt(t time.Time) *AgentUpdate {
  28. au.mutation.SetUpdatedAt(t)
  29. return au
  30. }
  31. // SetDeletedAt sets the "deleted_at" field.
  32. func (au *AgentUpdate) SetDeletedAt(t time.Time) *AgentUpdate {
  33. au.mutation.SetDeletedAt(t)
  34. return au
  35. }
  36. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  37. func (au *AgentUpdate) SetNillableDeletedAt(t *time.Time) *AgentUpdate {
  38. if t != nil {
  39. au.SetDeletedAt(*t)
  40. }
  41. return au
  42. }
  43. // ClearDeletedAt clears the value of the "deleted_at" field.
  44. func (au *AgentUpdate) ClearDeletedAt() *AgentUpdate {
  45. au.mutation.ClearDeletedAt()
  46. return au
  47. }
  48. // SetName sets the "name" field.
  49. func (au *AgentUpdate) SetName(s string) *AgentUpdate {
  50. au.mutation.SetName(s)
  51. return au
  52. }
  53. // SetNillableName sets the "name" field if the given value is not nil.
  54. func (au *AgentUpdate) SetNillableName(s *string) *AgentUpdate {
  55. if s != nil {
  56. au.SetName(*s)
  57. }
  58. return au
  59. }
  60. // SetRole sets the "role" field.
  61. func (au *AgentUpdate) SetRole(s string) *AgentUpdate {
  62. au.mutation.SetRole(s)
  63. return au
  64. }
  65. // SetNillableRole sets the "role" field if the given value is not nil.
  66. func (au *AgentUpdate) SetNillableRole(s *string) *AgentUpdate {
  67. if s != nil {
  68. au.SetRole(*s)
  69. }
  70. return au
  71. }
  72. // SetStatus sets the "status" field.
  73. func (au *AgentUpdate) SetStatus(i int) *AgentUpdate {
  74. au.mutation.ResetStatus()
  75. au.mutation.SetStatus(i)
  76. return au
  77. }
  78. // SetNillableStatus sets the "status" field if the given value is not nil.
  79. func (au *AgentUpdate) SetNillableStatus(i *int) *AgentUpdate {
  80. if i != nil {
  81. au.SetStatus(*i)
  82. }
  83. return au
  84. }
  85. // AddStatus adds i to the "status" field.
  86. func (au *AgentUpdate) AddStatus(i int) *AgentUpdate {
  87. au.mutation.AddStatus(i)
  88. return au
  89. }
  90. // ClearStatus clears the value of the "status" field.
  91. func (au *AgentUpdate) ClearStatus() *AgentUpdate {
  92. au.mutation.ClearStatus()
  93. return au
  94. }
  95. // SetBackground sets the "background" field.
  96. func (au *AgentUpdate) SetBackground(s string) *AgentUpdate {
  97. au.mutation.SetBackground(s)
  98. return au
  99. }
  100. // SetNillableBackground sets the "background" field if the given value is not nil.
  101. func (au *AgentUpdate) SetNillableBackground(s *string) *AgentUpdate {
  102. if s != nil {
  103. au.SetBackground(*s)
  104. }
  105. return au
  106. }
  107. // ClearBackground clears the value of the "background" field.
  108. func (au *AgentUpdate) ClearBackground() *AgentUpdate {
  109. au.mutation.ClearBackground()
  110. return au
  111. }
  112. // SetExamples sets the "examples" field.
  113. func (au *AgentUpdate) SetExamples(s string) *AgentUpdate {
  114. au.mutation.SetExamples(s)
  115. return au
  116. }
  117. // SetNillableExamples sets the "examples" field if the given value is not nil.
  118. func (au *AgentUpdate) SetNillableExamples(s *string) *AgentUpdate {
  119. if s != nil {
  120. au.SetExamples(*s)
  121. }
  122. return au
  123. }
  124. // ClearExamples clears the value of the "examples" field.
  125. func (au *AgentUpdate) ClearExamples() *AgentUpdate {
  126. au.mutation.ClearExamples()
  127. return au
  128. }
  129. // SetOrganizationID sets the "organization_id" field.
  130. func (au *AgentUpdate) SetOrganizationID(u uint64) *AgentUpdate {
  131. au.mutation.ResetOrganizationID()
  132. au.mutation.SetOrganizationID(u)
  133. return au
  134. }
  135. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  136. func (au *AgentUpdate) SetNillableOrganizationID(u *uint64) *AgentUpdate {
  137. if u != nil {
  138. au.SetOrganizationID(*u)
  139. }
  140. return au
  141. }
  142. // AddOrganizationID adds u to the "organization_id" field.
  143. func (au *AgentUpdate) AddOrganizationID(u int64) *AgentUpdate {
  144. au.mutation.AddOrganizationID(u)
  145. return au
  146. }
  147. // SetDatasetID sets the "dataset_id" field.
  148. func (au *AgentUpdate) SetDatasetID(s string) *AgentUpdate {
  149. au.mutation.SetDatasetID(s)
  150. return au
  151. }
  152. // SetNillableDatasetID sets the "dataset_id" field if the given value is not nil.
  153. func (au *AgentUpdate) SetNillableDatasetID(s *string) *AgentUpdate {
  154. if s != nil {
  155. au.SetDatasetID(*s)
  156. }
  157. return au
  158. }
  159. // SetCollectionID sets the "collection_id" field.
  160. func (au *AgentUpdate) SetCollectionID(s string) *AgentUpdate {
  161. au.mutation.SetCollectionID(s)
  162. return au
  163. }
  164. // SetNillableCollectionID sets the "collection_id" field if the given value is not nil.
  165. func (au *AgentUpdate) SetNillableCollectionID(s *string) *AgentUpdate {
  166. if s != nil {
  167. au.SetCollectionID(*s)
  168. }
  169. return au
  170. }
  171. // AddWxAgentIDs adds the "wx_agent" edge to the Wx entity by IDs.
  172. func (au *AgentUpdate) AddWxAgentIDs(ids ...uint64) *AgentUpdate {
  173. au.mutation.AddWxAgentIDs(ids...)
  174. return au
  175. }
  176. // AddWxAgent adds the "wx_agent" edges to the Wx entity.
  177. func (au *AgentUpdate) AddWxAgent(w ...*Wx) *AgentUpdate {
  178. ids := make([]uint64, len(w))
  179. for i := range w {
  180. ids[i] = w[i].ID
  181. }
  182. return au.AddWxAgentIDs(ids...)
  183. }
  184. // Mutation returns the AgentMutation object of the builder.
  185. func (au *AgentUpdate) Mutation() *AgentMutation {
  186. return au.mutation
  187. }
  188. // ClearWxAgent clears all "wx_agent" edges to the Wx entity.
  189. func (au *AgentUpdate) ClearWxAgent() *AgentUpdate {
  190. au.mutation.ClearWxAgent()
  191. return au
  192. }
  193. // RemoveWxAgentIDs removes the "wx_agent" edge to Wx entities by IDs.
  194. func (au *AgentUpdate) RemoveWxAgentIDs(ids ...uint64) *AgentUpdate {
  195. au.mutation.RemoveWxAgentIDs(ids...)
  196. return au
  197. }
  198. // RemoveWxAgent removes "wx_agent" edges to Wx entities.
  199. func (au *AgentUpdate) RemoveWxAgent(w ...*Wx) *AgentUpdate {
  200. ids := make([]uint64, len(w))
  201. for i := range w {
  202. ids[i] = w[i].ID
  203. }
  204. return au.RemoveWxAgentIDs(ids...)
  205. }
  206. // Save executes the query and returns the number of nodes affected by the update operation.
  207. func (au *AgentUpdate) Save(ctx context.Context) (int, error) {
  208. if err := au.defaults(); err != nil {
  209. return 0, err
  210. }
  211. return withHooks(ctx, au.sqlSave, au.mutation, au.hooks)
  212. }
  213. // SaveX is like Save, but panics if an error occurs.
  214. func (au *AgentUpdate) SaveX(ctx context.Context) int {
  215. affected, err := au.Save(ctx)
  216. if err != nil {
  217. panic(err)
  218. }
  219. return affected
  220. }
  221. // Exec executes the query.
  222. func (au *AgentUpdate) Exec(ctx context.Context) error {
  223. _, err := au.Save(ctx)
  224. return err
  225. }
  226. // ExecX is like Exec, but panics if an error occurs.
  227. func (au *AgentUpdate) ExecX(ctx context.Context) {
  228. if err := au.Exec(ctx); err != nil {
  229. panic(err)
  230. }
  231. }
  232. // defaults sets the default values of the builder before save.
  233. func (au *AgentUpdate) defaults() error {
  234. if _, ok := au.mutation.UpdatedAt(); !ok {
  235. if agent.UpdateDefaultUpdatedAt == nil {
  236. return fmt.Errorf("ent: uninitialized agent.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  237. }
  238. v := agent.UpdateDefaultUpdatedAt()
  239. au.mutation.SetUpdatedAt(v)
  240. }
  241. return nil
  242. }
  243. // check runs all checks and user-defined validators on the builder.
  244. func (au *AgentUpdate) check() error {
  245. if v, ok := au.mutation.Name(); ok {
  246. if err := agent.NameValidator(v); err != nil {
  247. return &ValidationError{Name: "name", err: fmt.Errorf(`ent: validator failed for field "Agent.name": %w`, err)}
  248. }
  249. }
  250. if v, ok := au.mutation.Status(); ok {
  251. if err := agent.StatusValidator(v); err != nil {
  252. return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "Agent.status": %w`, err)}
  253. }
  254. }
  255. if v, ok := au.mutation.OrganizationID(); ok {
  256. if err := agent.OrganizationIDValidator(v); err != nil {
  257. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "Agent.organization_id": %w`, err)}
  258. }
  259. }
  260. if v, ok := au.mutation.DatasetID(); ok {
  261. if err := agent.DatasetIDValidator(v); err != nil {
  262. return &ValidationError{Name: "dataset_id", err: fmt.Errorf(`ent: validator failed for field "Agent.dataset_id": %w`, err)}
  263. }
  264. }
  265. if v, ok := au.mutation.CollectionID(); ok {
  266. if err := agent.CollectionIDValidator(v); err != nil {
  267. return &ValidationError{Name: "collection_id", err: fmt.Errorf(`ent: validator failed for field "Agent.collection_id": %w`, err)}
  268. }
  269. }
  270. return nil
  271. }
  272. func (au *AgentUpdate) sqlSave(ctx context.Context) (n int, err error) {
  273. if err := au.check(); err != nil {
  274. return n, err
  275. }
  276. _spec := sqlgraph.NewUpdateSpec(agent.Table, agent.Columns, sqlgraph.NewFieldSpec(agent.FieldID, field.TypeUint64))
  277. if ps := au.mutation.predicates; len(ps) > 0 {
  278. _spec.Predicate = func(selector *sql.Selector) {
  279. for i := range ps {
  280. ps[i](selector)
  281. }
  282. }
  283. }
  284. if value, ok := au.mutation.UpdatedAt(); ok {
  285. _spec.SetField(agent.FieldUpdatedAt, field.TypeTime, value)
  286. }
  287. if value, ok := au.mutation.DeletedAt(); ok {
  288. _spec.SetField(agent.FieldDeletedAt, field.TypeTime, value)
  289. }
  290. if au.mutation.DeletedAtCleared() {
  291. _spec.ClearField(agent.FieldDeletedAt, field.TypeTime)
  292. }
  293. if value, ok := au.mutation.Name(); ok {
  294. _spec.SetField(agent.FieldName, field.TypeString, value)
  295. }
  296. if value, ok := au.mutation.Role(); ok {
  297. _spec.SetField(agent.FieldRole, field.TypeString, value)
  298. }
  299. if value, ok := au.mutation.Status(); ok {
  300. _spec.SetField(agent.FieldStatus, field.TypeInt, value)
  301. }
  302. if value, ok := au.mutation.AddedStatus(); ok {
  303. _spec.AddField(agent.FieldStatus, field.TypeInt, value)
  304. }
  305. if au.mutation.StatusCleared() {
  306. _spec.ClearField(agent.FieldStatus, field.TypeInt)
  307. }
  308. if value, ok := au.mutation.Background(); ok {
  309. _spec.SetField(agent.FieldBackground, field.TypeString, value)
  310. }
  311. if au.mutation.BackgroundCleared() {
  312. _spec.ClearField(agent.FieldBackground, field.TypeString)
  313. }
  314. if value, ok := au.mutation.Examples(); ok {
  315. _spec.SetField(agent.FieldExamples, field.TypeString, value)
  316. }
  317. if au.mutation.ExamplesCleared() {
  318. _spec.ClearField(agent.FieldExamples, field.TypeString)
  319. }
  320. if value, ok := au.mutation.OrganizationID(); ok {
  321. _spec.SetField(agent.FieldOrganizationID, field.TypeUint64, value)
  322. }
  323. if value, ok := au.mutation.AddedOrganizationID(); ok {
  324. _spec.AddField(agent.FieldOrganizationID, field.TypeUint64, value)
  325. }
  326. if value, ok := au.mutation.DatasetID(); ok {
  327. _spec.SetField(agent.FieldDatasetID, field.TypeString, value)
  328. }
  329. if value, ok := au.mutation.CollectionID(); ok {
  330. _spec.SetField(agent.FieldCollectionID, field.TypeString, value)
  331. }
  332. if au.mutation.WxAgentCleared() {
  333. edge := &sqlgraph.EdgeSpec{
  334. Rel: sqlgraph.O2M,
  335. Inverse: false,
  336. Table: agent.WxAgentTable,
  337. Columns: []string{agent.WxAgentColumn},
  338. Bidi: false,
  339. Target: &sqlgraph.EdgeTarget{
  340. IDSpec: sqlgraph.NewFieldSpec(wx.FieldID, field.TypeUint64),
  341. },
  342. }
  343. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  344. }
  345. if nodes := au.mutation.RemovedWxAgentIDs(); len(nodes) > 0 && !au.mutation.WxAgentCleared() {
  346. edge := &sqlgraph.EdgeSpec{
  347. Rel: sqlgraph.O2M,
  348. Inverse: false,
  349. Table: agent.WxAgentTable,
  350. Columns: []string{agent.WxAgentColumn},
  351. Bidi: false,
  352. Target: &sqlgraph.EdgeTarget{
  353. IDSpec: sqlgraph.NewFieldSpec(wx.FieldID, field.TypeUint64),
  354. },
  355. }
  356. for _, k := range nodes {
  357. edge.Target.Nodes = append(edge.Target.Nodes, k)
  358. }
  359. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  360. }
  361. if nodes := au.mutation.WxAgentIDs(); len(nodes) > 0 {
  362. edge := &sqlgraph.EdgeSpec{
  363. Rel: sqlgraph.O2M,
  364. Inverse: false,
  365. Table: agent.WxAgentTable,
  366. Columns: []string{agent.WxAgentColumn},
  367. Bidi: false,
  368. Target: &sqlgraph.EdgeTarget{
  369. IDSpec: sqlgraph.NewFieldSpec(wx.FieldID, field.TypeUint64),
  370. },
  371. }
  372. for _, k := range nodes {
  373. edge.Target.Nodes = append(edge.Target.Nodes, k)
  374. }
  375. _spec.Edges.Add = append(_spec.Edges.Add, edge)
  376. }
  377. if n, err = sqlgraph.UpdateNodes(ctx, au.driver, _spec); err != nil {
  378. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  379. err = &NotFoundError{agent.Label}
  380. } else if sqlgraph.IsConstraintError(err) {
  381. err = &ConstraintError{msg: err.Error(), wrap: err}
  382. }
  383. return 0, err
  384. }
  385. au.mutation.done = true
  386. return n, nil
  387. }
  388. // AgentUpdateOne is the builder for updating a single Agent entity.
  389. type AgentUpdateOne struct {
  390. config
  391. fields []string
  392. hooks []Hook
  393. mutation *AgentMutation
  394. }
  395. // SetUpdatedAt sets the "updated_at" field.
  396. func (auo *AgentUpdateOne) SetUpdatedAt(t time.Time) *AgentUpdateOne {
  397. auo.mutation.SetUpdatedAt(t)
  398. return auo
  399. }
  400. // SetDeletedAt sets the "deleted_at" field.
  401. func (auo *AgentUpdateOne) SetDeletedAt(t time.Time) *AgentUpdateOne {
  402. auo.mutation.SetDeletedAt(t)
  403. return auo
  404. }
  405. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  406. func (auo *AgentUpdateOne) SetNillableDeletedAt(t *time.Time) *AgentUpdateOne {
  407. if t != nil {
  408. auo.SetDeletedAt(*t)
  409. }
  410. return auo
  411. }
  412. // ClearDeletedAt clears the value of the "deleted_at" field.
  413. func (auo *AgentUpdateOne) ClearDeletedAt() *AgentUpdateOne {
  414. auo.mutation.ClearDeletedAt()
  415. return auo
  416. }
  417. // SetName sets the "name" field.
  418. func (auo *AgentUpdateOne) SetName(s string) *AgentUpdateOne {
  419. auo.mutation.SetName(s)
  420. return auo
  421. }
  422. // SetNillableName sets the "name" field if the given value is not nil.
  423. func (auo *AgentUpdateOne) SetNillableName(s *string) *AgentUpdateOne {
  424. if s != nil {
  425. auo.SetName(*s)
  426. }
  427. return auo
  428. }
  429. // SetRole sets the "role" field.
  430. func (auo *AgentUpdateOne) SetRole(s string) *AgentUpdateOne {
  431. auo.mutation.SetRole(s)
  432. return auo
  433. }
  434. // SetNillableRole sets the "role" field if the given value is not nil.
  435. func (auo *AgentUpdateOne) SetNillableRole(s *string) *AgentUpdateOne {
  436. if s != nil {
  437. auo.SetRole(*s)
  438. }
  439. return auo
  440. }
  441. // SetStatus sets the "status" field.
  442. func (auo *AgentUpdateOne) SetStatus(i int) *AgentUpdateOne {
  443. auo.mutation.ResetStatus()
  444. auo.mutation.SetStatus(i)
  445. return auo
  446. }
  447. // SetNillableStatus sets the "status" field if the given value is not nil.
  448. func (auo *AgentUpdateOne) SetNillableStatus(i *int) *AgentUpdateOne {
  449. if i != nil {
  450. auo.SetStatus(*i)
  451. }
  452. return auo
  453. }
  454. // AddStatus adds i to the "status" field.
  455. func (auo *AgentUpdateOne) AddStatus(i int) *AgentUpdateOne {
  456. auo.mutation.AddStatus(i)
  457. return auo
  458. }
  459. // ClearStatus clears the value of the "status" field.
  460. func (auo *AgentUpdateOne) ClearStatus() *AgentUpdateOne {
  461. auo.mutation.ClearStatus()
  462. return auo
  463. }
  464. // SetBackground sets the "background" field.
  465. func (auo *AgentUpdateOne) SetBackground(s string) *AgentUpdateOne {
  466. auo.mutation.SetBackground(s)
  467. return auo
  468. }
  469. // SetNillableBackground sets the "background" field if the given value is not nil.
  470. func (auo *AgentUpdateOne) SetNillableBackground(s *string) *AgentUpdateOne {
  471. if s != nil {
  472. auo.SetBackground(*s)
  473. }
  474. return auo
  475. }
  476. // ClearBackground clears the value of the "background" field.
  477. func (auo *AgentUpdateOne) ClearBackground() *AgentUpdateOne {
  478. auo.mutation.ClearBackground()
  479. return auo
  480. }
  481. // SetExamples sets the "examples" field.
  482. func (auo *AgentUpdateOne) SetExamples(s string) *AgentUpdateOne {
  483. auo.mutation.SetExamples(s)
  484. return auo
  485. }
  486. // SetNillableExamples sets the "examples" field if the given value is not nil.
  487. func (auo *AgentUpdateOne) SetNillableExamples(s *string) *AgentUpdateOne {
  488. if s != nil {
  489. auo.SetExamples(*s)
  490. }
  491. return auo
  492. }
  493. // ClearExamples clears the value of the "examples" field.
  494. func (auo *AgentUpdateOne) ClearExamples() *AgentUpdateOne {
  495. auo.mutation.ClearExamples()
  496. return auo
  497. }
  498. // SetOrganizationID sets the "organization_id" field.
  499. func (auo *AgentUpdateOne) SetOrganizationID(u uint64) *AgentUpdateOne {
  500. auo.mutation.ResetOrganizationID()
  501. auo.mutation.SetOrganizationID(u)
  502. return auo
  503. }
  504. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  505. func (auo *AgentUpdateOne) SetNillableOrganizationID(u *uint64) *AgentUpdateOne {
  506. if u != nil {
  507. auo.SetOrganizationID(*u)
  508. }
  509. return auo
  510. }
  511. // AddOrganizationID adds u to the "organization_id" field.
  512. func (auo *AgentUpdateOne) AddOrganizationID(u int64) *AgentUpdateOne {
  513. auo.mutation.AddOrganizationID(u)
  514. return auo
  515. }
  516. // SetDatasetID sets the "dataset_id" field.
  517. func (auo *AgentUpdateOne) SetDatasetID(s string) *AgentUpdateOne {
  518. auo.mutation.SetDatasetID(s)
  519. return auo
  520. }
  521. // SetNillableDatasetID sets the "dataset_id" field if the given value is not nil.
  522. func (auo *AgentUpdateOne) SetNillableDatasetID(s *string) *AgentUpdateOne {
  523. if s != nil {
  524. auo.SetDatasetID(*s)
  525. }
  526. return auo
  527. }
  528. // SetCollectionID sets the "collection_id" field.
  529. func (auo *AgentUpdateOne) SetCollectionID(s string) *AgentUpdateOne {
  530. auo.mutation.SetCollectionID(s)
  531. return auo
  532. }
  533. // SetNillableCollectionID sets the "collection_id" field if the given value is not nil.
  534. func (auo *AgentUpdateOne) SetNillableCollectionID(s *string) *AgentUpdateOne {
  535. if s != nil {
  536. auo.SetCollectionID(*s)
  537. }
  538. return auo
  539. }
  540. // AddWxAgentIDs adds the "wx_agent" edge to the Wx entity by IDs.
  541. func (auo *AgentUpdateOne) AddWxAgentIDs(ids ...uint64) *AgentUpdateOne {
  542. auo.mutation.AddWxAgentIDs(ids...)
  543. return auo
  544. }
  545. // AddWxAgent adds the "wx_agent" edges to the Wx entity.
  546. func (auo *AgentUpdateOne) AddWxAgent(w ...*Wx) *AgentUpdateOne {
  547. ids := make([]uint64, len(w))
  548. for i := range w {
  549. ids[i] = w[i].ID
  550. }
  551. return auo.AddWxAgentIDs(ids...)
  552. }
  553. // Mutation returns the AgentMutation object of the builder.
  554. func (auo *AgentUpdateOne) Mutation() *AgentMutation {
  555. return auo.mutation
  556. }
  557. // ClearWxAgent clears all "wx_agent" edges to the Wx entity.
  558. func (auo *AgentUpdateOne) ClearWxAgent() *AgentUpdateOne {
  559. auo.mutation.ClearWxAgent()
  560. return auo
  561. }
  562. // RemoveWxAgentIDs removes the "wx_agent" edge to Wx entities by IDs.
  563. func (auo *AgentUpdateOne) RemoveWxAgentIDs(ids ...uint64) *AgentUpdateOne {
  564. auo.mutation.RemoveWxAgentIDs(ids...)
  565. return auo
  566. }
  567. // RemoveWxAgent removes "wx_agent" edges to Wx entities.
  568. func (auo *AgentUpdateOne) RemoveWxAgent(w ...*Wx) *AgentUpdateOne {
  569. ids := make([]uint64, len(w))
  570. for i := range w {
  571. ids[i] = w[i].ID
  572. }
  573. return auo.RemoveWxAgentIDs(ids...)
  574. }
  575. // Where appends a list predicates to the AgentUpdate builder.
  576. func (auo *AgentUpdateOne) Where(ps ...predicate.Agent) *AgentUpdateOne {
  577. auo.mutation.Where(ps...)
  578. return auo
  579. }
  580. // Select allows selecting one or more fields (columns) of the returned entity.
  581. // The default is selecting all fields defined in the entity schema.
  582. func (auo *AgentUpdateOne) Select(field string, fields ...string) *AgentUpdateOne {
  583. auo.fields = append([]string{field}, fields...)
  584. return auo
  585. }
  586. // Save executes the query and returns the updated Agent entity.
  587. func (auo *AgentUpdateOne) Save(ctx context.Context) (*Agent, error) {
  588. if err := auo.defaults(); err != nil {
  589. return nil, err
  590. }
  591. return withHooks(ctx, auo.sqlSave, auo.mutation, auo.hooks)
  592. }
  593. // SaveX is like Save, but panics if an error occurs.
  594. func (auo *AgentUpdateOne) SaveX(ctx context.Context) *Agent {
  595. node, err := auo.Save(ctx)
  596. if err != nil {
  597. panic(err)
  598. }
  599. return node
  600. }
  601. // Exec executes the query on the entity.
  602. func (auo *AgentUpdateOne) Exec(ctx context.Context) error {
  603. _, err := auo.Save(ctx)
  604. return err
  605. }
  606. // ExecX is like Exec, but panics if an error occurs.
  607. func (auo *AgentUpdateOne) ExecX(ctx context.Context) {
  608. if err := auo.Exec(ctx); err != nil {
  609. panic(err)
  610. }
  611. }
  612. // defaults sets the default values of the builder before save.
  613. func (auo *AgentUpdateOne) defaults() error {
  614. if _, ok := auo.mutation.UpdatedAt(); !ok {
  615. if agent.UpdateDefaultUpdatedAt == nil {
  616. return fmt.Errorf("ent: uninitialized agent.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  617. }
  618. v := agent.UpdateDefaultUpdatedAt()
  619. auo.mutation.SetUpdatedAt(v)
  620. }
  621. return nil
  622. }
  623. // check runs all checks and user-defined validators on the builder.
  624. func (auo *AgentUpdateOne) check() error {
  625. if v, ok := auo.mutation.Name(); ok {
  626. if err := agent.NameValidator(v); err != nil {
  627. return &ValidationError{Name: "name", err: fmt.Errorf(`ent: validator failed for field "Agent.name": %w`, err)}
  628. }
  629. }
  630. if v, ok := auo.mutation.Status(); ok {
  631. if err := agent.StatusValidator(v); err != nil {
  632. return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "Agent.status": %w`, err)}
  633. }
  634. }
  635. if v, ok := auo.mutation.OrganizationID(); ok {
  636. if err := agent.OrganizationIDValidator(v); err != nil {
  637. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "Agent.organization_id": %w`, err)}
  638. }
  639. }
  640. if v, ok := auo.mutation.DatasetID(); ok {
  641. if err := agent.DatasetIDValidator(v); err != nil {
  642. return &ValidationError{Name: "dataset_id", err: fmt.Errorf(`ent: validator failed for field "Agent.dataset_id": %w`, err)}
  643. }
  644. }
  645. if v, ok := auo.mutation.CollectionID(); ok {
  646. if err := agent.CollectionIDValidator(v); err != nil {
  647. return &ValidationError{Name: "collection_id", err: fmt.Errorf(`ent: validator failed for field "Agent.collection_id": %w`, err)}
  648. }
  649. }
  650. return nil
  651. }
  652. func (auo *AgentUpdateOne) sqlSave(ctx context.Context) (_node *Agent, err error) {
  653. if err := auo.check(); err != nil {
  654. return _node, err
  655. }
  656. _spec := sqlgraph.NewUpdateSpec(agent.Table, agent.Columns, sqlgraph.NewFieldSpec(agent.FieldID, field.TypeUint64))
  657. id, ok := auo.mutation.ID()
  658. if !ok {
  659. return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Agent.id" for update`)}
  660. }
  661. _spec.Node.ID.Value = id
  662. if fields := auo.fields; len(fields) > 0 {
  663. _spec.Node.Columns = make([]string, 0, len(fields))
  664. _spec.Node.Columns = append(_spec.Node.Columns, agent.FieldID)
  665. for _, f := range fields {
  666. if !agent.ValidColumn(f) {
  667. return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
  668. }
  669. if f != agent.FieldID {
  670. _spec.Node.Columns = append(_spec.Node.Columns, f)
  671. }
  672. }
  673. }
  674. if ps := auo.mutation.predicates; len(ps) > 0 {
  675. _spec.Predicate = func(selector *sql.Selector) {
  676. for i := range ps {
  677. ps[i](selector)
  678. }
  679. }
  680. }
  681. if value, ok := auo.mutation.UpdatedAt(); ok {
  682. _spec.SetField(agent.FieldUpdatedAt, field.TypeTime, value)
  683. }
  684. if value, ok := auo.mutation.DeletedAt(); ok {
  685. _spec.SetField(agent.FieldDeletedAt, field.TypeTime, value)
  686. }
  687. if auo.mutation.DeletedAtCleared() {
  688. _spec.ClearField(agent.FieldDeletedAt, field.TypeTime)
  689. }
  690. if value, ok := auo.mutation.Name(); ok {
  691. _spec.SetField(agent.FieldName, field.TypeString, value)
  692. }
  693. if value, ok := auo.mutation.Role(); ok {
  694. _spec.SetField(agent.FieldRole, field.TypeString, value)
  695. }
  696. if value, ok := auo.mutation.Status(); ok {
  697. _spec.SetField(agent.FieldStatus, field.TypeInt, value)
  698. }
  699. if value, ok := auo.mutation.AddedStatus(); ok {
  700. _spec.AddField(agent.FieldStatus, field.TypeInt, value)
  701. }
  702. if auo.mutation.StatusCleared() {
  703. _spec.ClearField(agent.FieldStatus, field.TypeInt)
  704. }
  705. if value, ok := auo.mutation.Background(); ok {
  706. _spec.SetField(agent.FieldBackground, field.TypeString, value)
  707. }
  708. if auo.mutation.BackgroundCleared() {
  709. _spec.ClearField(agent.FieldBackground, field.TypeString)
  710. }
  711. if value, ok := auo.mutation.Examples(); ok {
  712. _spec.SetField(agent.FieldExamples, field.TypeString, value)
  713. }
  714. if auo.mutation.ExamplesCleared() {
  715. _spec.ClearField(agent.FieldExamples, field.TypeString)
  716. }
  717. if value, ok := auo.mutation.OrganizationID(); ok {
  718. _spec.SetField(agent.FieldOrganizationID, field.TypeUint64, value)
  719. }
  720. if value, ok := auo.mutation.AddedOrganizationID(); ok {
  721. _spec.AddField(agent.FieldOrganizationID, field.TypeUint64, value)
  722. }
  723. if value, ok := auo.mutation.DatasetID(); ok {
  724. _spec.SetField(agent.FieldDatasetID, field.TypeString, value)
  725. }
  726. if value, ok := auo.mutation.CollectionID(); ok {
  727. _spec.SetField(agent.FieldCollectionID, field.TypeString, value)
  728. }
  729. if auo.mutation.WxAgentCleared() {
  730. edge := &sqlgraph.EdgeSpec{
  731. Rel: sqlgraph.O2M,
  732. Inverse: false,
  733. Table: agent.WxAgentTable,
  734. Columns: []string{agent.WxAgentColumn},
  735. Bidi: false,
  736. Target: &sqlgraph.EdgeTarget{
  737. IDSpec: sqlgraph.NewFieldSpec(wx.FieldID, field.TypeUint64),
  738. },
  739. }
  740. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  741. }
  742. if nodes := auo.mutation.RemovedWxAgentIDs(); len(nodes) > 0 && !auo.mutation.WxAgentCleared() {
  743. edge := &sqlgraph.EdgeSpec{
  744. Rel: sqlgraph.O2M,
  745. Inverse: false,
  746. Table: agent.WxAgentTable,
  747. Columns: []string{agent.WxAgentColumn},
  748. Bidi: false,
  749. Target: &sqlgraph.EdgeTarget{
  750. IDSpec: sqlgraph.NewFieldSpec(wx.FieldID, field.TypeUint64),
  751. },
  752. }
  753. for _, k := range nodes {
  754. edge.Target.Nodes = append(edge.Target.Nodes, k)
  755. }
  756. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  757. }
  758. if nodes := auo.mutation.WxAgentIDs(); len(nodes) > 0 {
  759. edge := &sqlgraph.EdgeSpec{
  760. Rel: sqlgraph.O2M,
  761. Inverse: false,
  762. Table: agent.WxAgentTable,
  763. Columns: []string{agent.WxAgentColumn},
  764. Bidi: false,
  765. Target: &sqlgraph.EdgeTarget{
  766. IDSpec: sqlgraph.NewFieldSpec(wx.FieldID, field.TypeUint64),
  767. },
  768. }
  769. for _, k := range nodes {
  770. edge.Target.Nodes = append(edge.Target.Nodes, k)
  771. }
  772. _spec.Edges.Add = append(_spec.Edges.Add, edge)
  773. }
  774. _node = &Agent{config: auo.config}
  775. _spec.Assign = _node.assignValues
  776. _spec.ScanValues = _node.scanValues
  777. if err = sqlgraph.UpdateNode(ctx, auo.driver, _spec); err != nil {
  778. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  779. err = &NotFoundError{agent.Label}
  780. } else if sqlgraph.IsConstraintError(err) {
  781. err = &ConstraintError{msg: err.Error(), wrap: err}
  782. }
  783. return nil, err
  784. }
  785. auo.mutation.done = true
  786. return _node, nil
  787. }