vip.go 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. package model
  2. import (
  3. col "go-common/app/service/main/coupon/model"
  4. vipv1 "go-common/app/service/main/vip/api"
  5. vipmol "go-common/app/service/main/vip/model"
  6. "go-common/library/time"
  7. )
  8. // vip tips.
  9. const (
  10. PanelPosition int8 = iota + 1
  11. PgcPosition
  12. )
  13. const (
  14. // PlatAndroid is int8 for android.
  15. PlatAndroid = int8(0)
  16. // PlatIPhone is int8 for iphone.
  17. PlatIPhone = int8(1)
  18. // PlatIPad is int8 for ipad.
  19. PlatIPad = int8(2)
  20. // PlatWPhone is int8 for wphone.
  21. PlatWPhone = int8(3)
  22. // PlatAndroidG is int8 for Android Googleplay.
  23. PlatAndroidG = int8(4)
  24. // PlatIPhoneI is int8 for Iphone Global.
  25. PlatIPhoneI = int8(5)
  26. // PlatIPadI is int8 for IPAD Global.
  27. PlatIPadI = int8(6)
  28. // PlatAndroidTV is int8 for AndroidTV Global.
  29. PlatAndroidTV = int8(7)
  30. // PlatAndroidI is int8 for Android Global.
  31. PlatAndroidI = int8(8)
  32. // PlatIpadHD is int8 for IpadHD
  33. PlatIpadHD = int8(9)
  34. // PlatAndroidB is int8 for Android Blue.
  35. PlatAndroidB = int8(10)
  36. // PlatIPhoneB is int8 for Android Blue.
  37. PlatIPhoneB = int8(11)
  38. )
  39. // resource id .
  40. const (
  41. ResourceBannerIPhone = "2850"
  42. ResourceBannerAndroid = "2857"
  43. ResourceBannerIPad = "2864"
  44. ResourceBuyIPhone = "2898"
  45. ResourceBuyAndroid = "2903"
  46. ResourceBuyIPad = "2908"
  47. )
  48. // IsAndroid check plat is android or ipad.
  49. func IsAndroid(plat int8) bool {
  50. return plat == PlatAndroid || plat == PlatAndroidG || plat == PlatAndroidI || plat == PlatAndroidB
  51. }
  52. // IsIOS check plat is iphone or ipad.
  53. func IsIOS(plat int8) bool {
  54. return plat == PlatIPad || plat == PlatIPhone || plat == PlatIPadI || plat == PlatIPhoneI
  55. }
  56. // IsIPhone check plat is iphone.
  57. func IsIPhone(plat int8) bool {
  58. return plat == PlatIPhone || plat == PlatIPhoneI
  59. }
  60. // IsIPad check plat is pad.
  61. func IsIPad(plat int8) bool {
  62. return plat == PlatIPad || plat == PlatIPadI || plat == PlatIpadHD
  63. }
  64. // IsIPhoneB check plat is iphone_b.
  65. func IsIPhoneB(plat int8) bool {
  66. return plat == PlatIPhoneB
  67. }
  68. // Plat .
  69. func Plat(mobiApp, device string) int8 {
  70. switch mobiApp {
  71. case "iphone":
  72. if device == "pad" {
  73. return PlatIPad
  74. }
  75. return PlatIPhone
  76. case "white":
  77. return PlatIPhone
  78. case "ipad":
  79. return PlatIpadHD
  80. case "android":
  81. return PlatAndroid
  82. case "win", "winphone":
  83. return PlatWPhone
  84. case "android_G":
  85. return PlatAndroidG
  86. case "android_i":
  87. return PlatAndroidI
  88. case "iphone_i":
  89. if device == "pad" {
  90. return PlatIPadI
  91. }
  92. return PlatIPhoneI
  93. case "ipad_i":
  94. return PlatIPadI
  95. case "android_tv":
  96. return PlatAndroidTV
  97. case "android_b":
  98. return PlatAndroidB
  99. case "iphone_b":
  100. return PlatIPhoneB
  101. }
  102. return PlatIPhone
  103. }
  104. // VIPInfo vip info.
  105. type VIPInfo struct {
  106. Mid int64 `json:"mid"`
  107. Type int8 `json:"vipType"`
  108. DueDate int64 `json:"vipDueDate"`
  109. DueMsec int64 `json:"vipSurplusMsec"`
  110. DueRemark string `json:"dueRemark"`
  111. Status int8 `json:"accessStatus"`
  112. VipStatus int8 `json:"vipStatus"`
  113. }
  114. // TipsReq tips request.
  115. type TipsReq struct {
  116. Version int64 `form:"build"`
  117. Platform string `form:"platform" validate:"required"`
  118. Position int8 `form:"position" default:"1"`
  119. }
  120. //CodeInfoReq code info request
  121. type CodeInfoReq struct {
  122. Appkey string `form:"appkey" validate:"required"`
  123. Sign string `form:"sign"`
  124. Ts time.Time `form:"ts"`
  125. StartTime time.Time `form:"start_time" validate:"required"`
  126. EndTime time.Time `form:"end_time" validate:"required"`
  127. Cursor int64 `form:"cursor"`
  128. }
  129. // VipPanelRes .
  130. type VipPanelRes struct {
  131. Device string `form:"device"`
  132. MobiApp string `form:"mobi_app"`
  133. Platform string `form:"platform" default:"pc"`
  134. SortTP int8 `form:"sort_type"`
  135. PanelType string `form:"panel_type" default:"normal"`
  136. Month int32 `form:"month"`
  137. SubType int32 `form:"order_type"`
  138. Build int64 `form:"build"`
  139. }
  140. // ArgVipCoupon req.
  141. type ArgVipCoupon struct {
  142. ID int64 `form:"id" validate:"required,min=1,gte=1"`
  143. }
  144. // ArgVipCancelPay req.
  145. type ArgVipCancelPay struct {
  146. CouponToken string `form:"coupon_token" validate:"required"`
  147. }
  148. // coupon cancel explain
  149. const (
  150. CouponCancelExplain = "解锁成功,请重新选择劵信息"
  151. )
  152. // const for vip
  153. const (
  154. MobiAppIphone = iota + 1
  155. MobiAppIpad
  156. MobiAppPC
  157. MobiAppANDROID
  158. )
  159. //MobiAppByName .
  160. var MobiAppByName = map[string]int{
  161. "iphone": MobiAppIphone,
  162. "ipad": MobiAppIpad,
  163. "pc": MobiAppPC,
  164. "android": MobiAppANDROID,
  165. }
  166. // MobiAppPlat .
  167. func MobiAppPlat(mobiApp string) (p int) {
  168. p = MobiAppByName[mobiApp]
  169. if p == 0 {
  170. // def pc.
  171. p = MobiAppPC
  172. }
  173. return
  174. }
  175. // ArgVipPanel arg panel.
  176. type ArgVipPanel struct {
  177. Device string `form:"device"`
  178. Build int64 `form:"build"`
  179. MobiApp string `form:"mobi_app"`
  180. Platform string `form:"platform" default:"pc"`
  181. SortTP int8 `form:"sort_type"`
  182. PanelType string `form:"panel_type" default:"normal"`
  183. Mid int64
  184. IP string
  185. }
  186. // VipPanelResp vip panel resp.
  187. type VipPanelResp struct {
  188. Vps []*vipmol.VipPanelInfo `json:"price_list"`
  189. CodeSwitch int8 `json:"code_switch"`
  190. GiveSwitch int8 `json:"give_switch"`
  191. Privileges map[int8]*vipmol.PrivilegesResp `json:"privileges,omitempty"`
  192. TipInfo *vipmol.TipsResp `json:"tip_info,omitempty"`
  193. UserInfo *vipmol.VipPanelExplain `json:"user_info,omitempty"`
  194. }
  195. // VipPanelV8Resp vip panel v8 resp.
  196. type VipPanelV8Resp struct {
  197. Vps []*vipmol.VipPanelInfo `json:"price_list"`
  198. CouponInfo *col.CouponAllowancePanelInfo `json:"coupon_info,omitempty"`
  199. CouponSwith int8 `json:"coupon_switch,omitempty"`
  200. CodeSwitch int8 `json:"code_switch"`
  201. GiveSwitch int8 `json:"give_switch"`
  202. Privileges map[int8]*vipmol.PrivilegesResp `json:"privileges,omitempty"`
  203. TipInfo *vipmol.TipsResp `json:"tip_info,omitempty"`
  204. UserInfo *vipmol.VipPanelExplain `json:"user_info,omitempty"`
  205. AssociateVips []*vipmol.AssociateVipResp `json:"associate_vips,omitempty"`
  206. }
  207. // VipPanelRespV9 vip panel resp v9.
  208. type VipPanelRespV9 struct {
  209. Vps []*vipv1.ModelVipPanelInfo `json:"price_list,omitempty"`
  210. Coupon *vipv1.CouponBySuitIDReply `json:"coupon,omitempty"`
  211. CouponSwith int32 `json:"coupon_switch"`
  212. CodeSwitch int32 `json:"code_switch"`
  213. GiveSwitch int32 `json:"give_switch"`
  214. Privileges map[int32]*vipv1.ModelPrivilegeResp `json:"privileges,omitempty"`
  215. TipInfo *vipmol.TipsResp `json:"tip_info,omitempty"`
  216. UserInfo *vipmol.VipPanelExplain `json:"user_info,omitempty"`
  217. AssociateVips []*vipmol.AssociateVipResp `json:"associate_vips,omitempty"`
  218. }
  219. // ManagerResp manager resp.
  220. type ManagerResp struct {
  221. JointlyInfo []*vipmol.JointlyResp `json:"jointly_info"`
  222. }
  223. //ArgCreateOrder2 .
  224. type ArgCreateOrder2 struct {
  225. Month int32 `form:"months" validate:"required,min=1,gte=1"`
  226. Platform string `form:"platform"`
  227. MobiApp string `form:"mobi_app"`
  228. Device string `form:"device"`
  229. AppID int64 `form:"appId"`
  230. AppSubID string `form:"appSubId"`
  231. OrderType int8 `form:"orderType"`
  232. Dtype int8 `form:"dtype"`
  233. ReturnURL string `form:"returnUrl"`
  234. CouponToken string `form:"coupon_token"`
  235. Bmid int64 `form:"bmid"`
  236. PanelType string `form:"panel_type" default:"normal"`
  237. Build int64 `form:"build"`
  238. IP string
  239. Mid int64
  240. }
  241. //ArgCreateAssociateOrder create asoociate order .
  242. type ArgCreateAssociateOrder struct {
  243. Month int32 `form:"months" validate:"required,min=1,gte=1"`
  244. Platform string `form:"platform" default:"pc"`
  245. MobiApp string `form:"mobi_app"`
  246. Device string `form:"device"`
  247. AppID int64 `form:"appId"`
  248. AppSubID string `form:"appSubId"`
  249. OrderType int8 `form:"orderType"`
  250. Dtype int8 `form:"dtype"`
  251. ReturnURL string `form:"returnUrl"`
  252. CouponToken string `form:"coupon_token"`
  253. Bmid int64 `form:"bmid"`
  254. PanelType string `form:"panel_type" default:"normal"`
  255. Build int64 `form:"build"`
  256. IP string
  257. Mid int64
  258. }
  259. // ArgResource struct .
  260. type ArgResource struct {
  261. MID int64
  262. ResIDs string
  263. Plat int8 `form:"plat"`
  264. Build int `form:"build" validate:"required"`
  265. MobiApp string `form:"mobi_app" validate:"required"`
  266. Device string `form:"device"`
  267. Buvid string
  268. IP string
  269. Network string `form:"network"`
  270. Channel string
  271. }
  272. // ArgCouponBySuitID coupon by suit id.
  273. type ArgCouponBySuitID struct {
  274. Mid int64
  275. Sid int64 `form:"id" validate:"required,min=1,gte=1"`
  276. Platform string `form:"platform" default:"pc"`
  277. MobiApp string `form:"mobi_app"`
  278. Device string `form:"device"`
  279. PanelType string `form:"panel_type" default:"normal"`
  280. Build int64 `form:"build"`
  281. }