coupon.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package coupon
  2. import (
  3. "context"
  4. "go-common/app/interface/main/account/conf"
  5. v1 "go-common/app/service/main/coupon/api"
  6. "go-common/app/service/main/coupon/model"
  7. courpc "go-common/app/service/main/coupon/rpc/client"
  8. )
  9. // Service .
  10. type Service struct {
  11. // conf
  12. c *conf.Config
  13. // rpc
  14. couRPC *courpc.Service
  15. // coupon grpc service
  16. coupongRPC v1.CouponClient
  17. }
  18. // New create service instance and return.
  19. func New(c *conf.Config) (s *Service) {
  20. s = &Service{
  21. c: c,
  22. couRPC: courpc.New(c.RPCClient2.Coupon),
  23. }
  24. coupongRPC, err := v1.NewClient(c.CouponClient)
  25. if err != nil {
  26. panic(err)
  27. }
  28. s.coupongRPC = coupongRPC
  29. return
  30. }
  31. // AllowanceList allowance list.
  32. func (s *Service) AllowanceList(c context.Context, mid int64, state int8) (res []*model.CouponAllowancePanelInfo, err error) {
  33. res, err = s.couRPC.AllowanceList(c, &model.ArgAllowanceList{Mid: mid, State: state})
  34. return
  35. }
  36. // CouponPage coupon list.
  37. func (s *Service) CouponPage(c context.Context, a *model.ArgRPCPage) (res *model.CouponPageRPCResp, err error) {
  38. res, err = s.couRPC.CouponPage(c, a)
  39. return
  40. }
  41. // CouponCartoonPage coupon cartoon list.
  42. // func (s *Service) CouponCartoonPage(c context.Context, a *model.ArgRPCPage) (res *model.CouponCartoonPageResp, err error) {
  43. // res, err = s.couRPC.CouponCartoonPage(c, a)
  44. // return
  45. // }
  46. // PrizeCards .
  47. func (s *Service) PrizeCards(c context.Context, a *model.ArgCount) (res []*model.PrizeCardRep, err error) {
  48. res, err = s.couRPC.PrizeCards(c, a)
  49. return
  50. }
  51. // PrizeDraw .
  52. func (s *Service) PrizeDraw(c context.Context, a *model.ArgPrizeDraw) (res *model.PrizeCardRep, err error) {
  53. res, err = s.couRPC.PrizeDraw(c, a)
  54. return
  55. }
  56. // CaptchaToken captcha token.
  57. func (s *Service) CaptchaToken(c context.Context, a *v1.CaptchaTokenReq) (res *v1.CaptchaTokenReply, err error) {
  58. return s.coupongRPC.CaptchaToken(c, a)
  59. }
  60. // UseCouponCode use coupon code.
  61. func (s *Service) UseCouponCode(c context.Context, a *model.ArgUseCouponCode) (res *v1.UseCouponCodeResp, err error) {
  62. return s.coupongRPC.UseCouponCode(c, &v1.UseCouponCodeReq{
  63. Token: a.Token,
  64. Code: a.Code,
  65. Verify: a.Verify,
  66. Ip: a.IP,
  67. Mid: a.Mid,
  68. })
  69. }