hook.go 9.0 KB

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