archive_stat.go 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package dao
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "strconv"
  7. "go-common/app/interface/main/growup/model"
  8. article "go-common/app/interface/openplatform/article/model"
  9. "go-common/library/ecode"
  10. "go-common/library/log"
  11. )
  12. // ArticleStat article stat
  13. func (d *Dao) ArticleStat(c context.Context, mid int64, ip string) (res article.UpStat, err error) {
  14. arg := &article.ArgMid{Mid: mid, RealIP: ip}
  15. if res, err = d.art.CreationUpStat(c, arg); err != nil {
  16. log.Error("d.art.CreationUpStat(%+v) error(%v)", arg, err)
  17. if _, er := strconv.ParseInt(err.Error(), 10, 64); er != nil {
  18. err = ecode.CreativeArticleRPCErr
  19. }
  20. }
  21. return
  22. }
  23. func (d *Dao) getUpBaseStatCache(c context.Context, mid int64, date string) (data *model.UpBaseStat, err error) {
  24. key := fmt.Sprintf("growup-up-status:%d-%s", mid, date)
  25. res, err := d.getCacheVal(c, key)
  26. if err != nil {
  27. log.Error("d.getCacheVal error(%v)", err)
  28. return
  29. }
  30. if res == nil {
  31. return
  32. }
  33. err = json.Unmarshal(res, &data)
  34. if err != nil {
  35. log.Error("json.Unmarshal(%v) error(%v)", res, err)
  36. }
  37. return
  38. }
  39. // setUpBaseStatCache add stat cache.
  40. func (d *Dao) setUpBaseStatCache(c context.Context, mid int64, date string, st *model.UpBaseStat) (err error) {
  41. key := fmt.Sprintf("growup-up-status:%d-%s", mid, date)
  42. v, err := json.Marshal(st)
  43. if err != nil {
  44. log.Error("json.Marshal error(%v)", err)
  45. return
  46. }
  47. return d.setCacheKV(c, key, v, d.redisExpire)
  48. }
  49. // UpStat get up stat from hbase
  50. func (d *Dao) UpStat(c context.Context, mid int64, dt string) (st *model.UpBaseStat, err error) {
  51. // try cache
  52. st, err = d.getUpBaseStatCache(c, mid, dt)
  53. if err != nil {
  54. log.Error("d.getUpBaseStatCache(%d) error(%v)", mid, err)
  55. return
  56. }
  57. if st != nil {
  58. return
  59. }
  60. // from hbase
  61. if st, err = d.BaseUpStat(c, mid, dt); st != nil {
  62. d.AddCache(func() {
  63. d.setUpBaseStatCache(context.TODO(), mid, dt, st)
  64. })
  65. }
  66. return
  67. }