hbase.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. package data
  2. import (
  3. "go-common/app/interface/main/creative/model/archive"
  4. upgrpc "go-common/app/service/main/up/api/v1"
  5. "go-common/app/service/main/up/model"
  6. )
  7. // ArchiveStat for archive stat.
  8. type ArchiveStat struct {
  9. Play int64 `json:"play"`
  10. Dm int64 `json:"dm"`
  11. Reply int64 `json:"reply"`
  12. Coin int64 `json:"coin"`
  13. Elec int64 `json:"elec"`
  14. Fav int64 `json:"fav"`
  15. Share int64 `json:"share"`
  16. }
  17. // ArchiveSource for archive source
  18. type ArchiveSource struct {
  19. Mainsite int64 `json:"mainsite"`
  20. Outsite int64 `json:"outsite"`
  21. Mobile int64 `json:"mobile"`
  22. Others int64 `json:"others"`
  23. WebPC int64 `json:"-"`
  24. WebH5 int64 `json:"-"`
  25. IOS int64 `json:"-"`
  26. Android int64 `json:"-"`
  27. }
  28. // ArchiveGroup for archive group.
  29. type ArchiveGroup struct {
  30. Fans int64 `json:"fans"`
  31. Guest int64 `json:"guest"`
  32. }
  33. // ArchiveArea for archive area.
  34. type ArchiveArea struct {
  35. Location string `json:"location"`
  36. Count int64 `json:"count"`
  37. }
  38. // ArchiveData for single archive stats.
  39. type ArchiveData struct {
  40. ArchiveStat *ArchiveStat `json:"stat"`
  41. ArchiveSource *ArchiveSource `json:"source"`
  42. ArchiveGroup *ArchiveGroup `json:"group"`
  43. ArchiveAreas []*ArchiveArea `json:"area"`
  44. Videos []*archive.SimpleVideo `json:"videos,omitempty"`
  45. }
  46. // UpBaseStat for up base.
  47. type UpBaseStat struct {
  48. View int64 `json:"view"` //播放
  49. Reply int64 `json:"reply"` //评论
  50. Dm int64 `json:"dm"` //弹幕
  51. Fans int64 `json:"fans"` //粉丝
  52. Fav int64 `json:"fav"` //收藏
  53. Like int64 `json:"like"` //喜欢
  54. }
  55. //CopyTo copy to
  56. func (u *UpBaseStat) CopyTo(stat *model.UpBaseStat) {
  57. stat.Dm = u.Dm
  58. stat.Fans = u.Fans
  59. stat.Fav = u.Fav
  60. stat.View = u.View
  61. stat.Reply = u.Reply
  62. stat.Like = u.Like
  63. }
  64. // CopyToReply copy to reply
  65. func (u *UpBaseStat) CopyToReply(stat *upgrpc.UpBaseStatReply) {
  66. if u == nil {
  67. return
  68. }
  69. stat.Dm = u.Dm
  70. stat.Fans = u.Fans
  71. stat.Fav = u.Fav
  72. stat.View = u.View
  73. stat.Reply = u.Reply
  74. stat.Like = u.Like
  75. }
  76. // ViewerBase for up base data analysis.
  77. type ViewerBase struct {
  78. Male int64 `json:"male"`
  79. Female int64 `json:"female"`
  80. AgeOne int64 `json:"age_one"`
  81. AgeTwo int64 `json:"age_two"`
  82. AgeThree int64 `json:"age_three"`
  83. AgeFour int64 `json:"age_four"`
  84. PlatPC int64 `json:"plat_pc"`
  85. PlatH5 int64 `json:"plat_h5"`
  86. PlatOut int64 `json:"plat_out"`
  87. PlatIOS int64 `json:"plat_ios"`
  88. PlatAndroid int64 `json:"plat_android"`
  89. PlatOtherApp int64 `json:"plat_other_app"`
  90. }
  91. // ViewerActionHour for up action data analysis.
  92. type ViewerActionHour struct {
  93. View map[int]int `json:"view"`
  94. Reply map[int]int `json:"reply"`
  95. Dm map[int]int `json:"danmu"`
  96. Elec map[int]int `json:"elec"`
  97. Contract map[int]int `json:"contract"`
  98. }
  99. // Trend for up trend data analysis.
  100. type Trend struct {
  101. Ty map[int]int64
  102. Tag map[int]int64
  103. }
  104. // UpDataIncrMeta for Play/Dm/Reply/Fav/Share/Elec/Coin incr.
  105. type UpDataIncrMeta struct {
  106. Incr int `json:"-"`
  107. TopAIDList map[int]int64 `json:"-"`
  108. TopIncrList map[int]int `json:"-"`
  109. Rank map[int]int `json:"-"`
  110. TyRank map[string]int `json:"-"`
  111. }
  112. const (
  113. //Play 播放相关.
  114. Play = int8(1)
  115. //Dm 弹幕相关.
  116. Dm = int8(2)
  117. //Reply 评论相关.
  118. Reply = int8(3)
  119. //Share 分享相关.
  120. Share = int8(4)
  121. //Coin 投币相关.
  122. Coin = int8(5)
  123. //Fav 收藏相关.
  124. Fav = int8(6)
  125. //Elec 充电相关.
  126. Elec = int8(7)
  127. )
  128. var (
  129. typeNameMap = map[int8]string{
  130. Play: "play",
  131. Dm: "dm",
  132. Reply: "reply",
  133. Share: "share",
  134. Coin: "coin",
  135. Fav: "fav",
  136. Elec: "elec",
  137. }
  138. )
  139. //IncrTy return incr data type.
  140. func IncrTy(ty int8) (val string, ok bool) {
  141. val, ok = typeNameMap[ty]
  142. return
  143. }