hbase.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package dao
  2. import (
  3. "bytes"
  4. "context"
  5. "crypto/md5"
  6. "encoding/hex"
  7. "strconv"
  8. "go-common/app/interface/main/growup/model"
  9. "go-common/library/ecode"
  10. "go-common/library/log"
  11. "github.com/tsuna/gohbase/hrpc"
  12. )
  13. const (
  14. // HBaseUpStatTablePrefix hbase up_stat_date
  15. HBaseUpStatTablePrefix = "up_stats_"
  16. )
  17. func hbaseMd5Key(aid int64) string {
  18. hasher := md5.New()
  19. hasher.Write([]byte(strconv.Itoa(int(aid))))
  20. return hex.EncodeToString(hasher.Sum(nil))
  21. }
  22. // BaseUpStat get base up stat.
  23. func (d *Dao) BaseUpStat(c context.Context, mid int64, date string) (stat *model.UpBaseStat, err error) {
  24. var (
  25. result *hrpc.Result
  26. ctx, cancel = context.WithTimeout(c, d.hbaseTimeOut)
  27. tableName = HBaseUpStatTablePrefix + date // change table at 12:00am
  28. key = hbaseMd5Key(mid)
  29. )
  30. defer cancel()
  31. if result, err = d.hbase.GetStr(ctx, tableName, key); err != nil {
  32. log.Error("BaseUpStat d.hbase.GetStr tableName(%s)|mid(%d)|key(%v)|error(%v)", tableName, mid, key, err)
  33. err = ecode.CreativeDataErr
  34. return
  35. }
  36. if result == nil {
  37. return
  38. }
  39. stat = &model.UpBaseStat{}
  40. for _, c := range result.Cells {
  41. if c == nil {
  42. continue
  43. }
  44. v, _ := strconv.ParseInt(string(c.Value[:]), 10, 64)
  45. if !bytes.Equal(c.Family, []byte("u")) {
  46. continue
  47. }
  48. switch {
  49. case bytes.Equal(c.Qualifier, []byte("play")):
  50. stat.View = v
  51. case bytes.Equal(c.Qualifier, []byte("dm")):
  52. stat.Dm = v
  53. case bytes.Equal(c.Qualifier, []byte("reply")):
  54. stat.Reply = v
  55. case bytes.Equal(c.Qualifier, []byte("fans")):
  56. stat.Fans = v
  57. case bytes.Equal(c.Qualifier, []byte("fav")):
  58. stat.Fav = v
  59. case bytes.Equal(c.Qualifier, []byte("like")):
  60. stat.Like = v
  61. case bytes.Equal(c.Qualifier, []byte("sh")):
  62. stat.Share = v
  63. }
  64. }
  65. return
  66. }