hook.go 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. // Code generated by ent, DO NOT EDIT.
  2. package hook
  3. import (
  4. "context"
  5. "fmt"
  6. "wechat-api/ent"
  7. )
  8. // The BatchMsgFunc type is an adapter to allow the use of ordinary
  9. // function as BatchMsg mutator.
  10. type BatchMsgFunc func(context.Context, *ent.BatchMsgMutation) (ent.Value, error)
  11. // Mutate calls f(ctx, m).
  12. func (f BatchMsgFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  13. if mv, ok := m.(*ent.BatchMsgMutation); ok {
  14. return f(ctx, mv)
  15. }
  16. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.BatchMsgMutation", m)
  17. }
  18. // The ContactFunc type is an adapter to allow the use of ordinary
  19. // function as Contact mutator.
  20. type ContactFunc func(context.Context, *ent.ContactMutation) (ent.Value, error)
  21. // Mutate calls f(ctx, m).
  22. func (f ContactFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  23. if mv, ok := m.(*ent.ContactMutation); ok {
  24. return f(ctx, mv)
  25. }
  26. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.ContactMutation", m)
  27. }
  28. // The LabelFunc type is an adapter to allow the use of ordinary
  29. // function as Label mutator.
  30. type LabelFunc func(context.Context, *ent.LabelMutation) (ent.Value, error)
  31. // Mutate calls f(ctx, m).
  32. func (f LabelFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  33. if mv, ok := m.(*ent.LabelMutation); ok {
  34. return f(ctx, mv)
  35. }
  36. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.LabelMutation", m)
  37. }
  38. // The LabelRelationshipFunc type is an adapter to allow the use of ordinary
  39. // function as LabelRelationship mutator.
  40. type LabelRelationshipFunc func(context.Context, *ent.LabelRelationshipMutation) (ent.Value, error)
  41. // Mutate calls f(ctx, m).
  42. func (f LabelRelationshipFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  43. if mv, ok := m.(*ent.LabelRelationshipMutation); ok {
  44. return f(ctx, mv)
  45. }
  46. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.LabelRelationshipMutation", m)
  47. }
  48. // The MessageFunc type is an adapter to allow the use of ordinary
  49. // function as Message mutator.
  50. type MessageFunc func(context.Context, *ent.MessageMutation) (ent.Value, error)
  51. // Mutate calls f(ctx, m).
  52. func (f MessageFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  53. if mv, ok := m.(*ent.MessageMutation); ok {
  54. return f(ctx, mv)
  55. }
  56. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.MessageMutation", m)
  57. }
  58. // The MessageRecordsFunc type is an adapter to allow the use of ordinary
  59. // function as MessageRecords mutator.
  60. type MessageRecordsFunc func(context.Context, *ent.MessageRecordsMutation) (ent.Value, error)
  61. // Mutate calls f(ctx, m).
  62. func (f MessageRecordsFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  63. if mv, ok := m.(*ent.MessageRecordsMutation); ok {
  64. return f(ctx, mv)
  65. }
  66. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.MessageRecordsMutation", m)
  67. }
  68. // The ServerFunc type is an adapter to allow the use of ordinary
  69. // function as Server mutator.
  70. type ServerFunc func(context.Context, *ent.ServerMutation) (ent.Value, error)
  71. // Mutate calls f(ctx, m).
  72. func (f ServerFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  73. if mv, ok := m.(*ent.ServerMutation); ok {
  74. return f(ctx, mv)
  75. }
  76. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.ServerMutation", m)
  77. }
  78. // The SopNodeFunc type is an adapter to allow the use of ordinary
  79. // function as SopNode mutator.
  80. type SopNodeFunc func(context.Context, *ent.SopNodeMutation) (ent.Value, error)
  81. // Mutate calls f(ctx, m).
  82. func (f SopNodeFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  83. if mv, ok := m.(*ent.SopNodeMutation); ok {
  84. return f(ctx, mv)
  85. }
  86. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.SopNodeMutation", m)
  87. }
  88. // The SopStageFunc type is an adapter to allow the use of ordinary
  89. // function as SopStage mutator.
  90. type SopStageFunc func(context.Context, *ent.SopStageMutation) (ent.Value, error)
  91. // Mutate calls f(ctx, m).
  92. func (f SopStageFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  93. if mv, ok := m.(*ent.SopStageMutation); ok {
  94. return f(ctx, mv)
  95. }
  96. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.SopStageMutation", m)
  97. }
  98. // The SopTaskFunc type is an adapter to allow the use of ordinary
  99. // function as SopTask mutator.
  100. type SopTaskFunc func(context.Context, *ent.SopTaskMutation) (ent.Value, error)
  101. // Mutate calls f(ctx, m).
  102. func (f SopTaskFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  103. if mv, ok := m.(*ent.SopTaskMutation); ok {
  104. return f(ctx, mv)
  105. }
  106. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.SopTaskMutation", m)
  107. }
  108. // The WxFunc type is an adapter to allow the use of ordinary
  109. // function as Wx mutator.
  110. type WxFunc func(context.Context, *ent.WxMutation) (ent.Value, error)
  111. // Mutate calls f(ctx, m).
  112. func (f WxFunc) Mutate(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  113. if mv, ok := m.(*ent.WxMutation); ok {
  114. return f(ctx, mv)
  115. }
  116. return nil, fmt.Errorf("unexpected mutation type %T. expect *ent.WxMutation", m)
  117. }
  118. // Condition is a hook condition function.
  119. type Condition func(context.Context, ent.Mutation) bool
  120. // And groups conditions with the AND operator.
  121. func And(first, second Condition, rest ...Condition) Condition {
  122. return func(ctx context.Context, m ent.Mutation) bool {
  123. if !first(ctx, m) || !second(ctx, m) {
  124. return false
  125. }
  126. for _, cond := range rest {
  127. if !cond(ctx, m) {
  128. return false
  129. }
  130. }
  131. return true
  132. }
  133. }
  134. // Or groups conditions with the OR operator.
  135. func Or(first, second Condition, rest ...Condition) Condition {
  136. return func(ctx context.Context, m ent.Mutation) bool {
  137. if first(ctx, m) || second(ctx, m) {
  138. return true
  139. }
  140. for _, cond := range rest {
  141. if cond(ctx, m) {
  142. return true
  143. }
  144. }
  145. return false
  146. }
  147. }
  148. // Not negates a given condition.
  149. func Not(cond Condition) Condition {
  150. return func(ctx context.Context, m ent.Mutation) bool {
  151. return !cond(ctx, m)
  152. }
  153. }
  154. // HasOp is a condition testing mutation operation.
  155. func HasOp(op ent.Op) Condition {
  156. return func(_ context.Context, m ent.Mutation) bool {
  157. return m.Op().Is(op)
  158. }
  159. }
  160. // HasAddedFields is a condition validating `.AddedField` on fields.
  161. func HasAddedFields(field string, fields ...string) Condition {
  162. return func(_ context.Context, m ent.Mutation) bool {
  163. if _, exists := m.AddedField(field); !exists {
  164. return false
  165. }
  166. for _, field := range fields {
  167. if _, exists := m.AddedField(field); !exists {
  168. return false
  169. }
  170. }
  171. return true
  172. }
  173. }
  174. // HasClearedFields is a condition validating `.FieldCleared` on fields.
  175. func HasClearedFields(field string, fields ...string) Condition {
  176. return func(_ context.Context, m ent.Mutation) bool {
  177. if exists := m.FieldCleared(field); !exists {
  178. return false
  179. }
  180. for _, field := range fields {
  181. if exists := m.FieldCleared(field); !exists {
  182. return false
  183. }
  184. }
  185. return true
  186. }
  187. }
  188. // HasFields is a condition validating `.Field` on fields.
  189. func HasFields(field string, fields ...string) Condition {
  190. return func(_ context.Context, m ent.Mutation) bool {
  191. if _, exists := m.Field(field); !exists {
  192. return false
  193. }
  194. for _, field := range fields {
  195. if _, exists := m.Field(field); !exists {
  196. return false
  197. }
  198. }
  199. return true
  200. }
  201. }
  202. // If executes the given hook under condition.
  203. //
  204. // hook.If(ComputeAverage, And(HasFields(...), HasAddedFields(...)))
  205. func If(hk ent.Hook, cond Condition) ent.Hook {
  206. return func(next ent.Mutator) ent.Mutator {
  207. return ent.MutateFunc(func(ctx context.Context, m ent.Mutation) (ent.Value, error) {
  208. if cond(ctx, m) {
  209. return hk(next).Mutate(ctx, m)
  210. }
  211. return next.Mutate(ctx, m)
  212. })
  213. }
  214. }
  215. // On executes the given hook only for the given operation.
  216. //
  217. // hook.On(Log, ent.Delete|ent.Create)
  218. func On(hk ent.Hook, op ent.Op) ent.Hook {
  219. return If(hk, HasOp(op))
  220. }
  221. // Unless skips the given hook only for the given operation.
  222. //
  223. // hook.Unless(Log, ent.Update|ent.UpdateOne)
  224. func Unless(hk ent.Hook, op ent.Op) ent.Hook {
  225. return If(hk, Not(HasOp(op)))
  226. }
  227. // FixedError is a hook returning a fixed error.
  228. func FixedError(err error) ent.Hook {
  229. return func(ent.Mutator) ent.Mutator {
  230. return ent.MutateFunc(func(context.Context, ent.Mutation) (ent.Value, error) {
  231. return nil, err
  232. })
  233. }
  234. }
  235. // Reject returns a hook that rejects all operations that match op.
  236. //
  237. // func (T) Hooks() []ent.Hook {
  238. // return []ent.Hook{
  239. // Reject(ent.Delete|ent.Update),
  240. // }
  241. // }
  242. func Reject(op ent.Op) ent.Hook {
  243. hk := FixedError(fmt.Errorf("%s operation is not allowed", op))
  244. return On(hk, op)
  245. }
  246. // Chain acts as a list of hooks and is effectively immutable.
  247. // Once created, it will always hold the same set of hooks in the same order.
  248. type Chain struct {
  249. hooks []ent.Hook
  250. }
  251. // NewChain creates a new chain of hooks.
  252. func NewChain(hooks ...ent.Hook) Chain {
  253. return Chain{append([]ent.Hook(nil), hooks...)}
  254. }
  255. // Hook chains the list of hooks and returns the final hook.
  256. func (c Chain) Hook() ent.Hook {
  257. return func(mutator ent.Mutator) ent.Mutator {
  258. for i := len(c.hooks) - 1; i >= 0; i-- {
  259. mutator = c.hooks[i](mutator)
  260. }
  261. return mutator
  262. }
  263. }
  264. // Append extends a chain, adding the specified hook
  265. // as the last ones in the mutation flow.
  266. func (c Chain) Append(hooks ...ent.Hook) Chain {
  267. newHooks := make([]ent.Hook, 0, len(c.hooks)+len(hooks))
  268. newHooks = append(newHooks, c.hooks...)
  269. newHooks = append(newHooks, hooks...)
  270. return Chain{newHooks}
  271. }
  272. // Extend extends a chain, adding the specified chain
  273. // as the last ones in the mutation flow.
  274. func (c Chain) Extend(chain Chain) Chain {
  275. return c.Append(chain.hooks...)
  276. }