history.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package archive
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/archive"
  5. pubSvc "go-common/app/interface/main/creative/service"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. )
  9. // HistoryList get the history of aid
  10. func (s *Service) HistoryList(c context.Context, mid, aid int64, ip string) (historys []*archive.ArcHistory, err error) {
  11. if historys, err = s.arc.HistoryList(c, mid, aid, ip); err != nil {
  12. log.Error("s.arc.HistoryList(%d,%d) err(%v)", mid, aid, err)
  13. return
  14. }
  15. for key, history := range historys {
  16. if history.Mid > 0 && history.Mid != mid {
  17. err = ecode.ArchiveOwnerErr
  18. return
  19. }
  20. historys[key].Cover = pubSvc.CoverURL(history.Cover)
  21. }
  22. return
  23. }
  24. // HistoryView get the history of hid
  25. func (s *Service) HistoryView(c context.Context, mid, hid int64, ip string) (history *archive.ArcHistory, err error) {
  26. if history, err = s.arc.HistoryView(c, mid, hid, ip); err != nil {
  27. log.Error("s.arc.HistoryView(%d,%d) err(%v)", mid, hid, err)
  28. return
  29. }
  30. if history.Mid > 0 && history.Mid != mid {
  31. err = ecode.ArchiveOwnerErr
  32. history = nil
  33. return
  34. }
  35. history.Cover = pubSvc.CoverURL(history.Cover)
  36. return
  37. }