overview.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. package data
  2. import (
  3. "bytes"
  4. "strconv"
  5. "time"
  6. "go-common/app/interface/main/creative/model/data"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. "github.com/tsuna/gohbase/hrpc"
  10. "golang.org/x/net/context"
  11. )
  12. // ViewerBase visitor data analysis.
  13. func (d *Dao) ViewerBase(c context.Context, mid int64, dt string) (res map[string]*data.ViewerBase, err error) {
  14. var (
  15. result *hrpc.Result
  16. ctx, cancel = context.WithTimeout(c, time.Duration(d.c.HBase.ReadTimeout))
  17. tableName = HBaseUpViewerBase + dt
  18. key = hbaseMd5Key(mid)
  19. )
  20. defer cancel()
  21. if result, err = d.hbase.GetStr(ctx, tableName, key); err != nil {
  22. log.Error("ViewerBase d.hbase.GetStr tableName(%s)|mid(%d)|key(%v)|error(%v)", tableName, mid, key, err)
  23. err = ecode.CreativeDataErr
  24. return
  25. }
  26. if result == nil || len(result.Cells) == 0 {
  27. log.Warn("ViewerBase no data tableName(%s)|mid(%d)|key(%v)", tableName, mid, key)
  28. return
  29. }
  30. res = make(map[string]*data.ViewerBase)
  31. families := make(map[string]string, 2)
  32. families["f"] = ""
  33. families["g"] = ""
  34. fb := &data.ViewerBase{}
  35. gb := &data.ViewerBase{}
  36. for _, c := range result.Cells {
  37. if c == nil {
  38. continue
  39. }
  40. if _, ok := families[string(c.Family)]; ok {
  41. if string(c.Family) == "f" {
  42. v, _ := strconv.ParseInt(string(c.Value[:]), 10, 64)
  43. switch {
  44. case bytes.Equal(c.Qualifier, []byte("male")):
  45. fb.Male = v
  46. case bytes.Equal(c.Qualifier, []byte("female")):
  47. fb.Female = v
  48. case bytes.Equal(c.Qualifier, []byte("age1")):
  49. fb.AgeOne = v
  50. case bytes.Equal(c.Qualifier, []byte("age2")):
  51. fb.AgeTwo = v
  52. case bytes.Equal(c.Qualifier, []byte("age3")):
  53. fb.AgeThree = v
  54. case bytes.Equal(c.Qualifier, []byte("age4")):
  55. fb.AgeFour = v
  56. case bytes.Equal(c.Qualifier, []byte("plat0")):
  57. fb.PlatPC = v
  58. case bytes.Equal(c.Qualifier, []byte("plat1")):
  59. fb.PlatH5 = v
  60. case bytes.Equal(c.Qualifier, []byte("plat2")):
  61. fb.PlatOut = v
  62. case bytes.Equal(c.Qualifier, []byte("plat3")):
  63. fb.PlatIOS = v
  64. case bytes.Equal(c.Qualifier, []byte("plat4")):
  65. fb.PlatAndroid = v
  66. case bytes.Equal(c.Qualifier, []byte("else")):
  67. fb.PlatOtherApp = v
  68. }
  69. } else if string(c.Family) == "g" {
  70. v, _ := strconv.ParseInt(string(c.Value[:]), 10, 64)
  71. switch {
  72. case bytes.Equal(c.Qualifier, []byte("male")):
  73. gb.Male = v
  74. case bytes.Equal(c.Qualifier, []byte("female")):
  75. gb.Female = v
  76. case bytes.Equal(c.Qualifier, []byte("age1")):
  77. gb.AgeOne = v
  78. case bytes.Equal(c.Qualifier, []byte("age2")):
  79. gb.AgeTwo = v
  80. case bytes.Equal(c.Qualifier, []byte("age3")):
  81. gb.AgeThree = v
  82. case bytes.Equal(c.Qualifier, []byte("age4")):
  83. gb.AgeFour = v
  84. case bytes.Equal(c.Qualifier, []byte("plat0")):
  85. gb.PlatPC = v
  86. case bytes.Equal(c.Qualifier, []byte("plat1")):
  87. gb.PlatH5 = v
  88. case bytes.Equal(c.Qualifier, []byte("plat2")):
  89. gb.PlatOut = v
  90. case bytes.Equal(c.Qualifier, []byte("plat3")):
  91. gb.PlatIOS = v
  92. case bytes.Equal(c.Qualifier, []byte("plat4")):
  93. gb.PlatAndroid = v
  94. case bytes.Equal(c.Qualifier, []byte("else")):
  95. gb.PlatOtherApp = v
  96. }
  97. }
  98. }
  99. }
  100. res["fan"] = fb
  101. res["not_fan"] = gb
  102. return
  103. }
  104. // ViewerArea visitor area data analysis.
  105. func (d *Dao) ViewerArea(c context.Context, mid int64, dt string) (res map[string]map[string]int64, err error) {
  106. var (
  107. result *hrpc.Result
  108. ctx, cancel = context.WithTimeout(c, time.Duration(d.c.HBase.ReadTimeout))
  109. tableName = HBaseUpViewerArea + dt
  110. key = hbaseMd5Key(mid)
  111. )
  112. defer cancel()
  113. if result, err = d.hbase.GetStr(ctx, tableName, key); err != nil {
  114. log.Error("ViewerArea d.hbase.GetStr tableName(%s)|mid(%d)|key(%v)|error(%v)", tableName, mid, key, err)
  115. err = ecode.CreativeDataErr
  116. return
  117. }
  118. if result == nil || len(result.Cells) == 0 {
  119. log.Warn("ViewerArea no data tableName(%s)|mid(%d)|key(%v)", tableName, mid, key)
  120. return
  121. }
  122. res = make(map[string]map[string]int64)
  123. fa := make(map[string]int64)
  124. ga := make(map[string]int64)
  125. families := make(map[string]string, 2)
  126. families["f"] = ""
  127. families["g"] = ""
  128. for _, c := range result.Cells {
  129. if c == nil {
  130. continue
  131. }
  132. if _, ok := families[string(c.Family)]; ok {
  133. a := string(c.Qualifier[:])
  134. if string(c.Family) == "f" {
  135. v, _ := strconv.ParseInt(string(c.Value[:]), 10, 64)
  136. fa[a] = v
  137. } else if string(c.Family) == "g" {
  138. v, _ := strconv.ParseInt(string(c.Value[:]), 10, 64)
  139. ga[a] = v
  140. }
  141. }
  142. }
  143. res["fan"] = fa
  144. res["not_fan"] = ga
  145. return
  146. }
  147. // ViewerTrend visitor trend data analysis.
  148. func (d *Dao) ViewerTrend(c context.Context, mid int64, dt string) (res map[string]*data.Trend, err error) {
  149. var (
  150. result *hrpc.Result
  151. ctx, cancel = context.WithTimeout(c, time.Duration(d.c.HBase.ReadTimeout))
  152. tableName = HBaseUpViewerTrend + dt
  153. key = hbaseMd5Key(mid)
  154. )
  155. defer cancel()
  156. if result, err = d.hbase.GetStr(ctx, tableName, key); err != nil {
  157. log.Error("ViewerTrend d.hbase.GetStr tableName(%s)|mid(%d)|key(%v)|error(%v)", tableName, mid, key, err)
  158. err = ecode.CreativeDataErr
  159. return
  160. }
  161. if result == nil || len(result.Cells) == 0 {
  162. log.Warn("ViewerTrend no data tableName(%s)|mid(%d)|key(%v)", tableName, mid, key)
  163. return
  164. }
  165. families := make(map[string]string, 4)
  166. families["fs"] = ""
  167. families["ft"] = ""
  168. families["gs"] = ""
  169. families["gt"] = ""
  170. res = make(map[string]*data.Trend)
  171. ftd := &data.Trend{}
  172. gtd := &data.Trend{}
  173. ty := make(map[int]int64)
  174. tg := make(map[int]int64)
  175. nty := make(map[int]int64)
  176. ntg := make(map[int]int64)
  177. for _, c := range result.Cells {
  178. if c == nil {
  179. continue
  180. }
  181. if _, ok := families[string(c.Family)]; ok {
  182. if string(c.Family) == "fs" {
  183. tid, _ := strconv.Atoi(string(c.Qualifier[:]))
  184. v, _ := strconv.ParseInt(string(c.Value[:]), 10, 64)
  185. ty[tid] = v
  186. ftd.Ty = ty
  187. } else if string(c.Family) == "gs" {
  188. tid, _ := strconv.Atoi(string(c.Qualifier[:]))
  189. v, _ := strconv.ParseInt(string(c.Value[:]), 10, 64)
  190. nty[tid] = v
  191. gtd.Ty = nty
  192. }
  193. if string(c.Family) == "ft" {
  194. o, _ := strconv.Atoi(string(c.Qualifier[:]))
  195. v, _ := strconv.ParseInt(string(c.Value[:]), 10, 64)
  196. tg[o] = v
  197. ftd.Tag = tg
  198. } else if string(c.Family) == "gt" {
  199. o, _ := strconv.Atoi(string(c.Qualifier[:]))
  200. v, _ := strconv.ParseInt(string(c.Value[:]), 10, 64)
  201. ntg[o] = v
  202. gtd.Tag = ntg
  203. }
  204. }
  205. }
  206. res["fan"] = ftd
  207. res["not_fan"] = gtd
  208. return
  209. }
  210. // RelationFansDay up relation 30 days analysis.
  211. func (d *Dao) RelationFansDay(c context.Context, mid int64) (res map[string]map[string]int, err error) {
  212. var (
  213. result *hrpc.Result
  214. ctx, cancel = context.WithTimeout(c, time.Duration(d.c.HBase.ReadTimeout))
  215. tableName = HBaseUpRelationFansDay
  216. key = hbaseMd5Key(mid)
  217. )
  218. defer cancel()
  219. if result, err = d.hbase.GetStr(ctx, tableName, key); err != nil {
  220. log.Error("RelationFansDay d.hbase.GetStr tableName(%s)|mid(%d)|key(%v)|error(%v)", tableName, mid, key, err)
  221. err = ecode.CreativeDataErr
  222. return
  223. }
  224. if result == nil || len(result.Cells) == 0 {
  225. log.Warn("RelationFansDay no data tableName(%s)|mid(%d)|key(%v)", tableName, mid, key)
  226. return
  227. }
  228. res = make(map[string]map[string]int)
  229. families := make(map[string]string, 2)
  230. families["a"] = "" //某日新增关注量
  231. families["u"] = "" //某日取关量
  232. fd := make(map[string]int)
  233. nfd := make(map[string]int)
  234. for _, c := range result.Cells {
  235. if c == nil {
  236. continue
  237. }
  238. if _, ok := families[string(c.Family)]; ok {
  239. if string(c.Family) == "a" {
  240. k := string(c.Qualifier[:])
  241. v, _ := strconv.Atoi(string(c.Value[:]))
  242. fd[k] = v
  243. } else if string(c.Family) == "u" {
  244. k := string(c.Qualifier[:])
  245. v, _ := strconv.Atoi(string(c.Value[:]))
  246. nfd[k] = v
  247. }
  248. }
  249. }
  250. res["follow"] = fd
  251. res["unfollow"] = nfd
  252. return
  253. }
  254. // RelationFansHistory up relation history.
  255. func (d *Dao) RelationFansHistory(c context.Context, mid int64, month string) (res map[string]map[string]int, err error) {
  256. var (
  257. result *hrpc.Result
  258. ctx, cancel = context.WithTimeout(c, time.Duration(d.c.HBase.ReadTimeout))
  259. tableName = HBaseUpRelationFansHistory
  260. key = string(hbaseMd5Key(mid)) + "_" + month
  261. )
  262. defer cancel()
  263. if result, err = d.hbase.GetStr(ctx, tableName, key); err != nil {
  264. log.Error("RelationFansHistory d.hbase.GetStr tableName(%s)|mid(%d)|key(%v)|error(%v)", tableName, mid, key, err)
  265. err = ecode.CreativeDataErr
  266. return
  267. }
  268. if result == nil || len(result.Cells) == 0 {
  269. log.Warn("RelationFansHistory no data tableName(%s)|mid(%d)|key(%v)", tableName, mid, key)
  270. return
  271. }
  272. res = make(map[string]map[string]int)
  273. families := make(map[string]string, 2)
  274. families["a"] = "" //某日新增关注量
  275. families["u"] = "" //某日取关量
  276. fd := make(map[string]int)
  277. nfd := make(map[string]int)
  278. for _, c := range result.Cells {
  279. if c == nil {
  280. continue
  281. }
  282. if _, ok := families[string(c.Family)]; ok {
  283. if string(c.Family) == "a" {
  284. k := string(c.Qualifier[:])
  285. v, _ := strconv.Atoi(string(c.Value[:]))
  286. fd[k] = v
  287. } else if string(c.Family) == "u" {
  288. k := string(c.Qualifier[:])
  289. v, _ := strconv.Atoi(string(c.Value[:]))
  290. nfd[k] = v
  291. }
  292. }
  293. }
  294. res["follow"] = fd
  295. res["unfollow"] = nfd
  296. return
  297. }
  298. // RelationFansMonth up relation 400 days analysis.
  299. func (d *Dao) RelationFansMonth(c context.Context, mid int64) (res map[string]map[string]int, err error) {
  300. var (
  301. result *hrpc.Result
  302. ctx, cancel = context.WithTimeout(c, time.Duration(d.c.HBase.ReadTimeout))
  303. tableName = HBaseUpRelationFansMonth
  304. key = hbaseMd5Key(mid)
  305. )
  306. defer cancel()
  307. if result, err = d.hbase.GetStr(ctx, tableName, key); err != nil {
  308. log.Error("RelationFansMonth d.hbase.GetStr tableName(%s)|mid(%d)|key(%v)|error(%v)", tableName, mid, key, err)
  309. err = ecode.CreativeDataErr
  310. return
  311. }
  312. if result == nil || len(result.Cells) == 0 {
  313. log.Warn("RelationFansMonth no data tableName(%s)|mid(%d)|key(%v)", tableName, mid, key)
  314. return
  315. }
  316. res = make(map[string]map[string]int)
  317. families := make(map[string]string, 2)
  318. families["a"] = "" //某日新增关注量
  319. families["u"] = "" //某日取关量
  320. fd := make(map[string]int)
  321. nfd := make(map[string]int)
  322. for _, c := range result.Cells {
  323. if c == nil {
  324. continue
  325. }
  326. if _, ok := families[string(c.Family)]; ok {
  327. if string(c.Family) == "a" {
  328. k := string(c.Qualifier[:])
  329. v, _ := strconv.Atoi(string(c.Value[:]))
  330. fd[k] = v
  331. } else if string(c.Family) == "u" {
  332. k := string(c.Qualifier[:])
  333. v, _ := strconv.Atoi(string(c.Value[:]))
  334. nfd[k] = v
  335. }
  336. }
  337. }
  338. res["follow"] = fd
  339. res["unfollow"] = nfd
  340. return
  341. }
  342. // ViewerActionHour visitor action hour analysis.
  343. func (d *Dao) ViewerActionHour(c context.Context, mid int64, dt string) (res map[string]*data.ViewerActionHour, err error) {
  344. var (
  345. result *hrpc.Result
  346. ctx, cancel = context.WithTimeout(c, time.Duration(d.c.HBase.ReadTimeout))
  347. tableName = HBaseUpViewerActionHour + dt
  348. key = hbaseMd5Key(mid)
  349. )
  350. defer cancel()
  351. if result, err = d.hbase.GetStr(ctx, tableName, key); err != nil {
  352. log.Error("ViewerActionHour d.hbase.GetStr tableName(%s)|mid(%d)|key(%v)|error(%v)", tableName, mid, key, err)
  353. err = ecode.CreativeDataErr
  354. return
  355. }
  356. if result == nil || len(result.Cells) == 0 {
  357. log.Warn("ViewerActionHour no data tableName(%s)|mid(%d)|key(%v)", tableName, mid, key)
  358. return
  359. }
  360. families := make(map[string]string, 4)
  361. families["fp"] = "" //播放数
  362. families["fr"] = "" //评论数
  363. families["fd"] = "" //弹幕数
  364. families["fe"] = "" //充电数
  365. families["fs"] = "" //承包数
  366. res = make(map[string]*data.ViewerActionHour)
  367. view := make(map[int]int)
  368. reply := make(map[int]int)
  369. danmu := make(map[int]int)
  370. elec := make(map[int]int)
  371. con := make(map[int]int)
  372. fah := &data.ViewerActionHour{}
  373. gah := &data.ViewerActionHour{}
  374. for _, c := range result.Cells {
  375. if c == nil {
  376. continue
  377. }
  378. if _, ok := families[string(c.Family)]; ok {
  379. if string(c.Family) == "fp" {
  380. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  381. v, _ := strconv.Atoi(string(c.Value[:]))
  382. view[k] = v
  383. fah.View = view
  384. } else if string(c.Family) == "gp" {
  385. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  386. v, _ := strconv.Atoi(string(c.Value[:]))
  387. view[k] = v
  388. gah.View = view
  389. }
  390. if string(c.Family) == "fr" {
  391. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  392. v, _ := strconv.Atoi(string(c.Value[:]))
  393. reply[k] = v
  394. fah.Reply = reply
  395. } else if string(c.Family) == "gr" {
  396. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  397. v, _ := strconv.Atoi(string(c.Value[:]))
  398. reply[k] = v
  399. gah.Reply = reply
  400. }
  401. if string(c.Family) == "fd" {
  402. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  403. v, _ := strconv.Atoi(string(c.Value[:]))
  404. danmu[k] = v
  405. fah.Dm = danmu
  406. } else if string(c.Family) == "gd" {
  407. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  408. v, _ := strconv.Atoi(string(c.Value[:]))
  409. danmu[k] = v
  410. gah.Dm = danmu
  411. }
  412. if string(c.Family) == "fe" {
  413. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  414. v, _ := strconv.Atoi(string(c.Value[:]))
  415. elec[k] = v
  416. fah.Elec = elec
  417. } else if string(c.Family) == "ge" {
  418. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  419. v, _ := strconv.Atoi(string(c.Value[:]))
  420. elec[k] = v
  421. gah.Elec = elec
  422. }
  423. if string(c.Family) == "fs" {
  424. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  425. v, _ := strconv.Atoi(string(c.Value[:]))
  426. con[k] = v
  427. fah.Contract = con
  428. } else if string(c.Family) == "gs" {
  429. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  430. v, _ := strconv.Atoi(string(c.Value[:]))
  431. con[k] = v
  432. gah.Contract = con
  433. }
  434. }
  435. }
  436. res["fan"] = fah
  437. res["not_fan"] = gah
  438. return
  439. }
  440. // UpIncr for Play/Dm/Reply/Fav/Share/Elec/Coin incr.
  441. func (d *Dao) UpIncr(c context.Context, mid int64, ty int8, now string) (res *data.UpDataIncrMeta, err error) {
  442. var (
  443. result *hrpc.Result
  444. ctx, cancel = context.WithTimeout(c, d.hbaseTimeOut)
  445. tableName string
  446. IncrKey string
  447. key = hbaseMd5Key(mid)
  448. )
  449. defer cancel()
  450. switch {
  451. case ty == data.Play:
  452. tableName = HBaseUpPlayInc + now
  453. case ty == data.Dm:
  454. tableName = HBaseUpDmInc + now
  455. case ty == data.Reply:
  456. tableName = HBaseUpReplyInc + now
  457. case ty == data.Share:
  458. tableName = HBaseUpShareInc + now
  459. case ty == data.Coin:
  460. tableName = HBaseUpCoinInc + now
  461. case ty == data.Fav:
  462. tableName = HBaseUpFavInc + now
  463. case ty == data.Elec:
  464. tableName = HBaseUpElecInc + now
  465. }
  466. IncrKey, _ = data.IncrTy(ty)
  467. if result, err = d.hbase.GetStr(ctx, tableName, key); err != nil {
  468. log.Error("UpIncr d.hbase.GetStr tableName(%s)|mid(%d)|key(%v)|error(%v)", tableName, mid, key, err)
  469. err = ecode.CreativeDataErr
  470. return
  471. }
  472. if result == nil || len(result.Cells) == 0 {
  473. log.Warn("UpIncr no data tableName(%s)|mid(%d)|key(%v)", tableName, mid, key)
  474. return
  475. }
  476. families := make(map[string]string, 4)
  477. families["u"] = "" //单日播放增量 u:play ...
  478. families["av"] = "" //播放top稿件 av:1
  479. families["v"] = "" //top稿件播放增量 v:1
  480. families["rk"] = "" //up主播放量排名 rk: [tid]
  481. aids := make(map[int]int64)
  482. incs := make(map[int]int)
  483. rk := make(map[int]int)
  484. var incr int
  485. for _, c := range result.Cells {
  486. if c == nil {
  487. continue
  488. }
  489. if _, ok := families[string(c.Family)]; ok {
  490. if string(c.Family) == "av" {
  491. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  492. v, _ := strconv.ParseInt(string(c.Value[:]), 10, 64)
  493. aids[k] = v
  494. } else if string(c.Family) == "v" {
  495. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  496. v, _ := strconv.Atoi(string(c.Value[:]))
  497. incs[k] = v
  498. } else if string(c.Family) == "rk" {
  499. k, _ := strconv.Atoi(string(c.Qualifier[:]))
  500. v, _ := strconv.Atoi(string(c.Value[:]))
  501. rk[k] = v
  502. } else if string(c.Family) == "u" {
  503. if bytes.Equal(c.Qualifier, []byte(IncrKey)) {
  504. v, _ := strconv.Atoi(string(c.Value[:]))
  505. if v < 0 {
  506. v = 0
  507. }
  508. incr = v
  509. }
  510. }
  511. }
  512. }
  513. res = &data.UpDataIncrMeta{}
  514. res.Incr = incr
  515. res.TopAIDList = aids
  516. res.TopIncrList = incs
  517. res.Rank = rk
  518. return
  519. }
  520. // ThirtyDayArchive for Play/Dm/Reply/Fav/Share/Elec/Coin for archive 30 days.
  521. func (d *Dao) ThirtyDayArchive(c context.Context, mid int64, ty int8) (res []*data.ThirtyDay, err error) {
  522. var (
  523. result *hrpc.Result
  524. ctx, cancel = context.WithTimeout(c, time.Duration(d.c.HBase.ReadTimeout))
  525. tableName string
  526. key = hbaseMd5Key(mid)
  527. )
  528. defer cancel()
  529. switch {
  530. case ty == data.Play:
  531. tableName = HBasePlayArc
  532. case ty == data.Dm:
  533. tableName = HBaseDmArc
  534. case ty == data.Reply:
  535. tableName = HBaseReplyArc
  536. case ty == data.Share:
  537. tableName = HBaseShareArc
  538. case ty == data.Coin:
  539. tableName = HBaseCoinArc
  540. case ty == data.Fav:
  541. tableName = HBaseFavArc
  542. case ty == data.Elec:
  543. tableName = HBaseElecArc
  544. case ty == data.Like:
  545. tableName = HBaseLikeArc
  546. }
  547. if result, err = d.hbase.GetStr(ctx, tableName, key); err != nil {
  548. log.Error("ThirtyDayArchive d.hbase.GetStr tableName(%s)|mid(%d)|key(%v)|error(%v)", tableName, mid, key, err)
  549. err = ecode.CreativeDataErr
  550. return
  551. }
  552. if result == nil || len(result.Cells) == 0 {
  553. log.Warn("ThirtyDay no data tableName(%s)|mid(%d)|key(%v)", tableName, mid, key)
  554. return
  555. }
  556. res = make([]*data.ThirtyDay, 0, len(result.Cells))
  557. for _, c := range result.Cells {
  558. if c == nil {
  559. continue
  560. }
  561. qual := string(c.Qualifier[:])
  562. val := string(c.Value[:])
  563. if string(c.Family) == "u" {
  564. t, v, err := parseKeyValue(qual, val)
  565. if err != nil {
  566. break
  567. }
  568. td := &data.ThirtyDay{}
  569. td.DateKey = t
  570. td.TotalIncr = v
  571. res = append(res, td)
  572. }
  573. }
  574. log.Info("ThirtyDayArchive mid(%d) type(%d) return data(%+v)", mid, ty, res)
  575. return
  576. }
  577. func parseKeyValue(k string, v string) (timestamp, value int64, err error) {
  578. tm, err := time.Parse("20060102", k)
  579. if err != nil {
  580. log.Error("time.Parse error(%v)", err)
  581. return
  582. }
  583. timestamp = tm.Unix()
  584. value, err = strconv.ParseInt(v, 10, 64)
  585. if err != nil {
  586. log.Error("strconv.ParseInt error(%v)", err)
  587. }
  588. return
  589. }