history.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package archive
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "go-common/app/interface/main/creative/model/archive"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. )
  10. const (
  11. _hList = "/videoup/history/list"
  12. _hView = "/videoup/history/view"
  13. )
  14. // HistoryList get the history of aid
  15. func (d *Dao) HistoryList(c context.Context, mid, aid int64, ip string) (historys []*archive.ArcHistory, err error) {
  16. params := url.Values{}
  17. params.Set("aid", strconv.FormatInt(aid, 10))
  18. params.Set("mid", strconv.FormatInt(mid, 10))
  19. var res struct {
  20. Code int `json:"code"`
  21. Data []*archive.ArcHistory `json:"data"`
  22. }
  23. if err = d.client.Get(c, d.hList, ip, params, &res); err != nil {
  24. log.Error("archive.HistoryList url(%s) mid(%d) error(%v)", d.hList+"?"+params.Encode(), mid, err)
  25. err = ecode.CreativeArchiveAPIErr
  26. return
  27. }
  28. if res.Code != 0 {
  29. log.Error("archive.HistoryList url(%s) mid(%d) res(%v)", d.hList+"?"+params.Encode(), mid, res)
  30. err = ecode.CreativeArchiveAPIErr
  31. return
  32. }
  33. historys = res.Data
  34. return
  35. }
  36. // HistoryView get the history of hid
  37. func (d *Dao) HistoryView(c context.Context, mid, hid int64, ip string) (history *archive.ArcHistory, err error) {
  38. params := url.Values{}
  39. params.Set("hid", strconv.FormatInt(hid, 10))
  40. params.Set("mid", strconv.FormatInt(mid, 10))
  41. var res struct {
  42. Code int `json:"code"`
  43. Data *archive.ArcHistory `json:"data"`
  44. }
  45. if err = d.client.Get(c, d.hView, ip, params, &res); err != nil {
  46. log.Error("archive.HistoryView url(%s) mid(%d) error(%v)", d.hView+"?"+params.Encode(), mid, err)
  47. err = ecode.CreativeArchiveAPIErr
  48. return
  49. }
  50. if res.Code != 0 {
  51. log.Error("archive.HistoryView url(%s) mid(%d) res(%v)", d.hView+"?"+params.Encode(), mid, res)
  52. err = ecode.CreativeArchiveAPIErr
  53. return
  54. }
  55. history = res.Data
  56. return
  57. }