archive_stat.go 728 B

12345678910111213141516171819202122232425262728
  1. package service
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/growup/model"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. )
  9. // avStat get stat from hbase.
  10. func (s *Service) avStat(c context.Context, mid int64, ip string) (up *model.UpBaseStat, err error) {
  11. hbaseDate := time.Now().AddDate(0, 0, -1).Add(-12 * time.Hour).Format("20060102")
  12. up, err = s.dao.UpStat(c, mid, hbaseDate)
  13. if err != nil || up == nil {
  14. log.Error("s.data.UpStat error(%v) mid(%d) up(%v) ip(%s)", err, mid, up, ip)
  15. err = ecode.CreativeDataErr
  16. return
  17. }
  18. pfl, err := s.dao.ProfileWithStat(c, mid)
  19. if err != nil {
  20. return
  21. }
  22. up.Fans = int64(pfl.Follower)
  23. log.Info("s.data.UpStat hbaseDate(%+v) mid(%d)", up, mid)
  24. return
  25. }