associate.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package vip
  2. import (
  3. "context"
  4. "encoding/json"
  5. "go-common/app/interface/main/account/model"
  6. vol "go-common/app/service/main/vip/model"
  7. v1 "go-common/app/service/main/vip/api"
  8. )
  9. // BindInfoByMid bind info by mid[bilibili->third].
  10. func (s *Service) BindInfoByMid(c context.Context, a *model.ArgBindInfo) (res *v1.BindInfoByMidReply, err error) {
  11. return s.vipgRPC.BindInfoByMid(c, &v1.BindInfoByMidReq{
  12. Mid: a.Mid,
  13. AppId: a.AppID,
  14. })
  15. }
  16. // CreateAssociateOrder create associate order.
  17. func (s *Service) CreateAssociateOrder(c context.Context, req *model.ArgCreateAssociateOrder) (res map[string]interface{}, err error) {
  18. var p *v1.CreateAssociateOrderReply
  19. if p, err = s.vipgRPC.CreateAssociateOrder(c, &v1.CreateAssociateOrderReq{
  20. Mid: req.Mid,
  21. Month: req.Month,
  22. Platform: req.Platform,
  23. MobiApp: req.MobiApp,
  24. Device: req.Device,
  25. AppId: req.AppID,
  26. AppSubId: req.AppSubID,
  27. OrderType: int32(req.OrderType),
  28. Dtype: int32(req.Dtype),
  29. ReturnUrl: req.ReturnURL,
  30. CouponToken: req.CouponToken,
  31. Bmid: req.Bmid,
  32. PanelType: req.PanelType,
  33. Build: req.Build,
  34. IP: req.IP,
  35. }); err != nil {
  36. return
  37. }
  38. json.Unmarshal([]byte(p.PayParam), &res)
  39. return
  40. }
  41. // AssociatePanel associate panel.
  42. func (s *Service) AssociatePanel(c context.Context, req *vol.ArgAssociatePanel) (res []*v1.AssociatePanelInfo, err error) {
  43. var reply *v1.AssociatePanelReply
  44. if reply, err = s.vipgRPC.AssociatePanel(c, &v1.AssociatePanelReq{
  45. Mid: req.Mid,
  46. SortTp: int32(req.SortTP),
  47. IP: req.IP,
  48. MobiApp: req.MobiApp,
  49. Device: req.Device,
  50. Platform: req.Platform,
  51. PanelType: req.PanelType,
  52. Build: req.Build,
  53. }); err != nil {
  54. return
  55. }
  56. res = reply.List
  57. return
  58. }
  59. // EleRedPackages ele red packages.
  60. func (s *Service) EleRedPackages(c context.Context) (res []*v1.ModelEleRedPackage, err error) {
  61. var reply *v1.EleRedPackagesReply
  62. if reply, err = s.vipgRPC.EleRedPackages(c, &v1.EleRedPackagesReq{}); err != nil {
  63. return
  64. }
  65. res = reply.List
  66. return
  67. }
  68. // EleSpecailFoods ele speacail foods.
  69. func (s *Service) EleSpecailFoods(c context.Context) (res []*v1.ModelEleSpecailFoods, err error) {
  70. var reply *v1.EleSpecailFoodsReply
  71. if reply, err = s.vipgRPC.EleSpecailFoods(c, &v1.EleSpecailFoodsReq{}); err != nil {
  72. return
  73. }
  74. res = reply.List
  75. return
  76. }