intercept.go 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869
  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/agentbase"
  9. "wechat-api/ent/batchmsg"
  10. "wechat-api/ent/category"
  11. "wechat-api/ent/chatrecords"
  12. "wechat-api/ent/chatsession"
  13. "wechat-api/ent/contact"
  14. "wechat-api/ent/employee"
  15. "wechat-api/ent/employeeconfig"
  16. "wechat-api/ent/label"
  17. "wechat-api/ent/labelrelationship"
  18. "wechat-api/ent/message"
  19. "wechat-api/ent/messagerecords"
  20. "wechat-api/ent/msg"
  21. "wechat-api/ent/predicate"
  22. "wechat-api/ent/server"
  23. "wechat-api/ent/sopnode"
  24. "wechat-api/ent/sopstage"
  25. "wechat-api/ent/soptask"
  26. "wechat-api/ent/token"
  27. "wechat-api/ent/tutorial"
  28. "wechat-api/ent/workexperience"
  29. "wechat-api/ent/wx"
  30. "wechat-api/ent/wxcard"
  31. "wechat-api/ent/wxcarduser"
  32. "wechat-api/ent/wxcardvisit"
  33. "entgo.io/ent/dialect/sql"
  34. )
  35. // The Query interface represents an operation that queries a graph.
  36. // By using this interface, users can write generic code that manipulates
  37. // query builders of different types.
  38. type Query interface {
  39. // Type returns the string representation of the query type.
  40. Type() string
  41. // Limit the number of records to be returned by this query.
  42. Limit(int)
  43. // Offset to start from.
  44. Offset(int)
  45. // Unique configures the query builder to filter duplicate records.
  46. Unique(bool)
  47. // Order specifies how the records should be ordered.
  48. Order(...func(*sql.Selector))
  49. // WhereP appends storage-level predicates to the query builder. Using this method, users
  50. // can use type-assertion to append predicates that do not depend on any generated package.
  51. WhereP(...func(*sql.Selector))
  52. }
  53. // The Func type is an adapter that allows ordinary functions to be used as interceptors.
  54. // Unlike traversal functions, interceptors are skipped during graph traversals. Note that the
  55. // implementation of Func is different from the one defined in entgo.io/ent.InterceptFunc.
  56. type Func func(context.Context, Query) error
  57. // Intercept calls f(ctx, q) and then applied the next Querier.
  58. func (f Func) Intercept(next ent.Querier) ent.Querier {
  59. return ent.QuerierFunc(func(ctx context.Context, q ent.Query) (ent.Value, error) {
  60. query, err := NewQuery(q)
  61. if err != nil {
  62. return nil, err
  63. }
  64. if err := f(ctx, query); err != nil {
  65. return nil, err
  66. }
  67. return next.Query(ctx, q)
  68. })
  69. }
  70. // The TraverseFunc type is an adapter to allow the use of ordinary function as Traverser.
  71. // If f is a function with the appropriate signature, TraverseFunc(f) is a Traverser that calls f.
  72. type TraverseFunc func(context.Context, Query) error
  73. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  74. func (f TraverseFunc) Intercept(next ent.Querier) ent.Querier {
  75. return next
  76. }
  77. // Traverse calls f(ctx, q).
  78. func (f TraverseFunc) Traverse(ctx context.Context, q ent.Query) error {
  79. query, err := NewQuery(q)
  80. if err != nil {
  81. return err
  82. }
  83. return f(ctx, query)
  84. }
  85. // The AgentFunc type is an adapter to allow the use of ordinary function as a Querier.
  86. type AgentFunc func(context.Context, *ent.AgentQuery) (ent.Value, error)
  87. // Query calls f(ctx, q).
  88. func (f AgentFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  89. if q, ok := q.(*ent.AgentQuery); ok {
  90. return f(ctx, q)
  91. }
  92. return nil, fmt.Errorf("unexpected query type %T. expect *ent.AgentQuery", q)
  93. }
  94. // The TraverseAgent type is an adapter to allow the use of ordinary function as Traverser.
  95. type TraverseAgent func(context.Context, *ent.AgentQuery) error
  96. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  97. func (f TraverseAgent) Intercept(next ent.Querier) ent.Querier {
  98. return next
  99. }
  100. // Traverse calls f(ctx, q).
  101. func (f TraverseAgent) Traverse(ctx context.Context, q ent.Query) error {
  102. if q, ok := q.(*ent.AgentQuery); ok {
  103. return f(ctx, q)
  104. }
  105. return fmt.Errorf("unexpected query type %T. expect *ent.AgentQuery", q)
  106. }
  107. // The AgentBaseFunc type is an adapter to allow the use of ordinary function as a Querier.
  108. type AgentBaseFunc func(context.Context, *ent.AgentBaseQuery) (ent.Value, error)
  109. // Query calls f(ctx, q).
  110. func (f AgentBaseFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  111. if q, ok := q.(*ent.AgentBaseQuery); ok {
  112. return f(ctx, q)
  113. }
  114. return nil, fmt.Errorf("unexpected query type %T. expect *ent.AgentBaseQuery", q)
  115. }
  116. // The TraverseAgentBase type is an adapter to allow the use of ordinary function as Traverser.
  117. type TraverseAgentBase func(context.Context, *ent.AgentBaseQuery) error
  118. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  119. func (f TraverseAgentBase) Intercept(next ent.Querier) ent.Querier {
  120. return next
  121. }
  122. // Traverse calls f(ctx, q).
  123. func (f TraverseAgentBase) Traverse(ctx context.Context, q ent.Query) error {
  124. if q, ok := q.(*ent.AgentBaseQuery); ok {
  125. return f(ctx, q)
  126. }
  127. return fmt.Errorf("unexpected query type %T. expect *ent.AgentBaseQuery", q)
  128. }
  129. // The BatchMsgFunc type is an adapter to allow the use of ordinary function as a Querier.
  130. type BatchMsgFunc func(context.Context, *ent.BatchMsgQuery) (ent.Value, error)
  131. // Query calls f(ctx, q).
  132. func (f BatchMsgFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  133. if q, ok := q.(*ent.BatchMsgQuery); ok {
  134. return f(ctx, q)
  135. }
  136. return nil, fmt.Errorf("unexpected query type %T. expect *ent.BatchMsgQuery", q)
  137. }
  138. // The TraverseBatchMsg type is an adapter to allow the use of ordinary function as Traverser.
  139. type TraverseBatchMsg func(context.Context, *ent.BatchMsgQuery) error
  140. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  141. func (f TraverseBatchMsg) Intercept(next ent.Querier) ent.Querier {
  142. return next
  143. }
  144. // Traverse calls f(ctx, q).
  145. func (f TraverseBatchMsg) Traverse(ctx context.Context, q ent.Query) error {
  146. if q, ok := q.(*ent.BatchMsgQuery); ok {
  147. return f(ctx, q)
  148. }
  149. return fmt.Errorf("unexpected query type %T. expect *ent.BatchMsgQuery", q)
  150. }
  151. // The CategoryFunc type is an adapter to allow the use of ordinary function as a Querier.
  152. type CategoryFunc func(context.Context, *ent.CategoryQuery) (ent.Value, error)
  153. // Query calls f(ctx, q).
  154. func (f CategoryFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  155. if q, ok := q.(*ent.CategoryQuery); ok {
  156. return f(ctx, q)
  157. }
  158. return nil, fmt.Errorf("unexpected query type %T. expect *ent.CategoryQuery", q)
  159. }
  160. // The TraverseCategory type is an adapter to allow the use of ordinary function as Traverser.
  161. type TraverseCategory func(context.Context, *ent.CategoryQuery) error
  162. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  163. func (f TraverseCategory) Intercept(next ent.Querier) ent.Querier {
  164. return next
  165. }
  166. // Traverse calls f(ctx, q).
  167. func (f TraverseCategory) Traverse(ctx context.Context, q ent.Query) error {
  168. if q, ok := q.(*ent.CategoryQuery); ok {
  169. return f(ctx, q)
  170. }
  171. return fmt.Errorf("unexpected query type %T. expect *ent.CategoryQuery", q)
  172. }
  173. // The ChatRecordsFunc type is an adapter to allow the use of ordinary function as a Querier.
  174. type ChatRecordsFunc func(context.Context, *ent.ChatRecordsQuery) (ent.Value, error)
  175. // Query calls f(ctx, q).
  176. func (f ChatRecordsFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  177. if q, ok := q.(*ent.ChatRecordsQuery); ok {
  178. return f(ctx, q)
  179. }
  180. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ChatRecordsQuery", q)
  181. }
  182. // The TraverseChatRecords type is an adapter to allow the use of ordinary function as Traverser.
  183. type TraverseChatRecords func(context.Context, *ent.ChatRecordsQuery) error
  184. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  185. func (f TraverseChatRecords) Intercept(next ent.Querier) ent.Querier {
  186. return next
  187. }
  188. // Traverse calls f(ctx, q).
  189. func (f TraverseChatRecords) Traverse(ctx context.Context, q ent.Query) error {
  190. if q, ok := q.(*ent.ChatRecordsQuery); ok {
  191. return f(ctx, q)
  192. }
  193. return fmt.Errorf("unexpected query type %T. expect *ent.ChatRecordsQuery", q)
  194. }
  195. // The ChatSessionFunc type is an adapter to allow the use of ordinary function as a Querier.
  196. type ChatSessionFunc func(context.Context, *ent.ChatSessionQuery) (ent.Value, error)
  197. // Query calls f(ctx, q).
  198. func (f ChatSessionFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  199. if q, ok := q.(*ent.ChatSessionQuery); ok {
  200. return f(ctx, q)
  201. }
  202. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ChatSessionQuery", q)
  203. }
  204. // The TraverseChatSession type is an adapter to allow the use of ordinary function as Traverser.
  205. type TraverseChatSession func(context.Context, *ent.ChatSessionQuery) error
  206. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  207. func (f TraverseChatSession) Intercept(next ent.Querier) ent.Querier {
  208. return next
  209. }
  210. // Traverse calls f(ctx, q).
  211. func (f TraverseChatSession) Traverse(ctx context.Context, q ent.Query) error {
  212. if q, ok := q.(*ent.ChatSessionQuery); ok {
  213. return f(ctx, q)
  214. }
  215. return fmt.Errorf("unexpected query type %T. expect *ent.ChatSessionQuery", q)
  216. }
  217. // The ContactFunc type is an adapter to allow the use of ordinary function as a Querier.
  218. type ContactFunc func(context.Context, *ent.ContactQuery) (ent.Value, error)
  219. // Query calls f(ctx, q).
  220. func (f ContactFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  221. if q, ok := q.(*ent.ContactQuery); ok {
  222. return f(ctx, q)
  223. }
  224. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ContactQuery", q)
  225. }
  226. // The TraverseContact type is an adapter to allow the use of ordinary function as Traverser.
  227. type TraverseContact func(context.Context, *ent.ContactQuery) error
  228. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  229. func (f TraverseContact) Intercept(next ent.Querier) ent.Querier {
  230. return next
  231. }
  232. // Traverse calls f(ctx, q).
  233. func (f TraverseContact) Traverse(ctx context.Context, q ent.Query) error {
  234. if q, ok := q.(*ent.ContactQuery); ok {
  235. return f(ctx, q)
  236. }
  237. return fmt.Errorf("unexpected query type %T. expect *ent.ContactQuery", q)
  238. }
  239. // The EmployeeFunc type is an adapter to allow the use of ordinary function as a Querier.
  240. type EmployeeFunc func(context.Context, *ent.EmployeeQuery) (ent.Value, error)
  241. // Query calls f(ctx, q).
  242. func (f EmployeeFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  243. if q, ok := q.(*ent.EmployeeQuery); ok {
  244. return f(ctx, q)
  245. }
  246. return nil, fmt.Errorf("unexpected query type %T. expect *ent.EmployeeQuery", q)
  247. }
  248. // The TraverseEmployee type is an adapter to allow the use of ordinary function as Traverser.
  249. type TraverseEmployee func(context.Context, *ent.EmployeeQuery) error
  250. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  251. func (f TraverseEmployee) Intercept(next ent.Querier) ent.Querier {
  252. return next
  253. }
  254. // Traverse calls f(ctx, q).
  255. func (f TraverseEmployee) Traverse(ctx context.Context, q ent.Query) error {
  256. if q, ok := q.(*ent.EmployeeQuery); ok {
  257. return f(ctx, q)
  258. }
  259. return fmt.Errorf("unexpected query type %T. expect *ent.EmployeeQuery", q)
  260. }
  261. // The EmployeeConfigFunc type is an adapter to allow the use of ordinary function as a Querier.
  262. type EmployeeConfigFunc func(context.Context, *ent.EmployeeConfigQuery) (ent.Value, error)
  263. // Query calls f(ctx, q).
  264. func (f EmployeeConfigFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  265. if q, ok := q.(*ent.EmployeeConfigQuery); ok {
  266. return f(ctx, q)
  267. }
  268. return nil, fmt.Errorf("unexpected query type %T. expect *ent.EmployeeConfigQuery", q)
  269. }
  270. // The TraverseEmployeeConfig type is an adapter to allow the use of ordinary function as Traverser.
  271. type TraverseEmployeeConfig func(context.Context, *ent.EmployeeConfigQuery) error
  272. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  273. func (f TraverseEmployeeConfig) Intercept(next ent.Querier) ent.Querier {
  274. return next
  275. }
  276. // Traverse calls f(ctx, q).
  277. func (f TraverseEmployeeConfig) Traverse(ctx context.Context, q ent.Query) error {
  278. if q, ok := q.(*ent.EmployeeConfigQuery); ok {
  279. return f(ctx, q)
  280. }
  281. return fmt.Errorf("unexpected query type %T. expect *ent.EmployeeConfigQuery", q)
  282. }
  283. // The LabelFunc type is an adapter to allow the use of ordinary function as a Querier.
  284. type LabelFunc func(context.Context, *ent.LabelQuery) (ent.Value, error)
  285. // Query calls f(ctx, q).
  286. func (f LabelFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  287. if q, ok := q.(*ent.LabelQuery); ok {
  288. return f(ctx, q)
  289. }
  290. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelQuery", q)
  291. }
  292. // The TraverseLabel type is an adapter to allow the use of ordinary function as Traverser.
  293. type TraverseLabel func(context.Context, *ent.LabelQuery) error
  294. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  295. func (f TraverseLabel) Intercept(next ent.Querier) ent.Querier {
  296. return next
  297. }
  298. // Traverse calls f(ctx, q).
  299. func (f TraverseLabel) Traverse(ctx context.Context, q ent.Query) error {
  300. if q, ok := q.(*ent.LabelQuery); ok {
  301. return f(ctx, q)
  302. }
  303. return fmt.Errorf("unexpected query type %T. expect *ent.LabelQuery", q)
  304. }
  305. // The LabelRelationshipFunc type is an adapter to allow the use of ordinary function as a Querier.
  306. type LabelRelationshipFunc func(context.Context, *ent.LabelRelationshipQuery) (ent.Value, error)
  307. // Query calls f(ctx, q).
  308. func (f LabelRelationshipFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  309. if q, ok := q.(*ent.LabelRelationshipQuery); ok {
  310. return f(ctx, q)
  311. }
  312. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelRelationshipQuery", q)
  313. }
  314. // The TraverseLabelRelationship type is an adapter to allow the use of ordinary function as Traverser.
  315. type TraverseLabelRelationship func(context.Context, *ent.LabelRelationshipQuery) error
  316. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  317. func (f TraverseLabelRelationship) Intercept(next ent.Querier) ent.Querier {
  318. return next
  319. }
  320. // Traverse calls f(ctx, q).
  321. func (f TraverseLabelRelationship) Traverse(ctx context.Context, q ent.Query) error {
  322. if q, ok := q.(*ent.LabelRelationshipQuery); ok {
  323. return f(ctx, q)
  324. }
  325. return fmt.Errorf("unexpected query type %T. expect *ent.LabelRelationshipQuery", q)
  326. }
  327. // The MessageFunc type is an adapter to allow the use of ordinary function as a Querier.
  328. type MessageFunc func(context.Context, *ent.MessageQuery) (ent.Value, error)
  329. // Query calls f(ctx, q).
  330. func (f MessageFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  331. if q, ok := q.(*ent.MessageQuery); ok {
  332. return f(ctx, q)
  333. }
  334. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MessageQuery", q)
  335. }
  336. // The TraverseMessage type is an adapter to allow the use of ordinary function as Traverser.
  337. type TraverseMessage func(context.Context, *ent.MessageQuery) error
  338. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  339. func (f TraverseMessage) Intercept(next ent.Querier) ent.Querier {
  340. return next
  341. }
  342. // Traverse calls f(ctx, q).
  343. func (f TraverseMessage) Traverse(ctx context.Context, q ent.Query) error {
  344. if q, ok := q.(*ent.MessageQuery); ok {
  345. return f(ctx, q)
  346. }
  347. return fmt.Errorf("unexpected query type %T. expect *ent.MessageQuery", q)
  348. }
  349. // The MessageRecordsFunc type is an adapter to allow the use of ordinary function as a Querier.
  350. type MessageRecordsFunc func(context.Context, *ent.MessageRecordsQuery) (ent.Value, error)
  351. // Query calls f(ctx, q).
  352. func (f MessageRecordsFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  353. if q, ok := q.(*ent.MessageRecordsQuery); ok {
  354. return f(ctx, q)
  355. }
  356. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MessageRecordsQuery", q)
  357. }
  358. // The TraverseMessageRecords type is an adapter to allow the use of ordinary function as Traverser.
  359. type TraverseMessageRecords func(context.Context, *ent.MessageRecordsQuery) error
  360. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  361. func (f TraverseMessageRecords) Intercept(next ent.Querier) ent.Querier {
  362. return next
  363. }
  364. // Traverse calls f(ctx, q).
  365. func (f TraverseMessageRecords) Traverse(ctx context.Context, q ent.Query) error {
  366. if q, ok := q.(*ent.MessageRecordsQuery); ok {
  367. return f(ctx, q)
  368. }
  369. return fmt.Errorf("unexpected query type %T. expect *ent.MessageRecordsQuery", q)
  370. }
  371. // The MsgFunc type is an adapter to allow the use of ordinary function as a Querier.
  372. type MsgFunc func(context.Context, *ent.MsgQuery) (ent.Value, error)
  373. // Query calls f(ctx, q).
  374. func (f MsgFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  375. if q, ok := q.(*ent.MsgQuery); ok {
  376. return f(ctx, q)
  377. }
  378. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MsgQuery", q)
  379. }
  380. // The TraverseMsg type is an adapter to allow the use of ordinary function as Traverser.
  381. type TraverseMsg func(context.Context, *ent.MsgQuery) error
  382. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  383. func (f TraverseMsg) Intercept(next ent.Querier) ent.Querier {
  384. return next
  385. }
  386. // Traverse calls f(ctx, q).
  387. func (f TraverseMsg) Traverse(ctx context.Context, q ent.Query) error {
  388. if q, ok := q.(*ent.MsgQuery); ok {
  389. return f(ctx, q)
  390. }
  391. return fmt.Errorf("unexpected query type %T. expect *ent.MsgQuery", q)
  392. }
  393. // The ServerFunc type is an adapter to allow the use of ordinary function as a Querier.
  394. type ServerFunc func(context.Context, *ent.ServerQuery) (ent.Value, error)
  395. // Query calls f(ctx, q).
  396. func (f ServerFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  397. if q, ok := q.(*ent.ServerQuery); ok {
  398. return f(ctx, q)
  399. }
  400. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ServerQuery", q)
  401. }
  402. // The TraverseServer type is an adapter to allow the use of ordinary function as Traverser.
  403. type TraverseServer func(context.Context, *ent.ServerQuery) error
  404. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  405. func (f TraverseServer) Intercept(next ent.Querier) ent.Querier {
  406. return next
  407. }
  408. // Traverse calls f(ctx, q).
  409. func (f TraverseServer) Traverse(ctx context.Context, q ent.Query) error {
  410. if q, ok := q.(*ent.ServerQuery); ok {
  411. return f(ctx, q)
  412. }
  413. return fmt.Errorf("unexpected query type %T. expect *ent.ServerQuery", q)
  414. }
  415. // The SopNodeFunc type is an adapter to allow the use of ordinary function as a Querier.
  416. type SopNodeFunc func(context.Context, *ent.SopNodeQuery) (ent.Value, error)
  417. // Query calls f(ctx, q).
  418. func (f SopNodeFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  419. if q, ok := q.(*ent.SopNodeQuery); ok {
  420. return f(ctx, q)
  421. }
  422. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopNodeQuery", q)
  423. }
  424. // The TraverseSopNode type is an adapter to allow the use of ordinary function as Traverser.
  425. type TraverseSopNode func(context.Context, *ent.SopNodeQuery) error
  426. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  427. func (f TraverseSopNode) Intercept(next ent.Querier) ent.Querier {
  428. return next
  429. }
  430. // Traverse calls f(ctx, q).
  431. func (f TraverseSopNode) Traverse(ctx context.Context, q ent.Query) error {
  432. if q, ok := q.(*ent.SopNodeQuery); ok {
  433. return f(ctx, q)
  434. }
  435. return fmt.Errorf("unexpected query type %T. expect *ent.SopNodeQuery", q)
  436. }
  437. // The SopStageFunc type is an adapter to allow the use of ordinary function as a Querier.
  438. type SopStageFunc func(context.Context, *ent.SopStageQuery) (ent.Value, error)
  439. // Query calls f(ctx, q).
  440. func (f SopStageFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  441. if q, ok := q.(*ent.SopStageQuery); ok {
  442. return f(ctx, q)
  443. }
  444. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopStageQuery", q)
  445. }
  446. // The TraverseSopStage type is an adapter to allow the use of ordinary function as Traverser.
  447. type TraverseSopStage func(context.Context, *ent.SopStageQuery) error
  448. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  449. func (f TraverseSopStage) Intercept(next ent.Querier) ent.Querier {
  450. return next
  451. }
  452. // Traverse calls f(ctx, q).
  453. func (f TraverseSopStage) Traverse(ctx context.Context, q ent.Query) error {
  454. if q, ok := q.(*ent.SopStageQuery); ok {
  455. return f(ctx, q)
  456. }
  457. return fmt.Errorf("unexpected query type %T. expect *ent.SopStageQuery", q)
  458. }
  459. // The SopTaskFunc type is an adapter to allow the use of ordinary function as a Querier.
  460. type SopTaskFunc func(context.Context, *ent.SopTaskQuery) (ent.Value, error)
  461. // Query calls f(ctx, q).
  462. func (f SopTaskFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  463. if q, ok := q.(*ent.SopTaskQuery); ok {
  464. return f(ctx, q)
  465. }
  466. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopTaskQuery", q)
  467. }
  468. // The TraverseSopTask type is an adapter to allow the use of ordinary function as Traverser.
  469. type TraverseSopTask func(context.Context, *ent.SopTaskQuery) error
  470. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  471. func (f TraverseSopTask) Intercept(next ent.Querier) ent.Querier {
  472. return next
  473. }
  474. // Traverse calls f(ctx, q).
  475. func (f TraverseSopTask) Traverse(ctx context.Context, q ent.Query) error {
  476. if q, ok := q.(*ent.SopTaskQuery); ok {
  477. return f(ctx, q)
  478. }
  479. return fmt.Errorf("unexpected query type %T. expect *ent.SopTaskQuery", q)
  480. }
  481. // The TokenFunc type is an adapter to allow the use of ordinary function as a Querier.
  482. type TokenFunc func(context.Context, *ent.TokenQuery) (ent.Value, error)
  483. // Query calls f(ctx, q).
  484. func (f TokenFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  485. if q, ok := q.(*ent.TokenQuery); ok {
  486. return f(ctx, q)
  487. }
  488. return nil, fmt.Errorf("unexpected query type %T. expect *ent.TokenQuery", q)
  489. }
  490. // The TraverseToken type is an adapter to allow the use of ordinary function as Traverser.
  491. type TraverseToken func(context.Context, *ent.TokenQuery) error
  492. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  493. func (f TraverseToken) Intercept(next ent.Querier) ent.Querier {
  494. return next
  495. }
  496. // Traverse calls f(ctx, q).
  497. func (f TraverseToken) Traverse(ctx context.Context, q ent.Query) error {
  498. if q, ok := q.(*ent.TokenQuery); ok {
  499. return f(ctx, q)
  500. }
  501. return fmt.Errorf("unexpected query type %T. expect *ent.TokenQuery", q)
  502. }
  503. // The TutorialFunc type is an adapter to allow the use of ordinary function as a Querier.
  504. type TutorialFunc func(context.Context, *ent.TutorialQuery) (ent.Value, error)
  505. // Query calls f(ctx, q).
  506. func (f TutorialFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  507. if q, ok := q.(*ent.TutorialQuery); ok {
  508. return f(ctx, q)
  509. }
  510. return nil, fmt.Errorf("unexpected query type %T. expect *ent.TutorialQuery", q)
  511. }
  512. // The TraverseTutorial type is an adapter to allow the use of ordinary function as Traverser.
  513. type TraverseTutorial func(context.Context, *ent.TutorialQuery) error
  514. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  515. func (f TraverseTutorial) Intercept(next ent.Querier) ent.Querier {
  516. return next
  517. }
  518. // Traverse calls f(ctx, q).
  519. func (f TraverseTutorial) Traverse(ctx context.Context, q ent.Query) error {
  520. if q, ok := q.(*ent.TutorialQuery); ok {
  521. return f(ctx, q)
  522. }
  523. return fmt.Errorf("unexpected query type %T. expect *ent.TutorialQuery", q)
  524. }
  525. // The WorkExperienceFunc type is an adapter to allow the use of ordinary function as a Querier.
  526. type WorkExperienceFunc func(context.Context, *ent.WorkExperienceQuery) (ent.Value, error)
  527. // Query calls f(ctx, q).
  528. func (f WorkExperienceFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  529. if q, ok := q.(*ent.WorkExperienceQuery); ok {
  530. return f(ctx, q)
  531. }
  532. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WorkExperienceQuery", q)
  533. }
  534. // The TraverseWorkExperience type is an adapter to allow the use of ordinary function as Traverser.
  535. type TraverseWorkExperience func(context.Context, *ent.WorkExperienceQuery) error
  536. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  537. func (f TraverseWorkExperience) Intercept(next ent.Querier) ent.Querier {
  538. return next
  539. }
  540. // Traverse calls f(ctx, q).
  541. func (f TraverseWorkExperience) Traverse(ctx context.Context, q ent.Query) error {
  542. if q, ok := q.(*ent.WorkExperienceQuery); ok {
  543. return f(ctx, q)
  544. }
  545. return fmt.Errorf("unexpected query type %T. expect *ent.WorkExperienceQuery", q)
  546. }
  547. // The WxFunc type is an adapter to allow the use of ordinary function as a Querier.
  548. type WxFunc func(context.Context, *ent.WxQuery) (ent.Value, error)
  549. // Query calls f(ctx, q).
  550. func (f WxFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  551. if q, ok := q.(*ent.WxQuery); ok {
  552. return f(ctx, q)
  553. }
  554. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxQuery", q)
  555. }
  556. // The TraverseWx type is an adapter to allow the use of ordinary function as Traverser.
  557. type TraverseWx func(context.Context, *ent.WxQuery) error
  558. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  559. func (f TraverseWx) Intercept(next ent.Querier) ent.Querier {
  560. return next
  561. }
  562. // Traverse calls f(ctx, q).
  563. func (f TraverseWx) Traverse(ctx context.Context, q ent.Query) error {
  564. if q, ok := q.(*ent.WxQuery); ok {
  565. return f(ctx, q)
  566. }
  567. return fmt.Errorf("unexpected query type %T. expect *ent.WxQuery", q)
  568. }
  569. // The WxCardFunc type is an adapter to allow the use of ordinary function as a Querier.
  570. type WxCardFunc func(context.Context, *ent.WxCardQuery) (ent.Value, error)
  571. // Query calls f(ctx, q).
  572. func (f WxCardFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  573. if q, ok := q.(*ent.WxCardQuery); ok {
  574. return f(ctx, q)
  575. }
  576. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxCardQuery", q)
  577. }
  578. // The TraverseWxCard type is an adapter to allow the use of ordinary function as Traverser.
  579. type TraverseWxCard func(context.Context, *ent.WxCardQuery) error
  580. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  581. func (f TraverseWxCard) Intercept(next ent.Querier) ent.Querier {
  582. return next
  583. }
  584. // Traverse calls f(ctx, q).
  585. func (f TraverseWxCard) Traverse(ctx context.Context, q ent.Query) error {
  586. if q, ok := q.(*ent.WxCardQuery); ok {
  587. return f(ctx, q)
  588. }
  589. return fmt.Errorf("unexpected query type %T. expect *ent.WxCardQuery", q)
  590. }
  591. // The WxCardUserFunc type is an adapter to allow the use of ordinary function as a Querier.
  592. type WxCardUserFunc func(context.Context, *ent.WxCardUserQuery) (ent.Value, error)
  593. // Query calls f(ctx, q).
  594. func (f WxCardUserFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  595. if q, ok := q.(*ent.WxCardUserQuery); ok {
  596. return f(ctx, q)
  597. }
  598. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxCardUserQuery", q)
  599. }
  600. // The TraverseWxCardUser type is an adapter to allow the use of ordinary function as Traverser.
  601. type TraverseWxCardUser func(context.Context, *ent.WxCardUserQuery) error
  602. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  603. func (f TraverseWxCardUser) Intercept(next ent.Querier) ent.Querier {
  604. return next
  605. }
  606. // Traverse calls f(ctx, q).
  607. func (f TraverseWxCardUser) Traverse(ctx context.Context, q ent.Query) error {
  608. if q, ok := q.(*ent.WxCardUserQuery); ok {
  609. return f(ctx, q)
  610. }
  611. return fmt.Errorf("unexpected query type %T. expect *ent.WxCardUserQuery", q)
  612. }
  613. // The WxCardVisitFunc type is an adapter to allow the use of ordinary function as a Querier.
  614. type WxCardVisitFunc func(context.Context, *ent.WxCardVisitQuery) (ent.Value, error)
  615. // Query calls f(ctx, q).
  616. func (f WxCardVisitFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  617. if q, ok := q.(*ent.WxCardVisitQuery); ok {
  618. return f(ctx, q)
  619. }
  620. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxCardVisitQuery", q)
  621. }
  622. // The TraverseWxCardVisit type is an adapter to allow the use of ordinary function as Traverser.
  623. type TraverseWxCardVisit func(context.Context, *ent.WxCardVisitQuery) error
  624. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  625. func (f TraverseWxCardVisit) Intercept(next ent.Querier) ent.Querier {
  626. return next
  627. }
  628. // Traverse calls f(ctx, q).
  629. func (f TraverseWxCardVisit) Traverse(ctx context.Context, q ent.Query) error {
  630. if q, ok := q.(*ent.WxCardVisitQuery); ok {
  631. return f(ctx, q)
  632. }
  633. return fmt.Errorf("unexpected query type %T. expect *ent.WxCardVisitQuery", q)
  634. }
  635. // NewQuery returns the generic Query interface for the given typed query.
  636. func NewQuery(q ent.Query) (Query, error) {
  637. switch q := q.(type) {
  638. case *ent.AgentQuery:
  639. return &query[*ent.AgentQuery, predicate.Agent, agent.OrderOption]{typ: ent.TypeAgent, tq: q}, nil
  640. case *ent.AgentBaseQuery:
  641. return &query[*ent.AgentBaseQuery, predicate.AgentBase, agentbase.OrderOption]{typ: ent.TypeAgentBase, tq: q}, nil
  642. case *ent.BatchMsgQuery:
  643. return &query[*ent.BatchMsgQuery, predicate.BatchMsg, batchmsg.OrderOption]{typ: ent.TypeBatchMsg, tq: q}, nil
  644. case *ent.CategoryQuery:
  645. return &query[*ent.CategoryQuery, predicate.Category, category.OrderOption]{typ: ent.TypeCategory, tq: q}, nil
  646. case *ent.ChatRecordsQuery:
  647. return &query[*ent.ChatRecordsQuery, predicate.ChatRecords, chatrecords.OrderOption]{typ: ent.TypeChatRecords, tq: q}, nil
  648. case *ent.ChatSessionQuery:
  649. return &query[*ent.ChatSessionQuery, predicate.ChatSession, chatsession.OrderOption]{typ: ent.TypeChatSession, tq: q}, nil
  650. case *ent.ContactQuery:
  651. return &query[*ent.ContactQuery, predicate.Contact, contact.OrderOption]{typ: ent.TypeContact, tq: q}, nil
  652. case *ent.EmployeeQuery:
  653. return &query[*ent.EmployeeQuery, predicate.Employee, employee.OrderOption]{typ: ent.TypeEmployee, tq: q}, nil
  654. case *ent.EmployeeConfigQuery:
  655. return &query[*ent.EmployeeConfigQuery, predicate.EmployeeConfig, employeeconfig.OrderOption]{typ: ent.TypeEmployeeConfig, tq: q}, nil
  656. case *ent.LabelQuery:
  657. return &query[*ent.LabelQuery, predicate.Label, label.OrderOption]{typ: ent.TypeLabel, tq: q}, nil
  658. case *ent.LabelRelationshipQuery:
  659. return &query[*ent.LabelRelationshipQuery, predicate.LabelRelationship, labelrelationship.OrderOption]{typ: ent.TypeLabelRelationship, tq: q}, nil
  660. case *ent.MessageQuery:
  661. return &query[*ent.MessageQuery, predicate.Message, message.OrderOption]{typ: ent.TypeMessage, tq: q}, nil
  662. case *ent.MessageRecordsQuery:
  663. return &query[*ent.MessageRecordsQuery, predicate.MessageRecords, messagerecords.OrderOption]{typ: ent.TypeMessageRecords, tq: q}, nil
  664. case *ent.MsgQuery:
  665. return &query[*ent.MsgQuery, predicate.Msg, msg.OrderOption]{typ: ent.TypeMsg, tq: q}, nil
  666. case *ent.ServerQuery:
  667. return &query[*ent.ServerQuery, predicate.Server, server.OrderOption]{typ: ent.TypeServer, tq: q}, nil
  668. case *ent.SopNodeQuery:
  669. return &query[*ent.SopNodeQuery, predicate.SopNode, sopnode.OrderOption]{typ: ent.TypeSopNode, tq: q}, nil
  670. case *ent.SopStageQuery:
  671. return &query[*ent.SopStageQuery, predicate.SopStage, sopstage.OrderOption]{typ: ent.TypeSopStage, tq: q}, nil
  672. case *ent.SopTaskQuery:
  673. return &query[*ent.SopTaskQuery, predicate.SopTask, soptask.OrderOption]{typ: ent.TypeSopTask, tq: q}, nil
  674. case *ent.TokenQuery:
  675. return &query[*ent.TokenQuery, predicate.Token, token.OrderOption]{typ: ent.TypeToken, tq: q}, nil
  676. case *ent.TutorialQuery:
  677. return &query[*ent.TutorialQuery, predicate.Tutorial, tutorial.OrderOption]{typ: ent.TypeTutorial, tq: q}, nil
  678. case *ent.WorkExperienceQuery:
  679. return &query[*ent.WorkExperienceQuery, predicate.WorkExperience, workexperience.OrderOption]{typ: ent.TypeWorkExperience, tq: q}, nil
  680. case *ent.WxQuery:
  681. return &query[*ent.WxQuery, predicate.Wx, wx.OrderOption]{typ: ent.TypeWx, tq: q}, nil
  682. case *ent.WxCardQuery:
  683. return &query[*ent.WxCardQuery, predicate.WxCard, wxcard.OrderOption]{typ: ent.TypeWxCard, tq: q}, nil
  684. case *ent.WxCardUserQuery:
  685. return &query[*ent.WxCardUserQuery, predicate.WxCardUser, wxcarduser.OrderOption]{typ: ent.TypeWxCardUser, tq: q}, nil
  686. case *ent.WxCardVisitQuery:
  687. return &query[*ent.WxCardVisitQuery, predicate.WxCardVisit, wxcardvisit.OrderOption]{typ: ent.TypeWxCardVisit, tq: q}, nil
  688. default:
  689. return nil, fmt.Errorf("unknown query type %T", q)
  690. }
  691. }
  692. type query[T any, P ~func(*sql.Selector), R ~func(*sql.Selector)] struct {
  693. typ string
  694. tq interface {
  695. Limit(int) T
  696. Offset(int) T
  697. Unique(bool) T
  698. Order(...R) T
  699. Where(...P) T
  700. }
  701. }
  702. func (q query[T, P, R]) Type() string {
  703. return q.typ
  704. }
  705. func (q query[T, P, R]) Limit(limit int) {
  706. q.tq.Limit(limit)
  707. }
  708. func (q query[T, P, R]) Offset(offset int) {
  709. q.tq.Offset(offset)
  710. }
  711. func (q query[T, P, R]) Unique(unique bool) {
  712. q.tq.Unique(unique)
  713. }
  714. func (q query[T, P, R]) Order(orders ...func(*sql.Selector)) {
  715. rs := make([]R, len(orders))
  716. for i := range orders {
  717. rs[i] = orders[i]
  718. }
  719. q.tq.Order(rs...)
  720. }
  721. func (q query[T, P, R]) WhereP(ps ...func(*sql.Selector)) {
  722. p := make([]P, len(ps))
  723. for i := range ps {
  724. p[i] = ps[i]
  725. }
  726. q.tq.Where(p...)
  727. }