ent.go 17 KB

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