intercept.go 34 KB

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