api.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. package usersuit
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. usmdl "go-common/app/service/main/usersuit/model"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. )
  10. const (
  11. _groupInfo = "/x/internal/pendant/groupInfo"
  12. _entryGroup = "/x/internal/pendant/entryGroup"
  13. _vipGroup = "/x/internal/pendant/vipGroup"
  14. _pendantInfo = "/x/internal/pendant/pendantByID"
  15. _packageInfo = "/x/internal/pendant/package"
  16. _orderInfo = "/x/internal/pendant/order"
  17. _orderHistory = "/x/internal/pendant/orderHistory"
  18. )
  19. // Group get pendant group info.
  20. func (d *Dao) Group(c context.Context, ip string) (groups []*usmdl.PendantGroupInfo, err error) {
  21. var res struct {
  22. Code int `json:"code"`
  23. Data []*usmdl.PendantGroupInfo `json:"data"`
  24. }
  25. if err = d.http.Get(c, d.groupURL, ip, nil, &res); err != nil {
  26. log.Error("d.http.Get(%s) error(%v)", d.groupURL, err)
  27. return
  28. }
  29. if res.Code != ecode.OK.Code() {
  30. err = ecode.Int(res.Code)
  31. log.Error("d.http.Get(%s) error(%v)", d.groupURL, err)
  32. return
  33. }
  34. groups = res.Data
  35. return
  36. }
  37. // GroupEntry get entry group.
  38. func (d *Dao) GroupEntry(c context.Context, ip string) (group *usmdl.PendantGroupInfo, err error) {
  39. var res struct {
  40. Code int `json:"code"`
  41. Data *usmdl.PendantGroupInfo `json:"data"`
  42. }
  43. if err = d.http.Get(c, d.entryGroupURL, ip, nil, &res); err != nil {
  44. log.Error("d.http.Get(%s) error(%v)", d.entryGroupURL, err)
  45. return
  46. }
  47. if res.Code != ecode.OK.Code() {
  48. err = ecode.Int(res.Code)
  49. log.Error("d.http.Get(%s) error(%v)", d.entryGroupURL, err)
  50. return
  51. }
  52. group = res.Data
  53. return
  54. }
  55. // GroupVip get vip group.
  56. func (d *Dao) GroupVip(c context.Context, ip string) (group *usmdl.PendantGroupInfo, err error) {
  57. var res struct {
  58. Code int `json:"code"`
  59. Data *usmdl.PendantGroupInfo `json:"data"`
  60. }
  61. if err = d.http.Get(c, d.vipGroupURL, ip, nil, &res); err != nil {
  62. log.Error("d.http.Get(%s) error(%v)", d.vipGroupURL, err)
  63. return
  64. }
  65. if res.Code != 0 {
  66. err = ecode.Int(res.Code)
  67. log.Error("d.http.Get(%s) error(%v)", d.vipGroupURL, err)
  68. return
  69. }
  70. group = res.Data
  71. return
  72. }
  73. // Pendant get pendant info.
  74. func (d *Dao) Pendant(c context.Context, pid int64, ip string) (pendant *usmdl.Pendant, err error) {
  75. var res struct {
  76. Code int `json:"code"`
  77. Data *usmdl.Pendant `json:"data"`
  78. }
  79. params := url.Values{}
  80. params.Set("pid", strconv.FormatInt(pid, 10))
  81. if err = d.http.Get(c, d.pendantURL, ip, params, &res); err != nil {
  82. log.Error("d.http.Get(%s) error(%v)", d.pendantURL, err)
  83. return
  84. }
  85. if res.Code != ecode.OK.Code() {
  86. err = ecode.Int(res.Code)
  87. log.Error("d.http.Get(%s) error(%v)", d.pendantURL, err)
  88. return
  89. }
  90. pendant = res.Data
  91. return
  92. }
  93. // Packages get package info.
  94. func (d *Dao) Packages(c context.Context, mid int64, ip string) (pkg []*usmdl.PendantPackage, err error) {
  95. var res struct {
  96. Code int `json:"code"`
  97. Data []*usmdl.PendantPackage `json:"data"`
  98. }
  99. params := url.Values{}
  100. params.Set("mid", strconv.FormatInt(mid, 10))
  101. if err = d.http.Get(c, d.packageURL, ip, params, &res); err != nil {
  102. log.Error("d.http.Get(%s) error(%v)", d.packageURL, err)
  103. return
  104. }
  105. if res.Code != ecode.OK.Code() {
  106. err = ecode.Int(res.Code)
  107. log.Error("d.http.Get(%s) error(%v)", d.packageURL, err)
  108. return
  109. }
  110. pkg = res.Data
  111. return
  112. }
  113. // Order order pendant.
  114. func (d *Dao) Order(c context.Context, mid, pid, expires int64, moneyType int8, ip string) (payInfo *usmdl.PayInfo, err error) {
  115. params := url.Values{}
  116. params.Set("moneytype", strconv.Itoa(int(expires)))
  117. params.Set("expires", strconv.FormatInt(expires, 10))
  118. params.Set("mid", strconv.FormatInt(mid, 10))
  119. params.Set("pid", strconv.FormatInt(pid, 10))
  120. var res struct {
  121. Code int `json:"code"`
  122. Data *usmdl.PayInfo `json:"data"`
  123. }
  124. if err = d.http.Post(c, d.orderURL, ip, params, &res); err != nil {
  125. log.Error("d.http.Post(%d) url(%s) error(%v)", mid, d.orderURL, err)
  126. return
  127. }
  128. if res.Code != ecode.OK.Code() {
  129. err = ecode.Int(res.Code)
  130. log.Error("d.http.Post(%d) url(%s) error(%v)", mid, d.orderURL, err)
  131. return
  132. }
  133. payInfo = res.Data
  134. return
  135. }
  136. // OrderHistory get order history by mid.
  137. func (d *Dao) OrderHistory(c context.Context, mid, page int64, payType int8, orderID, ip string) (hs []*usmdl.PendantOrderInfo, count map[string]int64, err error) {
  138. params := url.Values{}
  139. params.Set("orderID", orderID)
  140. params.Set("mid", strconv.FormatInt(mid, 10))
  141. params.Set("page", strconv.FormatInt(page, 10))
  142. params.Set("payType", strconv.Itoa(int(payType)))
  143. var res struct {
  144. Code int `json:"code"`
  145. Orders []*usmdl.PendantOrderInfo `json:"data"`
  146. Count map[string]int64 `json:"count"`
  147. }
  148. if err = d.http.Get(c, d.orderHistory, ip, params, &res); err != nil {
  149. log.Error("d.http.Get(%d) url(%s) error(%v)", mid, d.orderHistory, err)
  150. return
  151. }
  152. if res.Code != ecode.OK.Code() {
  153. err = ecode.Int(res.Code)
  154. log.Error("d.http.Get(%s) error(%v)", d.orderHistory, err)
  155. return
  156. }
  157. hs = res.Orders
  158. count = res.Count
  159. return
  160. }