api.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package pay
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/archive"
  5. "go-common/library/ecode"
  6. "go-common/library/log"
  7. "go-common/library/queue/databus/report"
  8. "net/url"
  9. "strconv"
  10. )
  11. const (
  12. _assURI = "/x/internal/ugcpay/asset"
  13. )
  14. // Ass 查看付费信息
  15. // UGCPayAssetInvalid = New(88001) // ugcpay 内容无效
  16. func (d *Dao) Ass(c context.Context, aid int64, ip string) (assert *archive.PayAsset, registed bool, err error) {
  17. params := url.Values{}
  18. params.Set("oid", strconv.FormatInt(aid, 10))
  19. params.Set("otype", "archive")
  20. params.Set("currency", "bp")
  21. var res struct {
  22. Code int `json:"code"`
  23. Data *archive.PayAsset `json:"data"`
  24. }
  25. if err = d.client.Get(c, d.assURI, ip, params, &res); err != nil {
  26. log.Error("d.client.Do uri(%s) aid(%d) code(%d) error(%v)", d.assURI+"?"+params.Encode(), aid, res.Code, err)
  27. err = ecode.CreativePayAPIErr
  28. return
  29. }
  30. log.Info("UgcPay AssView url(%s)", d.assURI+"?"+params.Encode())
  31. if res.Code != 0 {
  32. log.Error("UgcPay asset AssView url(%s) res(%+v); aid(%d),ip(%s),code(%d),error(%v)", d.assURI, res, aid, ip, res.Code, err)
  33. if res.Code == 88001 {
  34. return nil, false, nil
  35. }
  36. err = ecode.CreativePayAPIErr
  37. return
  38. }
  39. if res.Data != nil {
  40. assert = res.Data
  41. assert.Price = res.Data.Price / 100
  42. registed = true
  43. }
  44. return
  45. }
  46. // UserAcceptProtocol fn: 判断当前的协议是否已经同意过,前端必须传递当前的投稿协议ID
  47. func (d *Dao) UserAcceptProtocol(c context.Context, protocolID string, mid int64) (accept bool, err error) {
  48. type Res struct {
  49. Page *struct {
  50. Num int `json:"num"`
  51. Size int `json:"size"`
  52. Total int `json:"total"`
  53. } `json:"page"`
  54. Result []*report.UserActionLog `json:"result"`
  55. }
  56. res := &Res{}
  57. r := d.es.NewRequest("log_user_action")
  58. r.Index("log_user_action_83_all").Pn(1).Ps(2000).OrderScoreFirst(true)
  59. r.WhereEq("str_0", protocolID).WhereEq("mid", mid)
  60. r.Order("ctime", "desc")
  61. log.Info("UserAcceptProtocol params(%s)", r.Params())
  62. if err = r.Scan(c, res); err != nil {
  63. log.Error("UserAcceptProtocol r.Scan params(%s)|error(%v)", r.Params(), err)
  64. return
  65. }
  66. if res.Page != nil && res.Page.Total == 0 {
  67. accept = false
  68. } else {
  69. accept = true
  70. }
  71. return
  72. }