panel.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. package vip
  2. import (
  3. "context"
  4. "go-common/app/interface/main/account/model"
  5. vipv1 "go-common/app/service/main/vip/api"
  6. vipml "go-common/app/service/main/vip/model"
  7. "go-common/library/log"
  8. "go-common/library/net/metadata"
  9. "go-common/library/sync/errgroup"
  10. "github.com/pkg/errors"
  11. )
  12. // VipPanel .
  13. func (s *Service) VipPanel(c context.Context, mid int64, a *model.VipPanelRes) (res *vipml.VipPirceResp, err error) {
  14. ip := metadata.String(c, metadata.RemoteIP)
  15. res, err = s.vipRPC.VipPanelInfo2(c, &vipml.ArgPanel{Mid: mid, SortTp: a.SortTP, IP: ip, Device: a.Device, MobiApp: a.MobiApp, Platform: a.Platform, PanelType: a.PanelType, SubType: a.SubType, Month: a.Month, Build: a.Build})
  16. return
  17. }
  18. // VipPanel5 .
  19. func (s *Service) VipPanel5(c context.Context, mid int64, a *model.VipPanelRes) (res *vipml.VipPirceResp5, err error) {
  20. ip := metadata.String(c, metadata.RemoteIP)
  21. res, err = s.vipRPC.VipPanelInfo5(c, &vipml.ArgPanel{Mid: mid, SortTp: a.SortTP, IP: ip, Device: a.Device, MobiApp: a.MobiApp, Platform: a.Platform, PanelType: a.PanelType, SubType: a.SubType, Month: a.Month, Build: a.Build})
  22. return
  23. }
  24. // VipPanelV2 vip panel v2.
  25. func (s *Service) VipPanelV2(c context.Context, a *model.ArgVipPanel) (res *model.VipPanelResp, err error) {
  26. var (
  27. g errgroup.Group
  28. p *vipml.VipPirceResp5
  29. ts []*vipml.TipsResp
  30. )
  31. res = new(model.VipPanelResp)
  32. g.Go(func() (err error) {
  33. if p, err = s.vipRPC.VipPanelInfo5(c, &vipml.ArgPanel{
  34. Mid: a.Mid,
  35. SortTp: a.SortTP,
  36. IP: a.IP,
  37. Device: a.Device,
  38. MobiApp: a.MobiApp,
  39. Platform: a.Platform,
  40. PanelType: a.PanelType,
  41. Build: a.Build,
  42. }); err != nil || p == nil {
  43. log.Error("s.vipRPC.VipPanelInfo2(%+v) error(%v)", a, err)
  44. return
  45. }
  46. res.Vps = p.Vps
  47. res.CodeSwitch = p.CodeSwitch
  48. res.GiveSwitch = p.GiveSwitch
  49. res.Privileges = p.Privileges
  50. return
  51. })
  52. g.Go(func() (err error) {
  53. if ts, err = s.vipRPC.Tips(c, &vipml.ArgTips{
  54. Version: a.Build,
  55. Platform: a.Platform,
  56. Position: vipml.PanelPosition,
  57. }); err != nil {
  58. log.Error("s.vipRPC.Tips(%+v) error(%v)", a, err)
  59. }
  60. if len(ts) == 0 {
  61. return
  62. }
  63. res.TipInfo = ts[0]
  64. return
  65. })
  66. g.Go(func() (err error) {
  67. if res.UserInfo, err = s.vipRPC.PanelExplain(c, &vipml.ArgPanelExplain{
  68. Mid: a.Mid,
  69. }); err != nil {
  70. log.Error("s.vipRPC.PanelExplain(%+v) error(%v)", a, err)
  71. }
  72. return
  73. })
  74. if err = g.Wait(); err != nil {
  75. err = errors.WithStack(err)
  76. }
  77. return
  78. }
  79. // VipPanelV8 vip panel v8
  80. func (s *Service) VipPanelV8(c context.Context, a *model.ArgVipPanel) (res *model.VipPanelV8Resp, err error) {
  81. var (
  82. g errgroup.Group
  83. p *vipml.VipPirceResp5
  84. ts []*vipml.TipsResp
  85. )
  86. res = new(model.VipPanelV8Resp)
  87. g.Go(func() (err error) {
  88. if p, err = s.vipRPC.VipPanelInfo5(c, &vipml.ArgPanel{
  89. Mid: a.Mid,
  90. SortTp: a.SortTP,
  91. IP: a.IP,
  92. Device: a.Device,
  93. MobiApp: a.MobiApp,
  94. Platform: a.Platform,
  95. PanelType: a.PanelType,
  96. Build: a.Build,
  97. }); err != nil || p == nil {
  98. log.Error("s.vipRPC.VipPanelInfo2(%+v) error(%v)", a, err)
  99. return
  100. }
  101. res.Vps = p.Vps
  102. res.CodeSwitch = p.CodeSwitch
  103. res.GiveSwitch = p.GiveSwitch
  104. res.Privileges = p.Privileges
  105. res.CouponInfo = p.CouponInfo
  106. res.CouponSwith = p.CouponSwith
  107. return
  108. })
  109. g.Go(func() (err error) {
  110. if ts, err = s.vipRPC.Tips(c, &vipml.ArgTips{
  111. Version: a.Build,
  112. Platform: a.Platform,
  113. Position: vipml.PanelPosition,
  114. }); err != nil {
  115. log.Error("s.vipRPC.Tips(%+v) error(%v)", a, err)
  116. }
  117. if len(ts) == 0 {
  118. return
  119. }
  120. res.TipInfo = ts[0]
  121. return
  122. })
  123. g.Go(func() (err error) {
  124. if res.UserInfo, err = s.vipRPC.PanelExplain(c, &vipml.ArgPanelExplain{
  125. Mid: a.Mid,
  126. }); err != nil {
  127. log.Error("s.vipRPC.PanelExplain(%+v) error(%v)", a, err)
  128. }
  129. return
  130. })
  131. g.Go(func() (err error) {
  132. if res.AssociateVips, err = s.vipRPC.AssociateVips(c, &vipml.ArgAssociateVip{
  133. Platform: a.Platform,
  134. Device: a.Device,
  135. MobiApp: a.MobiApp,
  136. }); err != nil {
  137. log.Error("s.vipRPC.AssociateVips(%+v) error(%v)", a, err)
  138. }
  139. return
  140. })
  141. if err = g.Wait(); err != nil {
  142. err = errors.WithStack(err)
  143. }
  144. return
  145. }
  146. // VipPanelV9 vip panel v9
  147. func (s *Service) VipPanelV9(c context.Context, a *model.ArgVipPanel) (res *model.VipPanelRespV9, err error) {
  148. var (
  149. p *vipv1.VipUserPanelReply
  150. ts []*vipml.TipsResp
  151. )
  152. eg, ec := errgroup.WithContext(c)
  153. res = new(model.VipPanelRespV9)
  154. eg.Go(func() (err error) {
  155. if p, err = s.vipgRPC.VipUserPanel(ec, &vipv1.VipUserPanelReq{
  156. Mid: a.Mid,
  157. SortTp: int32(a.SortTP),
  158. Ip: a.IP,
  159. Device: a.Device,
  160. MobiApp: a.MobiApp,
  161. Platform: a.Platform,
  162. PanelType: a.PanelType,
  163. Build: a.Build,
  164. }); err != nil || p == nil {
  165. log.Error("s.vipRPC.VipPanelInfo2(%+v) error(%v)", a, err)
  166. return
  167. }
  168. res.Vps = p.PriceList
  169. res.CodeSwitch = p.CodeSwitch
  170. res.GiveSwitch = p.GiveSwitch
  171. res.Privileges = p.Privileges
  172. res.Coupon = p.Coupon
  173. res.CouponSwith = p.CouponSwitch
  174. return
  175. })
  176. eg.Go(func() (err error) {
  177. if ts, err = s.vipRPC.Tips(ec, &vipml.ArgTips{
  178. Version: a.Build,
  179. Platform: a.Platform,
  180. Position: vipml.PanelPosition,
  181. }); err != nil {
  182. log.Error("s.vipRPC.Tips(%+v) error(%v)", a, err)
  183. }
  184. if len(ts) == 0 {
  185. return
  186. }
  187. res.TipInfo = ts[0]
  188. return
  189. })
  190. eg.Go(func() (err error) {
  191. if res.UserInfo, err = s.vipRPC.PanelExplain(ec, &vipml.ArgPanelExplain{
  192. Mid: a.Mid,
  193. }); err != nil {
  194. log.Error("s.vipRPC.PanelExplain(%+v) error(%v)", a, err)
  195. }
  196. return
  197. })
  198. eg.Go(func() (err error) {
  199. if res.AssociateVips, err = s.vipRPC.AssociateVips(ec, &vipml.ArgAssociateVip{
  200. Platform: a.Platform,
  201. Device: a.Device,
  202. MobiApp: a.MobiApp,
  203. }); err != nil {
  204. log.Error("s.vipRPC.AssociateVips(%+v) error(%v)", a, err)
  205. }
  206. return
  207. })
  208. if err = eg.Wait(); err != nil {
  209. err = errors.WithStack(err)
  210. }
  211. return
  212. }