dao.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. package reply
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/conf"
  5. "go-common/app/interface/main/creative/model/reply"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. httpx "go-common/library/net/http/blademaster"
  9. "go-common/library/xstr"
  10. "net/url"
  11. "strconv"
  12. )
  13. const (
  14. _replyMinfo = "/x/internal/v2/reply/minfo"
  15. _replyRecover = "/x/internal/v2/reply/recover"
  16. )
  17. // Dao define
  18. type Dao struct {
  19. c *conf.Config
  20. // http
  21. client *httpx.Client
  22. // uri
  23. replyMinfoURI string
  24. replyRecoverURI string
  25. }
  26. // New init dao
  27. func New(c *conf.Config) (d *Dao) {
  28. d = &Dao{
  29. c: c,
  30. client: httpx.NewClient(c.HTTPClient.Slow),
  31. replyMinfoURI: c.Host.API + _replyMinfo,
  32. replyRecoverURI: c.Host.API + _replyRecover,
  33. }
  34. return
  35. }
  36. // ReplyRecover recover reply
  37. func (d *Dao) ReplyRecover(c context.Context, mid, oid, rpid int64, ip string) (err error) {
  38. params := url.Values{}
  39. params.Set("type", "1")
  40. params.Set("remark", "up主撤销协管员操作")
  41. params.Set("adid", strconv.FormatInt(mid, 10))
  42. params.Set("oid", strconv.FormatInt(oid, 10))
  43. params.Set("rpid", strconv.FormatInt(rpid, 10))
  44. var res struct {
  45. Code int `json:"code"`
  46. }
  47. if err = d.client.Post(c, d.replyRecoverURI, ip, params, &res); err != nil {
  48. log.Error("replyRecoverURI url(%s) response(%+v) error(%v)", d.replyRecoverURI+"?"+params.Encode(), res, err)
  49. return
  50. }
  51. if res.Code != 0 {
  52. err = ecode.Int(res.Code)
  53. log.Error("replyRecoverURI url(%s) error(%v)", d.replyRecoverURI+"?"+params.Encode(), err)
  54. return
  55. }
  56. return
  57. }
  58. // ReplyMinfo get multi reply info
  59. func (d *Dao) ReplyMinfo(c context.Context, ak, ck string, mid, tp int64, DeriveIds, DeriveOids []int64, ip string) (ReplyMinfo map[int64]*reply.Reply, err error) {
  60. params := url.Values{}
  61. params.Set("type", strconv.FormatInt(tp, 10))
  62. params.Set("oid", xstr.JoinInts(DeriveOids))
  63. params.Set("rpid", xstr.JoinInts(DeriveIds))
  64. var res struct {
  65. Code int `json:"code"`
  66. Data map[int64]*reply.Reply `json:"data"`
  67. }
  68. if err = d.client.Get(c, d.replyMinfoURI, ip, params, &res); err != nil {
  69. log.Error("replyMinfoURI url(%s) response(%+v) error(%v)", d.replyMinfoURI+"?"+params.Encode(), res, err)
  70. return
  71. }
  72. if res.Code != 0 {
  73. log.Error("replyMinfoURI url(%s) res(%v)", d.replyMinfoURI+"?"+params.Encode(), res)
  74. err = ecode.Int(res.Code)
  75. return
  76. }
  77. ReplyMinfo = res.Data
  78. return
  79. }