intercept.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  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/agent"
  8. "wechat-api/ent/batchmsg"
  9. "wechat-api/ent/contact"
  10. "wechat-api/ent/employee"
  11. "wechat-api/ent/label"
  12. "wechat-api/ent/labelrelationship"
  13. "wechat-api/ent/message"
  14. "wechat-api/ent/messagerecords"
  15. "wechat-api/ent/msg"
  16. "wechat-api/ent/predicate"
  17. "wechat-api/ent/server"
  18. "wechat-api/ent/sopnode"
  19. "wechat-api/ent/sopstage"
  20. "wechat-api/ent/soptask"
  21. "wechat-api/ent/tutorial"
  22. "wechat-api/ent/workexperience"
  23. "wechat-api/ent/wx"
  24. "entgo.io/ent/dialect/sql"
  25. )
  26. // The Query interface represents an operation that queries a graph.
  27. // By using this interface, users can write generic code that manipulates
  28. // query builders of different types.
  29. type Query interface {
  30. // Type returns the string representation of the query type.
  31. Type() string
  32. // Limit the number of records to be returned by this query.
  33. Limit(int)
  34. // Offset to start from.
  35. Offset(int)
  36. // Unique configures the query builder to filter duplicate records.
  37. Unique(bool)
  38. // Order specifies how the records should be ordered.
  39. Order(...func(*sql.Selector))
  40. // WhereP appends storage-level predicates to the query builder. Using this method, users
  41. // can use type-assertion to append predicates that do not depend on any generated package.
  42. WhereP(...func(*sql.Selector))
  43. }
  44. // The Func type is an adapter that allows ordinary functions to be used as interceptors.
  45. // Unlike traversal functions, interceptors are skipped during graph traversals. Note that the
  46. // implementation of Func is different from the one defined in entgo.io/ent.InterceptFunc.
  47. type Func func(context.Context, Query) error
  48. // Intercept calls f(ctx, q) and then applied the next Querier.
  49. func (f Func) Intercept(next ent.Querier) ent.Querier {
  50. return ent.QuerierFunc(func(ctx context.Context, q ent.Query) (ent.Value, error) {
  51. query, err := NewQuery(q)
  52. if err != nil {
  53. return nil, err
  54. }
  55. if err := f(ctx, query); err != nil {
  56. return nil, err
  57. }
  58. return next.Query(ctx, q)
  59. })
  60. }
  61. // The TraverseFunc type is an adapter to allow the use of ordinary function as Traverser.
  62. // If f is a function with the appropriate signature, TraverseFunc(f) is a Traverser that calls f.
  63. type TraverseFunc func(context.Context, Query) error
  64. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  65. func (f TraverseFunc) Intercept(next ent.Querier) ent.Querier {
  66. return next
  67. }
  68. // Traverse calls f(ctx, q).
  69. func (f TraverseFunc) Traverse(ctx context.Context, q ent.Query) error {
  70. query, err := NewQuery(q)
  71. if err != nil {
  72. return err
  73. }
  74. return f(ctx, query)
  75. }
  76. // The AgentFunc type is an adapter to allow the use of ordinary function as a Querier.
  77. type AgentFunc func(context.Context, *ent.AgentQuery) (ent.Value, error)
  78. // Query calls f(ctx, q).
  79. func (f AgentFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  80. if q, ok := q.(*ent.AgentQuery); ok {
  81. return f(ctx, q)
  82. }
  83. return nil, fmt.Errorf("unexpected query type %T. expect *ent.AgentQuery", q)
  84. }
  85. // The TraverseAgent type is an adapter to allow the use of ordinary function as Traverser.
  86. type TraverseAgent func(context.Context, *ent.AgentQuery) error
  87. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  88. func (f TraverseAgent) Intercept(next ent.Querier) ent.Querier {
  89. return next
  90. }
  91. // Traverse calls f(ctx, q).
  92. func (f TraverseAgent) Traverse(ctx context.Context, q ent.Query) error {
  93. if q, ok := q.(*ent.AgentQuery); ok {
  94. return f(ctx, q)
  95. }
  96. return fmt.Errorf("unexpected query type %T. expect *ent.AgentQuery", q)
  97. }
  98. // The BatchMsgFunc type is an adapter to allow the use of ordinary function as a Querier.
  99. type BatchMsgFunc func(context.Context, *ent.BatchMsgQuery) (ent.Value, error)
  100. // Query calls f(ctx, q).
  101. func (f BatchMsgFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  102. if q, ok := q.(*ent.BatchMsgQuery); ok {
  103. return f(ctx, q)
  104. }
  105. return nil, fmt.Errorf("unexpected query type %T. expect *ent.BatchMsgQuery", q)
  106. }
  107. // The TraverseBatchMsg type is an adapter to allow the use of ordinary function as Traverser.
  108. type TraverseBatchMsg func(context.Context, *ent.BatchMsgQuery) error
  109. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  110. func (f TraverseBatchMsg) Intercept(next ent.Querier) ent.Querier {
  111. return next
  112. }
  113. // Traverse calls f(ctx, q).
  114. func (f TraverseBatchMsg) Traverse(ctx context.Context, q ent.Query) error {
  115. if q, ok := q.(*ent.BatchMsgQuery); ok {
  116. return f(ctx, q)
  117. }
  118. return fmt.Errorf("unexpected query type %T. expect *ent.BatchMsgQuery", q)
  119. }
  120. // The ContactFunc type is an adapter to allow the use of ordinary function as a Querier.
  121. type ContactFunc func(context.Context, *ent.ContactQuery) (ent.Value, error)
  122. // Query calls f(ctx, q).
  123. func (f ContactFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  124. if q, ok := q.(*ent.ContactQuery); ok {
  125. return f(ctx, q)
  126. }
  127. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ContactQuery", q)
  128. }
  129. // The TraverseContact type is an adapter to allow the use of ordinary function as Traverser.
  130. type TraverseContact func(context.Context, *ent.ContactQuery) error
  131. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  132. func (f TraverseContact) Intercept(next ent.Querier) ent.Querier {
  133. return next
  134. }
  135. // Traverse calls f(ctx, q).
  136. func (f TraverseContact) Traverse(ctx context.Context, q ent.Query) error {
  137. if q, ok := q.(*ent.ContactQuery); ok {
  138. return f(ctx, q)
  139. }
  140. return fmt.Errorf("unexpected query type %T. expect *ent.ContactQuery", q)
  141. }
  142. // The EmployeeFunc type is an adapter to allow the use of ordinary function as a Querier.
  143. type EmployeeFunc func(context.Context, *ent.EmployeeQuery) (ent.Value, error)
  144. // Query calls f(ctx, q).
  145. func (f EmployeeFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  146. if q, ok := q.(*ent.EmployeeQuery); ok {
  147. return f(ctx, q)
  148. }
  149. return nil, fmt.Errorf("unexpected query type %T. expect *ent.EmployeeQuery", q)
  150. }
  151. // The TraverseEmployee type is an adapter to allow the use of ordinary function as Traverser.
  152. type TraverseEmployee func(context.Context, *ent.EmployeeQuery) error
  153. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  154. func (f TraverseEmployee) Intercept(next ent.Querier) ent.Querier {
  155. return next
  156. }
  157. // Traverse calls f(ctx, q).
  158. func (f TraverseEmployee) Traverse(ctx context.Context, q ent.Query) error {
  159. if q, ok := q.(*ent.EmployeeQuery); ok {
  160. return f(ctx, q)
  161. }
  162. return fmt.Errorf("unexpected query type %T. expect *ent.EmployeeQuery", q)
  163. }
  164. // The LabelFunc type is an adapter to allow the use of ordinary function as a Querier.
  165. type LabelFunc func(context.Context, *ent.LabelQuery) (ent.Value, error)
  166. // Query calls f(ctx, q).
  167. func (f LabelFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  168. if q, ok := q.(*ent.LabelQuery); ok {
  169. return f(ctx, q)
  170. }
  171. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelQuery", q)
  172. }
  173. // The TraverseLabel type is an adapter to allow the use of ordinary function as Traverser.
  174. type TraverseLabel func(context.Context, *ent.LabelQuery) error
  175. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  176. func (f TraverseLabel) Intercept(next ent.Querier) ent.Querier {
  177. return next
  178. }
  179. // Traverse calls f(ctx, q).
  180. func (f TraverseLabel) Traverse(ctx context.Context, q ent.Query) error {
  181. if q, ok := q.(*ent.LabelQuery); ok {
  182. return f(ctx, q)
  183. }
  184. return fmt.Errorf("unexpected query type %T. expect *ent.LabelQuery", q)
  185. }
  186. // The LabelRelationshipFunc type is an adapter to allow the use of ordinary function as a Querier.
  187. type LabelRelationshipFunc func(context.Context, *ent.LabelRelationshipQuery) (ent.Value, error)
  188. // Query calls f(ctx, q).
  189. func (f LabelRelationshipFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  190. if q, ok := q.(*ent.LabelRelationshipQuery); ok {
  191. return f(ctx, q)
  192. }
  193. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelRelationshipQuery", q)
  194. }
  195. // The TraverseLabelRelationship type is an adapter to allow the use of ordinary function as Traverser.
  196. type TraverseLabelRelationship func(context.Context, *ent.LabelRelationshipQuery) error
  197. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  198. func (f TraverseLabelRelationship) Intercept(next ent.Querier) ent.Querier {
  199. return next
  200. }
  201. // Traverse calls f(ctx, q).
  202. func (f TraverseLabelRelationship) Traverse(ctx context.Context, q ent.Query) error {
  203. if q, ok := q.(*ent.LabelRelationshipQuery); ok {
  204. return f(ctx, q)
  205. }
  206. return fmt.Errorf("unexpected query type %T. expect *ent.LabelRelationshipQuery", q)
  207. }
  208. // The MessageFunc type is an adapter to allow the use of ordinary function as a Querier.
  209. type MessageFunc func(context.Context, *ent.MessageQuery) (ent.Value, error)
  210. // Query calls f(ctx, q).
  211. func (f MessageFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  212. if q, ok := q.(*ent.MessageQuery); ok {
  213. return f(ctx, q)
  214. }
  215. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MessageQuery", q)
  216. }
  217. // The TraverseMessage type is an adapter to allow the use of ordinary function as Traverser.
  218. type TraverseMessage func(context.Context, *ent.MessageQuery) error
  219. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  220. func (f TraverseMessage) Intercept(next ent.Querier) ent.Querier {
  221. return next
  222. }
  223. // Traverse calls f(ctx, q).
  224. func (f TraverseMessage) Traverse(ctx context.Context, q ent.Query) error {
  225. if q, ok := q.(*ent.MessageQuery); ok {
  226. return f(ctx, q)
  227. }
  228. return fmt.Errorf("unexpected query type %T. expect *ent.MessageQuery", q)
  229. }
  230. // The MessageRecordsFunc type is an adapter to allow the use of ordinary function as a Querier.
  231. type MessageRecordsFunc func(context.Context, *ent.MessageRecordsQuery) (ent.Value, error)
  232. // Query calls f(ctx, q).
  233. func (f MessageRecordsFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  234. if q, ok := q.(*ent.MessageRecordsQuery); ok {
  235. return f(ctx, q)
  236. }
  237. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MessageRecordsQuery", q)
  238. }
  239. // The TraverseMessageRecords type is an adapter to allow the use of ordinary function as Traverser.
  240. type TraverseMessageRecords func(context.Context, *ent.MessageRecordsQuery) error
  241. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  242. func (f TraverseMessageRecords) Intercept(next ent.Querier) ent.Querier {
  243. return next
  244. }
  245. // Traverse calls f(ctx, q).
  246. func (f TraverseMessageRecords) Traverse(ctx context.Context, q ent.Query) error {
  247. if q, ok := q.(*ent.MessageRecordsQuery); ok {
  248. return f(ctx, q)
  249. }
  250. return fmt.Errorf("unexpected query type %T. expect *ent.MessageRecordsQuery", q)
  251. }
  252. // The MsgFunc type is an adapter to allow the use of ordinary function as a Querier.
  253. type MsgFunc func(context.Context, *ent.MsgQuery) (ent.Value, error)
  254. // Query calls f(ctx, q).
  255. func (f MsgFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  256. if q, ok := q.(*ent.MsgQuery); ok {
  257. return f(ctx, q)
  258. }
  259. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MsgQuery", q)
  260. }
  261. // The TraverseMsg type is an adapter to allow the use of ordinary function as Traverser.
  262. type TraverseMsg func(context.Context, *ent.MsgQuery) error
  263. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  264. func (f TraverseMsg) Intercept(next ent.Querier) ent.Querier {
  265. return next
  266. }
  267. // Traverse calls f(ctx, q).
  268. func (f TraverseMsg) Traverse(ctx context.Context, q ent.Query) error {
  269. if q, ok := q.(*ent.MsgQuery); ok {
  270. return f(ctx, q)
  271. }
  272. return fmt.Errorf("unexpected query type %T. expect *ent.MsgQuery", q)
  273. }
  274. // The ServerFunc type is an adapter to allow the use of ordinary function as a Querier.
  275. type ServerFunc func(context.Context, *ent.ServerQuery) (ent.Value, error)
  276. // Query calls f(ctx, q).
  277. func (f ServerFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  278. if q, ok := q.(*ent.ServerQuery); ok {
  279. return f(ctx, q)
  280. }
  281. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ServerQuery", q)
  282. }
  283. // The TraverseServer type is an adapter to allow the use of ordinary function as Traverser.
  284. type TraverseServer func(context.Context, *ent.ServerQuery) error
  285. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  286. func (f TraverseServer) Intercept(next ent.Querier) ent.Querier {
  287. return next
  288. }
  289. // Traverse calls f(ctx, q).
  290. func (f TraverseServer) Traverse(ctx context.Context, q ent.Query) error {
  291. if q, ok := q.(*ent.ServerQuery); ok {
  292. return f(ctx, q)
  293. }
  294. return fmt.Errorf("unexpected query type %T. expect *ent.ServerQuery", q)
  295. }
  296. // The SopNodeFunc type is an adapter to allow the use of ordinary function as a Querier.
  297. type SopNodeFunc func(context.Context, *ent.SopNodeQuery) (ent.Value, error)
  298. // Query calls f(ctx, q).
  299. func (f SopNodeFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  300. if q, ok := q.(*ent.SopNodeQuery); ok {
  301. return f(ctx, q)
  302. }
  303. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopNodeQuery", q)
  304. }
  305. // The TraverseSopNode type is an adapter to allow the use of ordinary function as Traverser.
  306. type TraverseSopNode func(context.Context, *ent.SopNodeQuery) error
  307. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  308. func (f TraverseSopNode) Intercept(next ent.Querier) ent.Querier {
  309. return next
  310. }
  311. // Traverse calls f(ctx, q).
  312. func (f TraverseSopNode) Traverse(ctx context.Context, q ent.Query) error {
  313. if q, ok := q.(*ent.SopNodeQuery); ok {
  314. return f(ctx, q)
  315. }
  316. return fmt.Errorf("unexpected query type %T. expect *ent.SopNodeQuery", q)
  317. }
  318. // The SopStageFunc type is an adapter to allow the use of ordinary function as a Querier.
  319. type SopStageFunc func(context.Context, *ent.SopStageQuery) (ent.Value, error)
  320. // Query calls f(ctx, q).
  321. func (f SopStageFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  322. if q, ok := q.(*ent.SopStageQuery); ok {
  323. return f(ctx, q)
  324. }
  325. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopStageQuery", q)
  326. }
  327. // The TraverseSopStage type is an adapter to allow the use of ordinary function as Traverser.
  328. type TraverseSopStage func(context.Context, *ent.SopStageQuery) error
  329. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  330. func (f TraverseSopStage) Intercept(next ent.Querier) ent.Querier {
  331. return next
  332. }
  333. // Traverse calls f(ctx, q).
  334. func (f TraverseSopStage) Traverse(ctx context.Context, q ent.Query) error {
  335. if q, ok := q.(*ent.SopStageQuery); ok {
  336. return f(ctx, q)
  337. }
  338. return fmt.Errorf("unexpected query type %T. expect *ent.SopStageQuery", q)
  339. }
  340. // The SopTaskFunc type is an adapter to allow the use of ordinary function as a Querier.
  341. type SopTaskFunc func(context.Context, *ent.SopTaskQuery) (ent.Value, error)
  342. // Query calls f(ctx, q).
  343. func (f SopTaskFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  344. if q, ok := q.(*ent.SopTaskQuery); ok {
  345. return f(ctx, q)
  346. }
  347. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopTaskQuery", q)
  348. }
  349. // The TraverseSopTask type is an adapter to allow the use of ordinary function as Traverser.
  350. type TraverseSopTask func(context.Context, *ent.SopTaskQuery) error
  351. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  352. func (f TraverseSopTask) Intercept(next ent.Querier) ent.Querier {
  353. return next
  354. }
  355. // Traverse calls f(ctx, q).
  356. func (f TraverseSopTask) Traverse(ctx context.Context, q ent.Query) error {
  357. if q, ok := q.(*ent.SopTaskQuery); ok {
  358. return f(ctx, q)
  359. }
  360. return fmt.Errorf("unexpected query type %T. expect *ent.SopTaskQuery", q)
  361. }
  362. // The TutorialFunc type is an adapter to allow the use of ordinary function as a Querier.
  363. type TutorialFunc func(context.Context, *ent.TutorialQuery) (ent.Value, error)
  364. // Query calls f(ctx, q).
  365. func (f TutorialFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  366. if q, ok := q.(*ent.TutorialQuery); ok {
  367. return f(ctx, q)
  368. }
  369. return nil, fmt.Errorf("unexpected query type %T. expect *ent.TutorialQuery", q)
  370. }
  371. // The TraverseTutorial type is an adapter to allow the use of ordinary function as Traverser.
  372. type TraverseTutorial func(context.Context, *ent.TutorialQuery) error
  373. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  374. func (f TraverseTutorial) Intercept(next ent.Querier) ent.Querier {
  375. return next
  376. }
  377. // Traverse calls f(ctx, q).
  378. func (f TraverseTutorial) Traverse(ctx context.Context, q ent.Query) error {
  379. if q, ok := q.(*ent.TutorialQuery); ok {
  380. return f(ctx, q)
  381. }
  382. return fmt.Errorf("unexpected query type %T. expect *ent.TutorialQuery", q)
  383. }
  384. // The WorkExperienceFunc type is an adapter to allow the use of ordinary function as a Querier.
  385. type WorkExperienceFunc func(context.Context, *ent.WorkExperienceQuery) (ent.Value, error)
  386. // Query calls f(ctx, q).
  387. func (f WorkExperienceFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  388. if q, ok := q.(*ent.WorkExperienceQuery); ok {
  389. return f(ctx, q)
  390. }
  391. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WorkExperienceQuery", q)
  392. }
  393. // The TraverseWorkExperience type is an adapter to allow the use of ordinary function as Traverser.
  394. type TraverseWorkExperience func(context.Context, *ent.WorkExperienceQuery) error
  395. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  396. func (f TraverseWorkExperience) Intercept(next ent.Querier) ent.Querier {
  397. return next
  398. }
  399. // Traverse calls f(ctx, q).
  400. func (f TraverseWorkExperience) Traverse(ctx context.Context, q ent.Query) error {
  401. if q, ok := q.(*ent.WorkExperienceQuery); ok {
  402. return f(ctx, q)
  403. }
  404. return fmt.Errorf("unexpected query type %T. expect *ent.WorkExperienceQuery", q)
  405. }
  406. // The WxFunc type is an adapter to allow the use of ordinary function as a Querier.
  407. type WxFunc func(context.Context, *ent.WxQuery) (ent.Value, error)
  408. // Query calls f(ctx, q).
  409. func (f WxFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  410. if q, ok := q.(*ent.WxQuery); ok {
  411. return f(ctx, q)
  412. }
  413. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxQuery", q)
  414. }
  415. // The TraverseWx type is an adapter to allow the use of ordinary function as Traverser.
  416. type TraverseWx func(context.Context, *ent.WxQuery) error
  417. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  418. func (f TraverseWx) Intercept(next ent.Querier) ent.Querier {
  419. return next
  420. }
  421. // Traverse calls f(ctx, q).
  422. func (f TraverseWx) Traverse(ctx context.Context, q ent.Query) error {
  423. if q, ok := q.(*ent.WxQuery); ok {
  424. return f(ctx, q)
  425. }
  426. return fmt.Errorf("unexpected query type %T. expect *ent.WxQuery", q)
  427. }
  428. // NewQuery returns the generic Query interface for the given typed query.
  429. func NewQuery(q ent.Query) (Query, error) {
  430. switch q := q.(type) {
  431. case *ent.AgentQuery:
  432. return &query[*ent.AgentQuery, predicate.Agent, agent.OrderOption]{typ: ent.TypeAgent, tq: q}, nil
  433. case *ent.BatchMsgQuery:
  434. return &query[*ent.BatchMsgQuery, predicate.BatchMsg, batchmsg.OrderOption]{typ: ent.TypeBatchMsg, tq: q}, nil
  435. case *ent.ContactQuery:
  436. return &query[*ent.ContactQuery, predicate.Contact, contact.OrderOption]{typ: ent.TypeContact, tq: q}, nil
  437. case *ent.EmployeeQuery:
  438. return &query[*ent.EmployeeQuery, predicate.Employee, employee.OrderOption]{typ: ent.TypeEmployee, tq: q}, nil
  439. case *ent.LabelQuery:
  440. return &query[*ent.LabelQuery, predicate.Label, label.OrderOption]{typ: ent.TypeLabel, tq: q}, nil
  441. case *ent.LabelRelationshipQuery:
  442. return &query[*ent.LabelRelationshipQuery, predicate.LabelRelationship, labelrelationship.OrderOption]{typ: ent.TypeLabelRelationship, tq: q}, nil
  443. case *ent.MessageQuery:
  444. return &query[*ent.MessageQuery, predicate.Message, message.OrderOption]{typ: ent.TypeMessage, tq: q}, nil
  445. case *ent.MessageRecordsQuery:
  446. return &query[*ent.MessageRecordsQuery, predicate.MessageRecords, messagerecords.OrderOption]{typ: ent.TypeMessageRecords, tq: q}, nil
  447. case *ent.MsgQuery:
  448. return &query[*ent.MsgQuery, predicate.Msg, msg.OrderOption]{typ: ent.TypeMsg, tq: q}, nil
  449. case *ent.ServerQuery:
  450. return &query[*ent.ServerQuery, predicate.Server, server.OrderOption]{typ: ent.TypeServer, tq: q}, nil
  451. case *ent.SopNodeQuery:
  452. return &query[*ent.SopNodeQuery, predicate.SopNode, sopnode.OrderOption]{typ: ent.TypeSopNode, tq: q}, nil
  453. case *ent.SopStageQuery:
  454. return &query[*ent.SopStageQuery, predicate.SopStage, sopstage.OrderOption]{typ: ent.TypeSopStage, tq: q}, nil
  455. case *ent.SopTaskQuery:
  456. return &query[*ent.SopTaskQuery, predicate.SopTask, soptask.OrderOption]{typ: ent.TypeSopTask, tq: q}, nil
  457. case *ent.TutorialQuery:
  458. return &query[*ent.TutorialQuery, predicate.Tutorial, tutorial.OrderOption]{typ: ent.TypeTutorial, tq: q}, nil
  459. case *ent.WorkExperienceQuery:
  460. return &query[*ent.WorkExperienceQuery, predicate.WorkExperience, workexperience.OrderOption]{typ: ent.TypeWorkExperience, tq: q}, nil
  461. case *ent.WxQuery:
  462. return &query[*ent.WxQuery, predicate.Wx, wx.OrderOption]{typ: ent.TypeWx, tq: q}, nil
  463. default:
  464. return nil, fmt.Errorf("unknown query type %T", q)
  465. }
  466. }
  467. type query[T any, P ~func(*sql.Selector), R ~func(*sql.Selector)] struct {
  468. typ string
  469. tq interface {
  470. Limit(int) T
  471. Offset(int) T
  472. Unique(bool) T
  473. Order(...R) T
  474. Where(...P) T
  475. }
  476. }
  477. func (q query[T, P, R]) Type() string {
  478. return q.typ
  479. }
  480. func (q query[T, P, R]) Limit(limit int) {
  481. q.tq.Limit(limit)
  482. }
  483. func (q query[T, P, R]) Offset(offset int) {
  484. q.tq.Offset(offset)
  485. }
  486. func (q query[T, P, R]) Unique(unique bool) {
  487. q.tq.Unique(unique)
  488. }
  489. func (q query[T, P, R]) Order(orders ...func(*sql.Selector)) {
  490. rs := make([]R, len(orders))
  491. for i := range orders {
  492. rs[i] = orders[i]
  493. }
  494. q.tq.Order(rs...)
  495. }
  496. func (q query[T, P, R]) WhereP(ps ...func(*sql.Selector)) {
  497. p := make([]P, len(ps))
  498. for i := range ps {
  499. p[i] = ps[i]
  500. }
  501. q.tq.Where(p...)
  502. }