intercept.go 24 KB

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