ent.go 17 KB

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