intercept.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. // Code generated by ent, DO NOT EDIT.
  2. package intercept
  3. import (
  4. "context"
  5. "fmt"
  6. "wechat-api/ent"
  7. "wechat-api/ent/batchmsg"
  8. "wechat-api/ent/contact"
  9. "wechat-api/ent/label"
  10. "wechat-api/ent/labelrelationship"
  11. "wechat-api/ent/message"
  12. "wechat-api/ent/messagerecords"
  13. "wechat-api/ent/predicate"
  14. "wechat-api/ent/server"
  15. "wechat-api/ent/sopnode"
  16. "wechat-api/ent/sopstage"
  17. "wechat-api/ent/soptask"
  18. "wechat-api/ent/wx"
  19. "entgo.io/ent/dialect/sql"
  20. )
  21. // The Query interface represents an operation that queries a graph.
  22. // By using this interface, users can write generic code that manipulates
  23. // query builders of different types.
  24. type Query interface {
  25. // Type returns the string representation of the query type.
  26. Type() string
  27. // Limit the number of records to be returned by this query.
  28. Limit(int)
  29. // Offset to start from.
  30. Offset(int)
  31. // Unique configures the query builder to filter duplicate records.
  32. Unique(bool)
  33. // Order specifies how the records should be ordered.
  34. Order(...func(*sql.Selector))
  35. // WhereP appends storage-level predicates to the query builder. Using this method, users
  36. // can use type-assertion to append predicates that do not depend on any generated package.
  37. WhereP(...func(*sql.Selector))
  38. }
  39. // The Func type is an adapter that allows ordinary functions to be used as interceptors.
  40. // Unlike traversal functions, interceptors are skipped during graph traversals. Note that the
  41. // implementation of Func is different from the one defined in entgo.io/ent.InterceptFunc.
  42. type Func func(context.Context, Query) error
  43. // Intercept calls f(ctx, q) and then applied the next Querier.
  44. func (f Func) Intercept(next ent.Querier) ent.Querier {
  45. return ent.QuerierFunc(func(ctx context.Context, q ent.Query) (ent.Value, error) {
  46. query, err := NewQuery(q)
  47. if err != nil {
  48. return nil, err
  49. }
  50. if err := f(ctx, query); err != nil {
  51. return nil, err
  52. }
  53. return next.Query(ctx, q)
  54. })
  55. }
  56. // The TraverseFunc type is an adapter to allow the use of ordinary function as Traverser.
  57. // If f is a function with the appropriate signature, TraverseFunc(f) is a Traverser that calls f.
  58. type TraverseFunc func(context.Context, Query) error
  59. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  60. func (f TraverseFunc) Intercept(next ent.Querier) ent.Querier {
  61. return next
  62. }
  63. // Traverse calls f(ctx, q).
  64. func (f TraverseFunc) Traverse(ctx context.Context, q ent.Query) error {
  65. query, err := NewQuery(q)
  66. if err != nil {
  67. return err
  68. }
  69. return f(ctx, query)
  70. }
  71. // The BatchMsgFunc type is an adapter to allow the use of ordinary function as a Querier.
  72. type BatchMsgFunc func(context.Context, *ent.BatchMsgQuery) (ent.Value, error)
  73. // Query calls f(ctx, q).
  74. func (f BatchMsgFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  75. if q, ok := q.(*ent.BatchMsgQuery); ok {
  76. return f(ctx, q)
  77. }
  78. return nil, fmt.Errorf("unexpected query type %T. expect *ent.BatchMsgQuery", q)
  79. }
  80. // The TraverseBatchMsg type is an adapter to allow the use of ordinary function as Traverser.
  81. type TraverseBatchMsg func(context.Context, *ent.BatchMsgQuery) error
  82. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  83. func (f TraverseBatchMsg) Intercept(next ent.Querier) ent.Querier {
  84. return next
  85. }
  86. // Traverse calls f(ctx, q).
  87. func (f TraverseBatchMsg) Traverse(ctx context.Context, q ent.Query) error {
  88. if q, ok := q.(*ent.BatchMsgQuery); ok {
  89. return f(ctx, q)
  90. }
  91. return fmt.Errorf("unexpected query type %T. expect *ent.BatchMsgQuery", q)
  92. }
  93. // The ContactFunc type is an adapter to allow the use of ordinary function as a Querier.
  94. type ContactFunc func(context.Context, *ent.ContactQuery) (ent.Value, error)
  95. // Query calls f(ctx, q).
  96. func (f ContactFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  97. if q, ok := q.(*ent.ContactQuery); ok {
  98. return f(ctx, q)
  99. }
  100. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ContactQuery", q)
  101. }
  102. // The TraverseContact type is an adapter to allow the use of ordinary function as Traverser.
  103. type TraverseContact func(context.Context, *ent.ContactQuery) error
  104. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  105. func (f TraverseContact) Intercept(next ent.Querier) ent.Querier {
  106. return next
  107. }
  108. // Traverse calls f(ctx, q).
  109. func (f TraverseContact) Traverse(ctx context.Context, q ent.Query) error {
  110. if q, ok := q.(*ent.ContactQuery); ok {
  111. return f(ctx, q)
  112. }
  113. return fmt.Errorf("unexpected query type %T. expect *ent.ContactQuery", q)
  114. }
  115. // The LabelFunc type is an adapter to allow the use of ordinary function as a Querier.
  116. type LabelFunc func(context.Context, *ent.LabelQuery) (ent.Value, error)
  117. // Query calls f(ctx, q).
  118. func (f LabelFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  119. if q, ok := q.(*ent.LabelQuery); ok {
  120. return f(ctx, q)
  121. }
  122. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelQuery", q)
  123. }
  124. // The TraverseLabel type is an adapter to allow the use of ordinary function as Traverser.
  125. type TraverseLabel func(context.Context, *ent.LabelQuery) error
  126. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  127. func (f TraverseLabel) Intercept(next ent.Querier) ent.Querier {
  128. return next
  129. }
  130. // Traverse calls f(ctx, q).
  131. func (f TraverseLabel) Traverse(ctx context.Context, q ent.Query) error {
  132. if q, ok := q.(*ent.LabelQuery); ok {
  133. return f(ctx, q)
  134. }
  135. return fmt.Errorf("unexpected query type %T. expect *ent.LabelQuery", q)
  136. }
  137. // The LabelRelationshipFunc type is an adapter to allow the use of ordinary function as a Querier.
  138. type LabelRelationshipFunc func(context.Context, *ent.LabelRelationshipQuery) (ent.Value, error)
  139. // Query calls f(ctx, q).
  140. func (f LabelRelationshipFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  141. if q, ok := q.(*ent.LabelRelationshipQuery); ok {
  142. return f(ctx, q)
  143. }
  144. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelRelationshipQuery", q)
  145. }
  146. // The TraverseLabelRelationship type is an adapter to allow the use of ordinary function as Traverser.
  147. type TraverseLabelRelationship func(context.Context, *ent.LabelRelationshipQuery) error
  148. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  149. func (f TraverseLabelRelationship) Intercept(next ent.Querier) ent.Querier {
  150. return next
  151. }
  152. // Traverse calls f(ctx, q).
  153. func (f TraverseLabelRelationship) Traverse(ctx context.Context, q ent.Query) error {
  154. if q, ok := q.(*ent.LabelRelationshipQuery); ok {
  155. return f(ctx, q)
  156. }
  157. return fmt.Errorf("unexpected query type %T. expect *ent.LabelRelationshipQuery", q)
  158. }
  159. // The MessageFunc type is an adapter to allow the use of ordinary function as a Querier.
  160. type MessageFunc func(context.Context, *ent.MessageQuery) (ent.Value, error)
  161. // Query calls f(ctx, q).
  162. func (f MessageFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  163. if q, ok := q.(*ent.MessageQuery); ok {
  164. return f(ctx, q)
  165. }
  166. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MessageQuery", q)
  167. }
  168. // The TraverseMessage type is an adapter to allow the use of ordinary function as Traverser.
  169. type TraverseMessage func(context.Context, *ent.MessageQuery) error
  170. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  171. func (f TraverseMessage) Intercept(next ent.Querier) ent.Querier {
  172. return next
  173. }
  174. // Traverse calls f(ctx, q).
  175. func (f TraverseMessage) Traverse(ctx context.Context, q ent.Query) error {
  176. if q, ok := q.(*ent.MessageQuery); ok {
  177. return f(ctx, q)
  178. }
  179. return fmt.Errorf("unexpected query type %T. expect *ent.MessageQuery", q)
  180. }
  181. // The MessageRecordsFunc type is an adapter to allow the use of ordinary function as a Querier.
  182. type MessageRecordsFunc func(context.Context, *ent.MessageRecordsQuery) (ent.Value, error)
  183. // Query calls f(ctx, q).
  184. func (f MessageRecordsFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  185. if q, ok := q.(*ent.MessageRecordsQuery); ok {
  186. return f(ctx, q)
  187. }
  188. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MessageRecordsQuery", q)
  189. }
  190. // The TraverseMessageRecords type is an adapter to allow the use of ordinary function as Traverser.
  191. type TraverseMessageRecords func(context.Context, *ent.MessageRecordsQuery) error
  192. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  193. func (f TraverseMessageRecords) Intercept(next ent.Querier) ent.Querier {
  194. return next
  195. }
  196. // Traverse calls f(ctx, q).
  197. func (f TraverseMessageRecords) Traverse(ctx context.Context, q ent.Query) error {
  198. if q, ok := q.(*ent.MessageRecordsQuery); ok {
  199. return f(ctx, q)
  200. }
  201. return fmt.Errorf("unexpected query type %T. expect *ent.MessageRecordsQuery", q)
  202. }
  203. // The ServerFunc type is an adapter to allow the use of ordinary function as a Querier.
  204. type ServerFunc func(context.Context, *ent.ServerQuery) (ent.Value, error)
  205. // Query calls f(ctx, q).
  206. func (f ServerFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  207. if q, ok := q.(*ent.ServerQuery); ok {
  208. return f(ctx, q)
  209. }
  210. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ServerQuery", q)
  211. }
  212. // The TraverseServer type is an adapter to allow the use of ordinary function as Traverser.
  213. type TraverseServer func(context.Context, *ent.ServerQuery) error
  214. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  215. func (f TraverseServer) Intercept(next ent.Querier) ent.Querier {
  216. return next
  217. }
  218. // Traverse calls f(ctx, q).
  219. func (f TraverseServer) Traverse(ctx context.Context, q ent.Query) error {
  220. if q, ok := q.(*ent.ServerQuery); ok {
  221. return f(ctx, q)
  222. }
  223. return fmt.Errorf("unexpected query type %T. expect *ent.ServerQuery", q)
  224. }
  225. // The SopNodeFunc type is an adapter to allow the use of ordinary function as a Querier.
  226. type SopNodeFunc func(context.Context, *ent.SopNodeQuery) (ent.Value, error)
  227. // Query calls f(ctx, q).
  228. func (f SopNodeFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  229. if q, ok := q.(*ent.SopNodeQuery); ok {
  230. return f(ctx, q)
  231. }
  232. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopNodeQuery", q)
  233. }
  234. // The TraverseSopNode type is an adapter to allow the use of ordinary function as Traverser.
  235. type TraverseSopNode func(context.Context, *ent.SopNodeQuery) error
  236. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  237. func (f TraverseSopNode) Intercept(next ent.Querier) ent.Querier {
  238. return next
  239. }
  240. // Traverse calls f(ctx, q).
  241. func (f TraverseSopNode) Traverse(ctx context.Context, q ent.Query) error {
  242. if q, ok := q.(*ent.SopNodeQuery); ok {
  243. return f(ctx, q)
  244. }
  245. return fmt.Errorf("unexpected query type %T. expect *ent.SopNodeQuery", q)
  246. }
  247. // The SopStageFunc type is an adapter to allow the use of ordinary function as a Querier.
  248. type SopStageFunc func(context.Context, *ent.SopStageQuery) (ent.Value, error)
  249. // Query calls f(ctx, q).
  250. func (f SopStageFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  251. if q, ok := q.(*ent.SopStageQuery); ok {
  252. return f(ctx, q)
  253. }
  254. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopStageQuery", q)
  255. }
  256. // The TraverseSopStage type is an adapter to allow the use of ordinary function as Traverser.
  257. type TraverseSopStage func(context.Context, *ent.SopStageQuery) error
  258. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  259. func (f TraverseSopStage) Intercept(next ent.Querier) ent.Querier {
  260. return next
  261. }
  262. // Traverse calls f(ctx, q).
  263. func (f TraverseSopStage) Traverse(ctx context.Context, q ent.Query) error {
  264. if q, ok := q.(*ent.SopStageQuery); ok {
  265. return f(ctx, q)
  266. }
  267. return fmt.Errorf("unexpected query type %T. expect *ent.SopStageQuery", q)
  268. }
  269. // The SopTaskFunc type is an adapter to allow the use of ordinary function as a Querier.
  270. type SopTaskFunc func(context.Context, *ent.SopTaskQuery) (ent.Value, error)
  271. // Query calls f(ctx, q).
  272. func (f SopTaskFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  273. if q, ok := q.(*ent.SopTaskQuery); ok {
  274. return f(ctx, q)
  275. }
  276. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopTaskQuery", q)
  277. }
  278. // The TraverseSopTask type is an adapter to allow the use of ordinary function as Traverser.
  279. type TraverseSopTask func(context.Context, *ent.SopTaskQuery) error
  280. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  281. func (f TraverseSopTask) Intercept(next ent.Querier) ent.Querier {
  282. return next
  283. }
  284. // Traverse calls f(ctx, q).
  285. func (f TraverseSopTask) Traverse(ctx context.Context, q ent.Query) error {
  286. if q, ok := q.(*ent.SopTaskQuery); ok {
  287. return f(ctx, q)
  288. }
  289. return fmt.Errorf("unexpected query type %T. expect *ent.SopTaskQuery", q)
  290. }
  291. // The WxFunc type is an adapter to allow the use of ordinary function as a Querier.
  292. type WxFunc func(context.Context, *ent.WxQuery) (ent.Value, error)
  293. // Query calls f(ctx, q).
  294. func (f WxFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  295. if q, ok := q.(*ent.WxQuery); ok {
  296. return f(ctx, q)
  297. }
  298. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxQuery", q)
  299. }
  300. // The TraverseWx type is an adapter to allow the use of ordinary function as Traverser.
  301. type TraverseWx func(context.Context, *ent.WxQuery) error
  302. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  303. func (f TraverseWx) Intercept(next ent.Querier) ent.Querier {
  304. return next
  305. }
  306. // Traverse calls f(ctx, q).
  307. func (f TraverseWx) Traverse(ctx context.Context, q ent.Query) error {
  308. if q, ok := q.(*ent.WxQuery); ok {
  309. return f(ctx, q)
  310. }
  311. return fmt.Errorf("unexpected query type %T. expect *ent.WxQuery", q)
  312. }
  313. // NewQuery returns the generic Query interface for the given typed query.
  314. func NewQuery(q ent.Query) (Query, error) {
  315. switch q := q.(type) {
  316. case *ent.BatchMsgQuery:
  317. return &query[*ent.BatchMsgQuery, predicate.BatchMsg, batchmsg.OrderOption]{typ: ent.TypeBatchMsg, tq: q}, nil
  318. case *ent.ContactQuery:
  319. return &query[*ent.ContactQuery, predicate.Contact, contact.OrderOption]{typ: ent.TypeContact, tq: q}, nil
  320. case *ent.LabelQuery:
  321. return &query[*ent.LabelQuery, predicate.Label, label.OrderOption]{typ: ent.TypeLabel, tq: q}, nil
  322. case *ent.LabelRelationshipQuery:
  323. return &query[*ent.LabelRelationshipQuery, predicate.LabelRelationship, labelrelationship.OrderOption]{typ: ent.TypeLabelRelationship, tq: q}, nil
  324. case *ent.MessageQuery:
  325. return &query[*ent.MessageQuery, predicate.Message, message.OrderOption]{typ: ent.TypeMessage, tq: q}, nil
  326. case *ent.MessageRecordsQuery:
  327. return &query[*ent.MessageRecordsQuery, predicate.MessageRecords, messagerecords.OrderOption]{typ: ent.TypeMessageRecords, tq: q}, nil
  328. case *ent.ServerQuery:
  329. return &query[*ent.ServerQuery, predicate.Server, server.OrderOption]{typ: ent.TypeServer, tq: q}, nil
  330. case *ent.SopNodeQuery:
  331. return &query[*ent.SopNodeQuery, predicate.SopNode, sopnode.OrderOption]{typ: ent.TypeSopNode, tq: q}, nil
  332. case *ent.SopStageQuery:
  333. return &query[*ent.SopStageQuery, predicate.SopStage, sopstage.OrderOption]{typ: ent.TypeSopStage, tq: q}, nil
  334. case *ent.SopTaskQuery:
  335. return &query[*ent.SopTaskQuery, predicate.SopTask, soptask.OrderOption]{typ: ent.TypeSopTask, tq: q}, nil
  336. case *ent.WxQuery:
  337. return &query[*ent.WxQuery, predicate.Wx, wx.OrderOption]{typ: ent.TypeWx, tq: q}, nil
  338. default:
  339. return nil, fmt.Errorf("unknown query type %T", q)
  340. }
  341. }
  342. type query[T any, P ~func(*sql.Selector), R ~func(*sql.Selector)] struct {
  343. typ string
  344. tq interface {
  345. Limit(int) T
  346. Offset(int) T
  347. Unique(bool) T
  348. Order(...R) T
  349. Where(...P) T
  350. }
  351. }
  352. func (q query[T, P, R]) Type() string {
  353. return q.typ
  354. }
  355. func (q query[T, P, R]) Limit(limit int) {
  356. q.tq.Limit(limit)
  357. }
  358. func (q query[T, P, R]) Offset(offset int) {
  359. q.tq.Offset(offset)
  360. }
  361. func (q query[T, P, R]) Unique(unique bool) {
  362. q.tq.Unique(unique)
  363. }
  364. func (q query[T, P, R]) Order(orders ...func(*sql.Selector)) {
  365. rs := make([]R, len(orders))
  366. for i := range orders {
  367. rs[i] = orders[i]
  368. }
  369. q.tq.Order(rs...)
  370. }
  371. func (q query[T, P, R]) WhereP(ps ...func(*sql.Selector)) {
  372. p := make([]P, len(ps))
  373. for i := range ps {
  374. p[i] = ps[i]
  375. }
  376. q.tq.Where(p...)
  377. }