api.go 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. package newcomer
  2. import (
  3. "context"
  4. "encoding/json"
  5. "errors"
  6. "net/http"
  7. "net/url"
  8. "strconv"
  9. "strings"
  10. "time"
  11. "fmt"
  12. "go-common/app/interface/main/creative/conf"
  13. "go-common/app/interface/main/creative/dao/tool"
  14. "go-common/library/ecode"
  15. "go-common/library/log"
  16. "go-common/library/xstr"
  17. "math/rand"
  18. )
  19. func init() {
  20. rand.Seed(time.Now().UnixNano())
  21. }
  22. // Mall receive mall coupon code.
  23. func (d *Dao) Mall(c context.Context, mid int64, couponID, uname string) (err error) {
  24. type params struct {
  25. MID int64 `json:"mid"`
  26. CouponID string `json:"couponId"`
  27. Uname string `json:"uname"`
  28. }
  29. p := params{}
  30. p.MID = mid
  31. p.CouponID = couponID //优惠券id
  32. p.Uname = uname //抱团购类型 uname必传
  33. paramJSON, err := json.Marshal(p)
  34. if err != nil {
  35. log.Error("Mall json.Marshal param(%+v) error(%v)", p, err)
  36. return
  37. }
  38. paramStr := string(paramJSON)
  39. var (
  40. req *http.Request
  41. )
  42. if req, err = http.NewRequest("POST", d.mallURI, strings.NewReader(paramStr)); err != nil {
  43. log.Error("Mall http.NewRequest url(%s) error(%v)", d.mallURI+"?"+paramStr, err)
  44. err = ecode.CreativeNewcomerMallAPIErr
  45. return
  46. }
  47. log.Info("Mall url(%s)", d.mallURI+"?"+paramStr)
  48. req.Header.Set("Content-Type", "application/json")
  49. var res struct {
  50. Code int `json:"code"`
  51. Msg string `json:"msg"`
  52. }
  53. if err = d.client.Do(c, req, &res); err != nil {
  54. log.Error("Mall d.client.Do url(%s) res(%v) err(%v)", d.mallURI+"?"+paramStr, res, err)
  55. err = ecode.CreativeNewcomerMallAPIErr
  56. return
  57. }
  58. if res.Code != 0 {
  59. log.Error("Mall url(%s) res(%v)", d.mallURI+"?"+paramStr, res)
  60. err = ecode.Int(res.Code)
  61. }
  62. return
  63. }
  64. // BCoin receive b coin.
  65. func (d *Dao) BCoin(c context.Context, mid int64, activityID string, money int64) (err error) {
  66. var (
  67. req *http.Request
  68. params = url.Values{}
  69. )
  70. params.Set("mid", strconv.FormatInt(mid, 10))
  71. params.Set("activity_id", activityID) //活动券id uat-217 pre-266
  72. params.Set("money", strconv.FormatInt(money, 10)) //decimal 类型 领取的数量,最大保留两位小数
  73. params.Set("appkey", conf.Conf.App.Key)
  74. params.Set("appsecret", conf.Conf.App.Secret)
  75. params.Set("ts", strconv.FormatInt(time.Now().Unix(), 10))
  76. var (
  77. query, _ = tool.Sign(params)
  78. mallURL = d.bPayURI
  79. )
  80. log.Info("BCoin url(%s)", mallURL+"?"+query)
  81. if req, err = http.NewRequest("POST", mallURL, strings.NewReader(params.Encode())); err != nil {
  82. log.Error("BCoin url(%s) error(%v)", mallURL, err)
  83. err = ecode.CreativeNewcomerBCoinAPIErr
  84. return
  85. }
  86. req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
  87. var res struct {
  88. Code int `json:"code"`
  89. Msg string `json:"msg"`
  90. }
  91. if err = d.client.Do(c, req, &res); err != nil {
  92. log.Error("BCoin d.client.Do url(%s) res(%+v) err(%v)", mallURL, res, err)
  93. err = ecode.CreativeNewcomerBCoinAPIErr
  94. return
  95. }
  96. if res.Code != 0 {
  97. log.Error("BCoin url(%s) res(%+v)", d.bPayURI+"?"+params.Encode(), res)
  98. err = ecode.Int(res.Code)
  99. }
  100. return
  101. }
  102. // Pendant receive pendant.
  103. func (d *Dao) Pendant(c context.Context, mid int64, priceID string, expires int64) (err error) {
  104. var (
  105. req *http.Request
  106. params = url.Values{}
  107. )
  108. pid, err := strconv.ParseInt(priceID, 10, 64)
  109. if err != nil {
  110. return
  111. }
  112. params.Set("mids", strconv.FormatInt(mid, 10))
  113. params.Set("pid", strconv.FormatInt(pid, 10)) //挂件ID
  114. params.Set("expire", strconv.FormatInt(expires, 10)) //有效期(单位:天)
  115. params.Set("appkey", conf.Conf.App.Key)
  116. params.Set("appsecret", conf.Conf.App.Secret)
  117. params.Set("ts", strconv.FormatInt(time.Now().Unix(), 10))
  118. var (
  119. query, _ = tool.Sign(params)
  120. pendURL = d.pendantURI
  121. )
  122. log.Info("Pendant url(%s)", pendURL+"?"+query)
  123. if req, err = http.NewRequest("POST", pendURL, strings.NewReader(params.Encode())); err != nil {
  124. log.Error("Pendant url(%s) error(%v)", pendURL, err)
  125. err = ecode.CreativeNewcomerPendantAPIErr
  126. return
  127. }
  128. req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
  129. var res struct {
  130. Code int `json:"code"`
  131. Msg string `json:"msg"`
  132. }
  133. if err = d.client.Do(c, req, &res); err != nil {
  134. log.Error("Pendant d.client.Do url(%s) res(%+v) err(%v)", pendURL, res, err)
  135. err = ecode.CreativeNewcomerPendantAPIErr
  136. return
  137. }
  138. if res.Code != 0 {
  139. log.Error("Pendant url(%s) res(%v)", pendURL, res)
  140. err = ecode.Int(res.Code)
  141. }
  142. return
  143. }
  144. // BigMemberCoupon receive Coupon
  145. func (d *Dao) BigMemberCoupon(c context.Context, mid int64, batchToken string) (err error) {
  146. var (
  147. req *http.Request
  148. params = url.Values{}
  149. )
  150. params.Set("mid", strconv.FormatInt(mid, 10))
  151. params.Set("batch_token", batchToken) //资源批次需提前申请,金额固定,不允许更改
  152. params.Set("order_no", genOrderNO(mid)) //每次领取的订单号不允许重复,同一订单同一业务方AppKey只允许领取一次
  153. params.Set("appkey", conf.Conf.App.Key)
  154. params.Set("appsecret", conf.Conf.App.Secret)
  155. params.Set("ts", strconv.FormatInt(time.Now().Unix(), 10))
  156. var (
  157. query, _ = tool.Sign(params)
  158. bigMemberURL = d.bigMemberURI
  159. )
  160. log.Info("BigMemberCoupon url(%s)", bigMemberURL+"?"+query)
  161. if req, err = http.NewRequest("POST", bigMemberURL, strings.NewReader(params.Encode())); err != nil {
  162. log.Error("BigMemberCoupon url(%s) error(%v)", bigMemberURL, err)
  163. err = ecode.CreativeNewcomerBigMemberErr
  164. return
  165. }
  166. req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
  167. var res struct {
  168. Code int `json:"code"`
  169. Msg string `json:"message"`
  170. Data string `json:"data"`
  171. }
  172. if err = d.client.Do(c, req, &res); err != nil {
  173. log.Error("BigMemberCoupon d.client.Do url(%s) res(%+v) err(%v)", bigMemberURL, res, err)
  174. err = ecode.CreativeNewcomerBigMemberErr
  175. return
  176. }
  177. if res.Code != 0 {
  178. log.Error("BigMemberCoupon url(%s) res(%v)", bigMemberURL, res)
  179. err = ecode.Int(res.Code)
  180. }
  181. return
  182. }
  183. // generate orderNo
  184. func genOrderNO(mid int64) string {
  185. s := fmt.Sprintf("%v%s", mid, time.Now().Format("20060102150405"))
  186. if len(s) >= 32 {
  187. return s[0:32]
  188. }
  189. size := 32 - len(s)
  190. bys := make([]byte, size)
  191. for i := 0; i < size; i++ {
  192. bys[i] = uint8(48 + rand.Intn(10))
  193. }
  194. return s + string(bys)
  195. }
  196. // SendNotify send msg notify user
  197. func (d *Dao) SendNotify(c context.Context, mids []int64, mc, title, context string) (err error) {
  198. var (
  199. params = url.Values{}
  200. res struct {
  201. Code int `json:"code"`
  202. Msg string `json:"msg"`
  203. Data *struct {
  204. TotalCount int `json:"total_count"`
  205. ErrorCount int `json:"error_count"`
  206. ErrorMidList []int64 `json:"error_mid_list"`
  207. } `json:"data"`
  208. }
  209. )
  210. params.Set("mc", mc) //消息码,用于识别消息类别
  211. params.Set("data_type", "4") //消息类型:1、回复我的 2、@我 3、收到的爱 4、业务通知 5、系统公告
  212. params.Set("title", title) //消息标题
  213. params.Set("context", context) //消息实体内容
  214. params.Set("mid_list", xstr.JoinInts(mids)) //用于接收该消息的用户mid列表,不超过1000个(半角逗号分割)
  215. log.Info("SendNotify params(%+v)|msgURI(%s)", params.Encode(), d.msgNotifyURI)
  216. if err = d.client.Post(c, d.msgNotifyURI, "", params, &res); err != nil {
  217. log.Error("d.httpClient.Post(%s,%v,%d)", d.msgNotifyURI, params, err)
  218. return
  219. }
  220. if res.Code != 0 {
  221. err = errors.New("code != 0")
  222. log.Error("d.httpClient.Post(%s,%v,%v,%d)", d.msgNotifyURI, params, err, res.Code)
  223. }
  224. if res.Data != nil {
  225. log.Info("SendNotify log total_count(%d) error_count(%d) error_mid_list(%v)", res.Data.TotalCount, res.Data.ErrorCount, res.Data.ErrorMidList)
  226. }
  227. return
  228. }