ent.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "reflect"
  8. "sync"
  9. "wechat-api/ent/agent"
  10. "wechat-api/ent/agentbase"
  11. "wechat-api/ent/aliyunavatar"
  12. "wechat-api/ent/batchmsg"
  13. "wechat-api/ent/category"
  14. "wechat-api/ent/chatrecords"
  15. "wechat-api/ent/chatsession"
  16. "wechat-api/ent/contact"
  17. "wechat-api/ent/employee"
  18. "wechat-api/ent/employeeconfig"
  19. "wechat-api/ent/label"
  20. "wechat-api/ent/labelrelationship"
  21. "wechat-api/ent/message"
  22. "wechat-api/ent/messagerecords"
  23. "wechat-api/ent/msg"
  24. "wechat-api/ent/server"
  25. "wechat-api/ent/sopnode"
  26. "wechat-api/ent/sopstage"
  27. "wechat-api/ent/soptask"
  28. "wechat-api/ent/token"
  29. "wechat-api/ent/tutorial"
  30. "wechat-api/ent/usagedetail"
  31. "wechat-api/ent/usagetotal"
  32. "wechat-api/ent/workexperience"
  33. "wechat-api/ent/wx"
  34. "wechat-api/ent/wxcard"
  35. "wechat-api/ent/wxcarduser"
  36. "wechat-api/ent/wxcardvisit"
  37. "entgo.io/ent"
  38. "entgo.io/ent/dialect/sql"
  39. "entgo.io/ent/dialect/sql/sqlgraph"
  40. )
  41. // ent aliases to avoid import conflicts in user's code.
  42. type (
  43. Op = ent.Op
  44. Hook = ent.Hook
  45. Value = ent.Value
  46. Query = ent.Query
  47. QueryContext = ent.QueryContext
  48. Querier = ent.Querier
  49. QuerierFunc = ent.QuerierFunc
  50. Interceptor = ent.Interceptor
  51. InterceptFunc = ent.InterceptFunc
  52. Traverser = ent.Traverser
  53. TraverseFunc = ent.TraverseFunc
  54. Policy = ent.Policy
  55. Mutator = ent.Mutator
  56. Mutation = ent.Mutation
  57. MutateFunc = ent.MutateFunc
  58. )
  59. type clientCtxKey struct{}
  60. // FromContext returns a Client stored inside a context, or nil if there isn't one.
  61. func FromContext(ctx context.Context) *Client {
  62. c, _ := ctx.Value(clientCtxKey{}).(*Client)
  63. return c
  64. }
  65. // NewContext returns a new context with the given Client attached.
  66. func NewContext(parent context.Context, c *Client) context.Context {
  67. return context.WithValue(parent, clientCtxKey{}, c)
  68. }
  69. type txCtxKey struct{}
  70. // TxFromContext returns a Tx stored inside a context, or nil if there isn't one.
  71. func TxFromContext(ctx context.Context) *Tx {
  72. tx, _ := ctx.Value(txCtxKey{}).(*Tx)
  73. return tx
  74. }
  75. // NewTxContext returns a new context with the given Tx attached.
  76. func NewTxContext(parent context.Context, tx *Tx) context.Context {
  77. return context.WithValue(parent, txCtxKey{}, tx)
  78. }
  79. // OrderFunc applies an ordering on the sql selector.
  80. // Deprecated: Use Asc/Desc functions or the package builders instead.
  81. type OrderFunc func(*sql.Selector)
  82. var (
  83. initCheck sync.Once
  84. columnCheck sql.ColumnCheck
  85. )
  86. // columnChecker checks if the column exists in the given table.
  87. func checkColumn(table, column string) error {
  88. initCheck.Do(func() {
  89. columnCheck = sql.NewColumnCheck(map[string]func(string) bool{
  90. agent.Table: agent.ValidColumn,
  91. agentbase.Table: agentbase.ValidColumn,
  92. aliyunavatar.Table: aliyunavatar.ValidColumn,
  93. batchmsg.Table: batchmsg.ValidColumn,
  94. category.Table: category.ValidColumn,
  95. chatrecords.Table: chatrecords.ValidColumn,
  96. chatsession.Table: chatsession.ValidColumn,
  97. contact.Table: contact.ValidColumn,
  98. employee.Table: employee.ValidColumn,
  99. employeeconfig.Table: employeeconfig.ValidColumn,
  100. label.Table: label.ValidColumn,
  101. labelrelationship.Table: labelrelationship.ValidColumn,
  102. message.Table: message.ValidColumn,
  103. messagerecords.Table: messagerecords.ValidColumn,
  104. msg.Table: msg.ValidColumn,
  105. server.Table: server.ValidColumn,
  106. sopnode.Table: sopnode.ValidColumn,
  107. sopstage.Table: sopstage.ValidColumn,
  108. soptask.Table: soptask.ValidColumn,
  109. token.Table: token.ValidColumn,
  110. tutorial.Table: tutorial.ValidColumn,
  111. usagedetail.Table: usagedetail.ValidColumn,
  112. usagetotal.Table: usagetotal.ValidColumn,
  113. workexperience.Table: workexperience.ValidColumn,
  114. wx.Table: wx.ValidColumn,
  115. wxcard.Table: wxcard.ValidColumn,
  116. wxcarduser.Table: wxcarduser.ValidColumn,
  117. wxcardvisit.Table: wxcardvisit.ValidColumn,
  118. })
  119. })
  120. return columnCheck(table, column)
  121. }
  122. // Asc applies the given fields in ASC order.
  123. func Asc(fields ...string) func(*sql.Selector) {
  124. return func(s *sql.Selector) {
  125. for _, f := range fields {
  126. if err := checkColumn(s.TableName(), f); err != nil {
  127. s.AddError(&ValidationError{Name: f, err: fmt.Errorf("ent: %w", err)})
  128. }
  129. s.OrderBy(sql.Asc(s.C(f)))
  130. }
  131. }
  132. }
  133. // Desc applies the given fields in DESC order.
  134. func Desc(fields ...string) func(*sql.Selector) {
  135. return func(s *sql.Selector) {
  136. for _, f := range fields {
  137. if err := checkColumn(s.TableName(), f); err != nil {
  138. s.AddError(&ValidationError{Name: f, err: fmt.Errorf("ent: %w", err)})
  139. }
  140. s.OrderBy(sql.Desc(s.C(f)))
  141. }
  142. }
  143. }
  144. // AggregateFunc applies an aggregation step on the group-by traversal/selector.
  145. type AggregateFunc func(*sql.Selector) string
  146. // As is a pseudo aggregation function for renaming another other functions with custom names. For example:
  147. //
  148. // GroupBy(field1, field2).
  149. // Aggregate(ent.As(ent.Sum(field1), "sum_field1"), (ent.As(ent.Sum(field2), "sum_field2")).
  150. // Scan(ctx, &v)
  151. func As(fn AggregateFunc, end string) AggregateFunc {
  152. return func(s *sql.Selector) string {
  153. return sql.As(fn(s), end)
  154. }
  155. }
  156. // Count applies the "count" aggregation function on each group.
  157. func Count() AggregateFunc {
  158. return func(s *sql.Selector) string {
  159. return sql.Count("*")
  160. }
  161. }
  162. // Max applies the "max" aggregation function on the given field of each group.
  163. func Max(field string) AggregateFunc {
  164. return func(s *sql.Selector) string {
  165. if err := checkColumn(s.TableName(), field); err != nil {
  166. s.AddError(&ValidationError{Name: field, err: fmt.Errorf("ent: %w", err)})
  167. return ""
  168. }
  169. return sql.Max(s.C(field))
  170. }
  171. }
  172. // Mean applies the "mean" aggregation function on the given field of each group.
  173. func Mean(field string) AggregateFunc {
  174. return func(s *sql.Selector) string {
  175. if err := checkColumn(s.TableName(), field); err != nil {
  176. s.AddError(&ValidationError{Name: field, err: fmt.Errorf("ent: %w", err)})
  177. return ""
  178. }
  179. return sql.Avg(s.C(field))
  180. }
  181. }
  182. // Min applies the "min" aggregation function on the given field of each group.
  183. func Min(field string) AggregateFunc {
  184. return func(s *sql.Selector) string {
  185. if err := checkColumn(s.TableName(), field); err != nil {
  186. s.AddError(&ValidationError{Name: field, err: fmt.Errorf("ent: %w", err)})
  187. return ""
  188. }
  189. return sql.Min(s.C(field))
  190. }
  191. }
  192. // Sum applies the "sum" aggregation function on the given field of each group.
  193. func Sum(field string) AggregateFunc {
  194. return func(s *sql.Selector) string {
  195. if err := checkColumn(s.TableName(), field); err != nil {
  196. s.AddError(&ValidationError{Name: field, err: fmt.Errorf("ent: %w", err)})
  197. return ""
  198. }
  199. return sql.Sum(s.C(field))
  200. }
  201. }
  202. // ValidationError returns when validating a field or edge fails.
  203. type ValidationError struct {
  204. Name string // Field or edge name.
  205. err error
  206. }
  207. // Error implements the error interface.
  208. func (e *ValidationError) Error() string {
  209. return e.err.Error()
  210. }
  211. // Unwrap implements the errors.Wrapper interface.
  212. func (e *ValidationError) Unwrap() error {
  213. return e.err
  214. }
  215. // IsValidationError returns a boolean indicating whether the error is a validation error.
  216. func IsValidationError(err error) bool {
  217. if err == nil {
  218. return false
  219. }
  220. var e *ValidationError
  221. return errors.As(err, &e)
  222. }
  223. // NotFoundError returns when trying to fetch a specific entity and it was not found in the database.
  224. type NotFoundError struct {
  225. label string
  226. }
  227. // Error implements the error interface.
  228. func (e *NotFoundError) Error() string {
  229. return "ent: " + e.label + " not found"
  230. }
  231. // IsNotFound returns a boolean indicating whether the error is a not found error.
  232. func IsNotFound(err error) bool {
  233. if err == nil {
  234. return false
  235. }
  236. var e *NotFoundError
  237. return errors.As(err, &e)
  238. }
  239. // MaskNotFound masks not found error.
  240. func MaskNotFound(err error) error {
  241. if IsNotFound(err) {
  242. return nil
  243. }
  244. return err
  245. }
  246. // NotSingularError returns when trying to fetch a singular entity and more then one was found in the database.
  247. type NotSingularError struct {
  248. label string
  249. }
  250. // Error implements the error interface.
  251. func (e *NotSingularError) Error() string {
  252. return "ent: " + e.label + " not singular"
  253. }
  254. // IsNotSingular returns a boolean indicating whether the error is a not singular error.
  255. func IsNotSingular(err error) bool {
  256. if err == nil {
  257. return false
  258. }
  259. var e *NotSingularError
  260. return errors.As(err, &e)
  261. }
  262. // NotLoadedError returns when trying to get a node that was not loaded by the query.
  263. type NotLoadedError struct {
  264. edge string
  265. }
  266. // Error implements the error interface.
  267. func (e *NotLoadedError) Error() string {
  268. return "ent: " + e.edge + " edge was not loaded"
  269. }
  270. // IsNotLoaded returns a boolean indicating whether the error is a not loaded error.
  271. func IsNotLoaded(err error) bool {
  272. if err == nil {
  273. return false
  274. }
  275. var e *NotLoadedError
  276. return errors.As(err, &e)
  277. }
  278. // ConstraintError returns when trying to create/update one or more entities and
  279. // one or more of their constraints failed. For example, violation of edge or
  280. // field uniqueness.
  281. type ConstraintError struct {
  282. msg string
  283. wrap error
  284. }
  285. // Error implements the error interface.
  286. func (e ConstraintError) Error() string {
  287. return "ent: constraint failed: " + e.msg
  288. }
  289. // Unwrap implements the errors.Wrapper interface.
  290. func (e *ConstraintError) Unwrap() error {
  291. return e.wrap
  292. }
  293. // IsConstraintError returns a boolean indicating whether the error is a constraint failure.
  294. func IsConstraintError(err error) bool {
  295. if err == nil {
  296. return false
  297. }
  298. var e *ConstraintError
  299. return errors.As(err, &e)
  300. }
  301. // selector embedded by the different Select/GroupBy builders.
  302. type selector struct {
  303. label string
  304. flds *[]string
  305. fns []AggregateFunc
  306. scan func(context.Context, any) error
  307. }
  308. // ScanX is like Scan, but panics if an error occurs.
  309. func (s *selector) ScanX(ctx context.Context, v any) {
  310. if err := s.scan(ctx, v); err != nil {
  311. panic(err)
  312. }
  313. }
  314. // Strings returns list of strings from a selector. It is only allowed when selecting one field.
  315. func (s *selector) Strings(ctx context.Context) ([]string, error) {
  316. if len(*s.flds) > 1 {
  317. return nil, errors.New("ent: Strings is not achievable when selecting more than 1 field")
  318. }
  319. var v []string
  320. if err := s.scan(ctx, &v); err != nil {
  321. return nil, err
  322. }
  323. return v, nil
  324. }
  325. // StringsX is like Strings, but panics if an error occurs.
  326. func (s *selector) StringsX(ctx context.Context) []string {
  327. v, err := s.Strings(ctx)
  328. if err != nil {
  329. panic(err)
  330. }
  331. return v
  332. }
  333. // String returns a single string from a selector. It is only allowed when selecting one field.
  334. func (s *selector) String(ctx context.Context) (_ string, err error) {
  335. var v []string
  336. if v, err = s.Strings(ctx); err != nil {
  337. return
  338. }
  339. switch len(v) {
  340. case 1:
  341. return v[0], nil
  342. case 0:
  343. err = &NotFoundError{s.label}
  344. default:
  345. err = fmt.Errorf("ent: Strings returned %d results when one was expected", len(v))
  346. }
  347. return
  348. }
  349. // StringX is like String, but panics if an error occurs.
  350. func (s *selector) StringX(ctx context.Context) string {
  351. v, err := s.String(ctx)
  352. if err != nil {
  353. panic(err)
  354. }
  355. return v
  356. }
  357. // Ints returns list of ints from a selector. It is only allowed when selecting one field.
  358. func (s *selector) Ints(ctx context.Context) ([]int, error) {
  359. if len(*s.flds) > 1 {
  360. return nil, errors.New("ent: Ints is not achievable when selecting more than 1 field")
  361. }
  362. var v []int
  363. if err := s.scan(ctx, &v); err != nil {
  364. return nil, err
  365. }
  366. return v, nil
  367. }
  368. // IntsX is like Ints, but panics if an error occurs.
  369. func (s *selector) IntsX(ctx context.Context) []int {
  370. v, err := s.Ints(ctx)
  371. if err != nil {
  372. panic(err)
  373. }
  374. return v
  375. }
  376. // Int returns a single int from a selector. It is only allowed when selecting one field.
  377. func (s *selector) Int(ctx context.Context) (_ int, err error) {
  378. var v []int
  379. if v, err = s.Ints(ctx); err != nil {
  380. return
  381. }
  382. switch len(v) {
  383. case 1:
  384. return v[0], nil
  385. case 0:
  386. err = &NotFoundError{s.label}
  387. default:
  388. err = fmt.Errorf("ent: Ints returned %d results when one was expected", len(v))
  389. }
  390. return
  391. }
  392. // IntX is like Int, but panics if an error occurs.
  393. func (s *selector) IntX(ctx context.Context) int {
  394. v, err := s.Int(ctx)
  395. if err != nil {
  396. panic(err)
  397. }
  398. return v
  399. }
  400. // Float64s returns list of float64s from a selector. It is only allowed when selecting one field.
  401. func (s *selector) Float64s(ctx context.Context) ([]float64, error) {
  402. if len(*s.flds) > 1 {
  403. return nil, errors.New("ent: Float64s is not achievable when selecting more than 1 field")
  404. }
  405. var v []float64
  406. if err := s.scan(ctx, &v); err != nil {
  407. return nil, err
  408. }
  409. return v, nil
  410. }
  411. // Float64sX is like Float64s, but panics if an error occurs.
  412. func (s *selector) Float64sX(ctx context.Context) []float64 {
  413. v, err := s.Float64s(ctx)
  414. if err != nil {
  415. panic(err)
  416. }
  417. return v
  418. }
  419. // Float64 returns a single float64 from a selector. It is only allowed when selecting one field.
  420. func (s *selector) Float64(ctx context.Context) (_ float64, err error) {
  421. var v []float64
  422. if v, err = s.Float64s(ctx); err != nil {
  423. return
  424. }
  425. switch len(v) {
  426. case 1:
  427. return v[0], nil
  428. case 0:
  429. err = &NotFoundError{s.label}
  430. default:
  431. err = fmt.Errorf("ent: Float64s returned %d results when one was expected", len(v))
  432. }
  433. return
  434. }
  435. // Float64X is like Float64, but panics if an error occurs.
  436. func (s *selector) Float64X(ctx context.Context) float64 {
  437. v, err := s.Float64(ctx)
  438. if err != nil {
  439. panic(err)
  440. }
  441. return v
  442. }
  443. // Bools returns list of bools from a selector. It is only allowed when selecting one field.
  444. func (s *selector) Bools(ctx context.Context) ([]bool, error) {
  445. if len(*s.flds) > 1 {
  446. return nil, errors.New("ent: Bools is not achievable when selecting more than 1 field")
  447. }
  448. var v []bool
  449. if err := s.scan(ctx, &v); err != nil {
  450. return nil, err
  451. }
  452. return v, nil
  453. }
  454. // BoolsX is like Bools, but panics if an error occurs.
  455. func (s *selector) BoolsX(ctx context.Context) []bool {
  456. v, err := s.Bools(ctx)
  457. if err != nil {
  458. panic(err)
  459. }
  460. return v
  461. }
  462. // Bool returns a single bool from a selector. It is only allowed when selecting one field.
  463. func (s *selector) Bool(ctx context.Context) (_ bool, err error) {
  464. var v []bool
  465. if v, err = s.Bools(ctx); err != nil {
  466. return
  467. }
  468. switch len(v) {
  469. case 1:
  470. return v[0], nil
  471. case 0:
  472. err = &NotFoundError{s.label}
  473. default:
  474. err = fmt.Errorf("ent: Bools returned %d results when one was expected", len(v))
  475. }
  476. return
  477. }
  478. // BoolX is like Bool, but panics if an error occurs.
  479. func (s *selector) BoolX(ctx context.Context) bool {
  480. v, err := s.Bool(ctx)
  481. if err != nil {
  482. panic(err)
  483. }
  484. return v
  485. }
  486. // withHooks invokes the builder operation with the given hooks, if any.
  487. func withHooks[V Value, M any, PM interface {
  488. *M
  489. Mutation
  490. }](ctx context.Context, exec func(context.Context) (V, error), mutation PM, hooks []Hook) (value V, err error) {
  491. if len(hooks) == 0 {
  492. return exec(ctx)
  493. }
  494. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  495. mutationT, ok := any(m).(PM)
  496. if !ok {
  497. return nil, fmt.Errorf("unexpected mutation type %T", m)
  498. }
  499. // Set the mutation to the builder.
  500. *mutation = *mutationT
  501. return exec(ctx)
  502. })
  503. for i := len(hooks) - 1; i >= 0; i-- {
  504. if hooks[i] == nil {
  505. return value, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
  506. }
  507. mut = hooks[i](mut)
  508. }
  509. v, err := mut.Mutate(ctx, mutation)
  510. if err != nil {
  511. return value, err
  512. }
  513. nv, ok := v.(V)
  514. if !ok {
  515. return value, fmt.Errorf("unexpected node type %T returned from %T", v, mutation)
  516. }
  517. return nv, nil
  518. }
  519. // setContextOp returns a new context with the given QueryContext attached (including its op) in case it does not exist.
  520. func setContextOp(ctx context.Context, qc *QueryContext, op string) context.Context {
  521. if ent.QueryFromContext(ctx) == nil {
  522. qc.Op = op
  523. ctx = ent.NewQueryContext(ctx, qc)
  524. }
  525. return ctx
  526. }
  527. func querierAll[V Value, Q interface {
  528. sqlAll(context.Context, ...queryHook) (V, error)
  529. }]() Querier {
  530. return QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
  531. query, ok := q.(Q)
  532. if !ok {
  533. return nil, fmt.Errorf("unexpected query type %T", q)
  534. }
  535. return query.sqlAll(ctx)
  536. })
  537. }
  538. func querierCount[Q interface {
  539. sqlCount(context.Context) (int, error)
  540. }]() Querier {
  541. return QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
  542. query, ok := q.(Q)
  543. if !ok {
  544. return nil, fmt.Errorf("unexpected query type %T", q)
  545. }
  546. return query.sqlCount(ctx)
  547. })
  548. }
  549. func withInterceptors[V Value](ctx context.Context, q Query, qr Querier, inters []Interceptor) (v V, err error) {
  550. for i := len(inters) - 1; i >= 0; i-- {
  551. qr = inters[i].Intercept(qr)
  552. }
  553. rv, err := qr.Query(ctx, q)
  554. if err != nil {
  555. return v, err
  556. }
  557. vt, ok := rv.(V)
  558. if !ok {
  559. return v, fmt.Errorf("unexpected type %T returned from %T. expected type: %T", vt, q, v)
  560. }
  561. return vt, nil
  562. }
  563. func scanWithInterceptors[Q1 ent.Query, Q2 interface {
  564. sqlScan(context.Context, Q1, any) error
  565. }](ctx context.Context, rootQuery Q1, selectOrGroup Q2, inters []Interceptor, v any) error {
  566. rv := reflect.ValueOf(v)
  567. var qr Querier = QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
  568. query, ok := q.(Q1)
  569. if !ok {
  570. return nil, fmt.Errorf("unexpected query type %T", q)
  571. }
  572. if err := selectOrGroup.sqlScan(ctx, query, v); err != nil {
  573. return nil, err
  574. }
  575. if k := rv.Kind(); k == reflect.Pointer && rv.Elem().CanInterface() {
  576. return rv.Elem().Interface(), nil
  577. }
  578. return v, nil
  579. })
  580. for i := len(inters) - 1; i >= 0; i-- {
  581. qr = inters[i].Intercept(qr)
  582. }
  583. vv, err := qr.Query(ctx, rootQuery)
  584. if err != nil {
  585. return err
  586. }
  587. switch rv2 := reflect.ValueOf(vv); {
  588. case rv.IsNil(), rv2.IsNil(), rv.Kind() != reflect.Pointer:
  589. case rv.Type() == rv2.Type():
  590. rv.Elem().Set(rv2.Elem())
  591. case rv.Elem().Type() == rv2.Type():
  592. rv.Elem().Set(rv2)
  593. }
  594. return nil
  595. }
  596. // queryHook describes an internal hook for the different sqlAll methods.
  597. type queryHook func(context.Context, *sqlgraph.QuerySpec)