ent.go 17 KB

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