cache.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920
  1. package show
  2. import (
  3. "context"
  4. "fmt"
  5. "math/rand"
  6. "runtime"
  7. "strconv"
  8. "strings"
  9. "time"
  10. clive "go-common/app/interface/main/app-card/model/card/live"
  11. "go-common/app/interface/main/app-card/model/card/operate"
  12. "go-common/app/interface/main/app-card/model/card/rank"
  13. "go-common/app/interface/main/app-show/model"
  14. "go-common/app/interface/main/app-show/model/card"
  15. recmod "go-common/app/interface/main/app-show/model/recommend"
  16. "go-common/app/interface/main/app-show/model/region"
  17. "go-common/app/interface/main/app-show/model/show"
  18. creativeAPI "go-common/app/interface/main/creative/api"
  19. "go-common/app/service/main/archive/api"
  20. resource "go-common/app/service/main/resource/model"
  21. seasongrpc "go-common/app/service/openplatform/pgc-season/api/grpc/season/v1"
  22. "go-common/library/log"
  23. )
  24. const (
  25. _blackUrl = "http://172.18.7.208/privatedata/reco-deny-arcs.json"
  26. )
  27. var (
  28. // 动画,音乐,舞蹈,游戏,科技,娱乐,鬼畜,电影,时尚, 生活,广告,国漫,影视,纪录片
  29. _tids = []string{"1", "3", "129", "4", "36", "5", "119", "23", "155", "160", "11", "165", "167", "181", "177"}
  30. _emptyItems = []*show.Item{&show.Item{}, &show.Item{}, &show.Item{}, &show.Item{}}
  31. )
  32. // loadRcmmndCache load recommend cahce.
  33. func (s *Service) loadRcmmndCache(now time.Time) {
  34. aids, err := s.rcmmnd.Hots(context.TODO())
  35. if err != nil {
  36. log.Error("s.rcmmnd.Hots(%v) error(%v)", now, err)
  37. return
  38. }
  39. if len(aids) > 200 {
  40. aids = aids[:200]
  41. }
  42. if len(aids) < 60 {
  43. return
  44. }
  45. tmp, tmpOsea := s.fromAids(context.TODO(), aids)
  46. if len(tmp) > 0 {
  47. s.rcmmndCache = tmp
  48. }
  49. if len(tmpOsea) > 0 {
  50. s.rcmmndOseaCache = tmpOsea
  51. }
  52. log.Info("loadRcmmndCache success")
  53. }
  54. // loadRegionCache load region cahce.
  55. func (s *Service) loadRegionCache(now time.Time) {
  56. var (
  57. tmp = map[string][]*show.Item{}
  58. tmpOsea = map[string][]*show.Item{}
  59. tmpBg = map[string][]*show.Item{}
  60. tmpBgOsea = map[string][]*show.Item{}
  61. tmpBgEp = map[string][]*show.Item{}
  62. tmpBgEpOsea = map[string][]*show.Item{}
  63. sids = map[int32]*seasongrpc.CardInfoProto{}
  64. )
  65. for _, tid := range _tids {
  66. rs, err := s.rcmmnd.Region(context.TODO(), tid)
  67. if len(rs) > 8 {
  68. rs = rs[:8]
  69. }
  70. tidInt, _ := strconv.Atoi(tid)
  71. if err != nil || len(rs) < 4 {
  72. log.Error("s.rcmmnd.Region(%v) error(%v)", now, err)
  73. res, aids, err := s.dyn.RegionDynamic(context.TODO(), tidInt, 1, 8)
  74. if err != nil || len(res) < 4 {
  75. log.Error("s.dyn.RegionDynamic(%v) error(%v)", now, err)
  76. continue
  77. }
  78. if len(res) > 8 {
  79. res = res[:8]
  80. }
  81. if _, isBangumi := _bangumiReids[tidInt]; isBangumi {
  82. sids, _ = s.fromSeasonID(context.TODO(), aids)
  83. }
  84. tmp[tid], tmpOsea[tid] = s.fromArchivesPB(res)
  85. tmpBg[tid], tmpBgOsea[tid] = s.fromArchivesBangumi(context.TODO(), res, aids, sids, _bangumiSeasonID)
  86. tmpBgEp[tid], tmpBgEpOsea[tid] = s.fromArchivesBangumi(context.TODO(), res, aids, sids, _bangumiEpisodeID)
  87. } else {
  88. if _, isBangumi := _bangumiReids[tidInt]; isBangumi {
  89. sids, _ = s.fromSeasonID(context.TODO(), rs)
  90. }
  91. tmp[tid], tmpOsea[tid], tmpBg[tid], tmpBgOsea[tid], tmpBgEp[tid], tmpBgEpOsea[tid] =
  92. s.fromBgAids(context.TODO(), rs, sids, _bangumiSeasonID)
  93. }
  94. log.Info("load show index region(%s) success", tid)
  95. }
  96. if len(tmp) > 0 {
  97. s.regionCache = tmp
  98. }
  99. if len(tmpOsea) > 0 {
  100. s.regionOseaCache = tmpOsea
  101. }
  102. if len(tmpBg) > 0 {
  103. s.regionBgCache = tmpBg
  104. }
  105. if len(tmpBgOsea) > 0 {
  106. s.regionBgOseaCache = tmpBgOsea
  107. }
  108. if len(tmpBgEp) > 0 {
  109. s.regionBgEpCache = tmpBgEp
  110. }
  111. if len(tmpBgEpOsea) > 0 {
  112. s.regionBgEpOseaCache = tmpBgEpOsea
  113. }
  114. log.Info("loadRegionCache success")
  115. }
  116. // loadBannerCahce load banner cache.
  117. func (s *Service) loadBannerCahce() {
  118. var (
  119. resbs = map[int8]map[int][]*resource.Banner{}
  120. )
  121. for plat, resIDStr := range _bannersPlat {
  122. mobiApp := model.MobiApp(plat)
  123. res, err := s.res.ResBanner(context.TODO(), plat, 515007, 0, resIDStr, "master", "", "", "", mobiApp, "", "", false)
  124. if err != nil || len(res) == 0 {
  125. log.Error("s.res.ResBanner is null or err(%v)", err)
  126. return
  127. }
  128. resbs[plat] = res
  129. }
  130. if len(resbs) > 0 {
  131. s.bannerCache = resbs
  132. }
  133. log.Info("loadBannerCahce success")
  134. }
  135. // loadBgmCache load bangumi cache
  136. func (s *Service) loadBgmCache(now time.Time) {
  137. bgms, err := s.bgm.Recommend(now)
  138. if err != nil {
  139. log.Error("s.bgm.Recommend(%v) error(%v)", now, err)
  140. return
  141. }
  142. if len(bgms) < 8 {
  143. return
  144. }
  145. var (
  146. tmp = map[int8][]*show.Item{}
  147. si *show.Item
  148. )
  149. for _, bgm := range bgms {
  150. si = &show.Item{}
  151. si.FromBangumi(bgm)
  152. tmp[model.PlatAndroid] = append(tmp[model.PlatAndroid], si)
  153. tmp[model.PlatIPhone] = append(tmp[model.PlatIPhone], si)
  154. tmp[model.PlatAndroidG] = append(tmp[model.PlatAndroidG], si)
  155. tmp[model.PlatAndroidI] = append(tmp[model.PlatAndroidI], si)
  156. tmp[model.PlatIPhoneI] = append(tmp[model.PlatIPhoneI], si)
  157. si = &show.Item{}
  158. si.FromBangumi(bgm)
  159. si.Cover = bgm.Cover // pad hd get bangumi cover
  160. tmp[model.PlatIPad] = append(tmp[model.PlatIPad], si)
  161. tmp[model.PlatIPadI] = append(tmp[model.PlatIPadI], si)
  162. tmp[model.PlatAndroidTV] = append(tmp[model.PlatAndroidTV], si)
  163. }
  164. s.bgmCache = tmp
  165. log.Info("loadBgmCache success")
  166. }
  167. // loadLiveCache load live cache .
  168. func (s *Service) loadLiveCache(now time.Time) {
  169. lrs, err := s.lv.Recommend(now)
  170. if err != nil {
  171. log.Error("s.live.Recommend(%v) error(%v)", now, err)
  172. return
  173. }
  174. if lrs == nil {
  175. return
  176. }
  177. s.liveCount = lrs.Count
  178. if subLen := len(lrs.Lives.Subject); subLen > 0 {
  179. tmp := make([]*show.Item, 0, subLen)
  180. for _, l := range lrs.Lives.Subject {
  181. si := &show.Item{}
  182. si.FromLive(l)
  183. tmp = append(tmp, si)
  184. }
  185. s.liveMoeCache = tmp
  186. }
  187. if hotLen := len(lrs.Lives.Hot); hotLen >= 4 {
  188. tmp := make([]*show.Item, 0, hotLen)
  189. for _, l := range lrs.Lives.Hot {
  190. si := &show.Item{}
  191. si.FromLive(l)
  192. tmp = append(tmp, si)
  193. }
  194. s.liveHotCache = tmp
  195. }
  196. log.Info("loadLiveCache success")
  197. }
  198. // loadShowCache load all show cache
  199. func (s *Service) loadShowCache() {
  200. hdm, err := s.dao.Heads(context.TODO())
  201. if err != nil {
  202. log.Error("s.dao.Heads error(%v)", err)
  203. return
  204. }
  205. itm, err := s.dao.Items(context.TODO())
  206. if err != nil {
  207. log.Error("s.dao.Items error(%v)", err)
  208. return
  209. }
  210. tmp, tmpbg, tmpbgep := s.mergeShow(hdm, itm)
  211. if len(tmp) > 0 {
  212. s.cache = tmp
  213. }
  214. if len(tmpbg) > 0 {
  215. s.cacheBg = tmpbg
  216. }
  217. if len(tmpbgep) > 0 {
  218. s.cacheBgEp = tmpbgep
  219. }
  220. log.Info("loadShowCache success")
  221. }
  222. // loadShowTempCache load all show temp cache
  223. func (s *Service) loadShowTempCache() {
  224. hdm, err := s.dao.TempHeads(context.TODO())
  225. if err != nil {
  226. log.Error("s.dao.TempHeads error(%v)", err)
  227. return
  228. }
  229. itm, err := s.dao.TempItems(context.TODO())
  230. if err != nil {
  231. log.Error("s.dao.TempItems error(%v)", err)
  232. return
  233. }
  234. s.tempCache, _, _ = s.mergeShow(hdm, itm)
  235. log.Info("loadShowTempCache success")
  236. }
  237. // loadRegionListCache
  238. func (s *Service) loadRegionListCache() {
  239. res, err := s.rg.RegionPlat(context.TODO())
  240. if err != nil {
  241. log.Error("s.rg.RegionPlat error(%v)", err)
  242. return
  243. }
  244. tmpRegion := map[int]*region.Region{}
  245. tmp := map[int]*region.Region{}
  246. for _, v := range res {
  247. // region list map
  248. tmpRegion[v.Rid] = v
  249. }
  250. for _, r := range res {
  251. if r.Reid != 0 {
  252. if rerg, ok := tmpRegion[r.Reid]; ok {
  253. tmp[r.Rid] = rerg
  254. }
  255. }
  256. }
  257. s.reRegionCache = tmp
  258. }
  259. // loadRankAllCache
  260. func (s *Service) loadRankAllCache() {
  261. var (
  262. rankAids []int64
  263. err error
  264. as map[int64]*api.Arc
  265. c = context.TODO()
  266. trankCache = []*rank.Rank{}
  267. )
  268. aids, others, scores, err := s.rcmmnd.RankAppAll(c)
  269. if err != nil {
  270. log.Error("s.rcmmnd.RankAppAll error(%v)", err)
  271. return
  272. }
  273. for _, aid := range aids {
  274. if _, ok := others[aid]; !ok {
  275. rankAids = append(rankAids, aid)
  276. }
  277. }
  278. if len(rankAids) == 0 {
  279. return
  280. }
  281. s.rankAidsCache = rankAids
  282. s.rankScoreCache = scores
  283. if as, err = s.arc.ArchivesPB(c, rankAids); err != nil {
  284. log.Error("s.arc.ArchivesPB aids(%v) error(%v)", aids, err)
  285. return
  286. }
  287. if len(as) == 0 {
  288. log.Warn("s.arc.ArchivesPB(%v) length is 0", rankAids)
  289. return
  290. }
  291. s.rankArchivesCache = as
  292. tmp, tmpOsea := s.fromRankAids(c, rankAids, scores, as)
  293. if len(tmp) > 0 {
  294. s.rankCache = tmp
  295. }
  296. if len(tmpOsea) > 0 {
  297. s.rankOseaCache = tmpOsea
  298. }
  299. log.Info("loadRankAllCache success")
  300. // new cache
  301. for _, aid := range rankAids {
  302. r := &rank.Rank{
  303. Aid: aid,
  304. Score: int32(scores[aid]),
  305. }
  306. trankCache = append(trankCache, r)
  307. }
  308. s.rankCache2 = trankCache
  309. }
  310. // loadColumnListCache
  311. func (s *Service) loadColumnListCache(now time.Time) {
  312. var (
  313. tmpChild = map[int]*card.ColumnList{}
  314. )
  315. columns, err := s.cdao.ColumnList(context.TODO(), now)
  316. if err != nil {
  317. log.Error("s.cdao.ColumnList error(%v)", err)
  318. return
  319. }
  320. for _, column := range columns {
  321. tmpChild[column.Cid] = column
  322. }
  323. s.columnListCache = tmpChild
  324. }
  325. // loadCardCache load all card cache
  326. func (s *Service) loadCardCache(now time.Time) {
  327. hdm, err := s.cdao.PosRecs(context.TODO(), now)
  328. if err != nil {
  329. log.Error("s.cdao.PosRecs error(%v)", err)
  330. return
  331. }
  332. itm, aids, err := s.cdao.RecContents(context.TODO(), now)
  333. if err != nil {
  334. log.Error("s.cdao.RecContents error(%v)", err)
  335. return
  336. }
  337. tmpItem := map[int]map[int64]*show.Item{}
  338. for recid, aid := range aids {
  339. tmpItem[recid] = s.fromCardAids(context.TODO(), aid)
  340. }
  341. tmp := s.mergeCard(context.TODO(), hdm, itm, tmpItem, now)
  342. s.cardCache = tmp
  343. }
  344. func (s *Service) mergeCard(c context.Context, hdm map[int8]map[int][]*card.Card, itm map[int][]*card.Content, tmpItems map[int]map[int64]*show.Item, now time.Time) (res map[string][]*show.Show) {
  345. var (
  346. _topic = 1
  347. _activity = 0
  348. )
  349. res = map[string][]*show.Show{}
  350. for plat, phds := range hdm {
  351. hds, ok := phds[0]
  352. if !ok {
  353. continue
  354. }
  355. for _, hd := range hds {
  356. key := fmt.Sprintf(_initCardKey, plat)
  357. var (
  358. sis []*show.Item
  359. )
  360. its, ok := itm[hd.ID]
  361. if !ok {
  362. its = []*card.Content{}
  363. }
  364. tmpItem, ok := tmpItems[hd.ID]
  365. if !ok {
  366. tmpItem = map[int64]*show.Item{}
  367. }
  368. // 1 daily 2 topic 3 activity 4 rank 5 polymeric_card
  369. switch hd.Type {
  370. case 1:
  371. for _, ci := range its {
  372. si := s.fillCardItem(ci, tmpItem)
  373. if si.Title != "" {
  374. sis = append(sis, si)
  375. }
  376. }
  377. case 2:
  378. if topicID, err := strconv.ParseInt(hd.Rvalue, 10, 64); err == nil {
  379. if actm, err := s.act.Activitys(c, []int64{topicID}, _topic, ""); err != nil {
  380. } else {
  381. if act, ok := actm[topicID]; ok && act.H5Cover != "" && act.H5URL != "" {
  382. si := &show.Item{}
  383. si.FromTopic(act)
  384. sis = []*show.Item{si}
  385. }
  386. }
  387. }
  388. case 3:
  389. if topicID, err := strconv.ParseInt(hd.Rvalue, 10, 64); err == nil {
  390. if actm, err := s.act.Activitys(c, []int64{topicID}, _activity, ""); err != nil {
  391. } else {
  392. if act, ok := actm[topicID]; ok && act.H5Cover != "" && act.H5URL != "" {
  393. si := &show.Item{}
  394. si.FromActivity(act, now)
  395. sis = []*show.Item{si}
  396. }
  397. }
  398. }
  399. case 4:
  400. if len(s.rankCache) > 3 {
  401. sis = s.rankCache[:3]
  402. } else {
  403. sis = s.rankCache
  404. }
  405. case 5, 6, 8:
  406. for _, ci := range its {
  407. si := s.fillCardItem(ci, tmpItem)
  408. if si.Title != "" {
  409. sis = append(sis, si)
  410. }
  411. }
  412. case 7:
  413. si := &show.Item{
  414. Title: hd.Title,
  415. Cover: hd.Cover,
  416. Desc: hd.Desc,
  417. Goto: hd.Goto,
  418. Param: hd.Param,
  419. }
  420. if hd.Goto == model.GotoColumnStage {
  421. paramInt, _ := strconv.Atoi(hd.Param)
  422. if c, ok := s.columnListCache[paramInt]; ok {
  423. cidStr := strconv.Itoa(c.Ceid)
  424. si.URI = model.FillURICategory(hd.Goto, cidStr, hd.Param)
  425. }
  426. } else {
  427. si.URI = hd.URi
  428. }
  429. sis = append(sis, si)
  430. default:
  431. continue
  432. }
  433. if len(sis) == 0 {
  434. continue
  435. }
  436. sw := &show.Show{}
  437. sw.Head = &show.Head{
  438. CardID: hd.ID,
  439. Title: hd.Title,
  440. Type: hd.TypeStr,
  441. Build: hd.Build,
  442. Condition: hd.Condition,
  443. Plat: hd.Plat,
  444. Style: "small",
  445. }
  446. if hd.Cover != "" {
  447. sw.Head.Cover = hd.Cover
  448. }
  449. switch sw.Head.Type {
  450. case model.GotoDaily:
  451. sw.Head.Date = now.Unix()
  452. sw.Head.Param = hd.Rvalue
  453. case model.GotoCard:
  454. sw.Head.URI = hd.URi
  455. sw.Head.Goto = hd.Goto
  456. sw.Head.Param = hd.Param
  457. case model.GotoRank:
  458. sw.Head.Param = "all"
  459. case model.GotoTopic, model.GotoActivity:
  460. if sw.Head.Title == "" {
  461. if len(sis) > 0 {
  462. sw.Head.Title = sis[0].Title
  463. }
  464. }
  465. case model.GotoVeidoCard:
  466. sw.Head.Param = hd.Param
  467. if hd.Goto == model.GotoColumnStage {
  468. paramInt, _ := strconv.Atoi(hd.Param)
  469. if c, ok := s.columnListCache[paramInt]; ok {
  470. cidStr := strconv.Itoa(c.Ceid)
  471. sw.Head.URI = model.FillURICategory(hd.Goto, cidStr, hd.Param)
  472. }
  473. sw.Head.Goto = model.GotoColumn
  474. } else {
  475. sw.Head.Goto = hd.Goto
  476. sw.Head.URI = hd.URi
  477. }
  478. if sisLen := len(sis); sisLen > 1 {
  479. if sisLen%2 != 0 {
  480. sis = sis[:sisLen-1]
  481. }
  482. } else {
  483. continue
  484. }
  485. case model.GotoSpecialCard:
  486. sw.Head.Cover = ""
  487. case model.GotoTagCard:
  488. if hd.TagID > 0 {
  489. var tagIDInt int64
  490. sw.Head.Title, tagIDInt = s.fromTagIDByName(c, hd.TagID, now)
  491. sw.Head.Param = strconv.FormatInt(tagIDInt, 10)
  492. sw.Head.Goto = model.GotoTagID
  493. }
  494. }
  495. if len(sis) == 0 {
  496. sis = _emptyShowItems
  497. }
  498. sw.Body = sis
  499. res[key] = append(res[key], sw)
  500. }
  501. }
  502. return
  503. }
  504. func (s *Service) fillCardItem(csi *card.Content, tsi map[int64]*show.Item) (si *show.Item) {
  505. si = &show.Item{}
  506. switch csi.Type {
  507. case model.CardGotoAv:
  508. si.Goto = model.GotoAv
  509. si.Param = csi.Value
  510. }
  511. si.URI = model.FillURI(si.Goto, si.Param, nil)
  512. if si.Goto == model.GotoAv {
  513. aid, err := strconv.ParseInt(si.Param, 10, 64)
  514. if err != nil {
  515. log.Error("strconv.ParseInt(%s) error(%v)", si.Param, err)
  516. } else {
  517. if it, ok := tsi[aid]; ok {
  518. si = it
  519. if csi.Title != "" {
  520. si.Title = csi.Title
  521. }
  522. } else {
  523. si = &show.Item{}
  524. }
  525. }
  526. }
  527. return
  528. }
  529. // fromTagIDByName from tag_id by tag_name
  530. func (s *Service) fromTagIDByName(ctx context.Context, tagID int, now time.Time) (tagName string, tagIDInt int64) {
  531. tag, err := s.tag.TagInfo(ctx, 0, tagID, now)
  532. if err != nil {
  533. log.Error("s.tag.TagInfo(%d) error(%v)", tagID, err)
  534. return
  535. }
  536. tagName = tag.Name
  537. tagIDInt = tag.Tid
  538. return
  539. }
  540. // mergeShow merge heads and items
  541. func (s *Service) mergeShow(hdm map[int8][]*show.Head, itm map[int][]*show.Item) (res, resbg, resbgep map[string][]*show.Show) {
  542. res = map[string][]*show.Show{}
  543. resbg = map[string][]*show.Show{}
  544. resbgep = map[string][]*show.Show{}
  545. for plat, hds := range hdm {
  546. for _, hd := range hds {
  547. key := fmt.Sprintf(_initShowKey, plat, hd.Language)
  548. its, ok := itm[hd.ID]
  549. if !ok {
  550. continue
  551. }
  552. var (
  553. sis []*show.Item
  554. sisbg []*show.Item
  555. sisbgep []*show.Item
  556. ext *show.Ext
  557. )
  558. switch hd.Type {
  559. case "recommend":
  560. for _, si := range its {
  561. if si.IsRandom() {
  562. continue
  563. }
  564. s.fillItem(plat, si)
  565. sis = append(sis, si)
  566. }
  567. sisbg = sis
  568. sisbgep = sis
  569. case "live":
  570. if plat == model.PlatAndroidTV {
  571. continue
  572. }
  573. ext = &show.Ext{
  574. LiveCnt: s.liveCount,
  575. }
  576. case "bangumi":
  577. sis = s.sliceCache(plat, s.bgmCache[plat])
  578. sisbg = sis
  579. sisbgep = sis
  580. case "region":
  581. if model.IsOverseas(plat) {
  582. sis = s.sliceCache(plat, s.regionOseaCache[hd.Param])
  583. sisbg = s.sliceCache(plat, s.regionBgOseaCache[hd.Param])
  584. sisbgep = s.sliceCache(plat, s.regionBgEpOseaCache[hd.Param])
  585. } else {
  586. sis = s.sliceCache(plat, s.regionCache[hd.Param])
  587. sisbg = s.sliceCache(plat, s.regionBgCache[hd.Param])
  588. sisbgep = s.sliceCache(plat, s.regionBgEpCache[hd.Param])
  589. }
  590. case "sp":
  591. for _, si := range its {
  592. spidIdx := strings.Split(si.Param, ",")
  593. si.Goto = model.GotoSp
  594. si.Param = spidIdx[0]
  595. si.URI = model.FillURI(model.GotoSp, spidIdx[0], nil)
  596. if len(spidIdx) == 2 {
  597. si.Index = spidIdx[1]
  598. }
  599. sis = append(sis, si)
  600. }
  601. sisbg = sis
  602. sisbgep = sis
  603. case "activity":
  604. for _, si := range its {
  605. if si.IsRandom() {
  606. continue
  607. }
  608. si.Goto = model.GotoWeb
  609. si.URI = model.FillURI(model.GotoWeb, si.Param, nil)
  610. sis = append(sis, si)
  611. }
  612. sisbg = sis
  613. sisbgep = sis
  614. case "topic":
  615. for _, si := range its {
  616. si.Goto = model.GotoWeb
  617. si.URI = model.FillURI(model.GotoWeb, si.Param, nil)
  618. sis = append(sis, si)
  619. }
  620. sisbg = sis
  621. sisbgep = sis
  622. case "focus":
  623. for _, si := range its {
  624. if si.IsRandom() {
  625. continue
  626. }
  627. pp := strings.Split(si.Param, ",")
  628. si.Param = pp[0]
  629. if len(pp) == 2 {
  630. si.Goto = pp[1]
  631. } else {
  632. si.Goto = model.GotoAv
  633. }
  634. si.URI = model.FillURI(si.Goto, si.Param, nil)
  635. sisbg = append(sisbg, si)
  636. }
  637. sisbgep = sisbg
  638. default:
  639. continue
  640. }
  641. sw := &show.Show{}
  642. sw.Head = hd
  643. sw.Body = sis
  644. sw.Ext = ext
  645. swbg := &show.Show{}
  646. swbg.Head = hd
  647. swbg.Body = sisbg
  648. swbg.Ext = ext
  649. swbgep := &show.Show{}
  650. swbgep.Head = hd
  651. swbgep.Body = sisbgep
  652. swbgep.Ext = ext
  653. // append show.Show
  654. res[key] = append(res[key], sw)
  655. resbg[key] = append(resbg[key], swbg)
  656. resbgep[key] = append(resbgep[key], swbgep)
  657. }
  658. }
  659. return
  660. }
  661. // fillItem used by loadShowCache
  662. func (s *Service) fillItem(plat int8, si *show.Item) {
  663. pp := strings.Split(si.Param, ",")
  664. si.Param = pp[0]
  665. if len(pp) == 2 {
  666. si.Goto = pp[1]
  667. } else {
  668. si.Goto = model.GotoAv
  669. }
  670. si.URI = model.FillURI(si.Goto, si.Param, nil)
  671. if si.Goto == model.GotoAv {
  672. aid, err := strconv.ParseInt(si.Param, 10, 64)
  673. if err != nil {
  674. log.Error("strconv.ParseInt(%s) error(%v)", si.Param, err)
  675. } else {
  676. a, err := s.arc.Archive(context.TODO(), aid)
  677. if err != nil || a == nil {
  678. log.Error("s.arc.Archive(%d) error(%v)", aid, err)
  679. } else {
  680. si.Play = int(a.Stat.View)
  681. si.Danmaku = int(a.Stat.Danmaku)
  682. if si.Title == "" {
  683. si.Title = a.Title
  684. }
  685. if si.Cover == "" {
  686. si.Cover = a.Pic
  687. }
  688. }
  689. }
  690. } else {
  691. si.Play = rand.Intn(1000)
  692. si.Danmaku = rand.Intn(1000)
  693. }
  694. }
  695. // sliceCache used by loadShowCache
  696. func (s *Service) sliceCache(plat int8, chc []*show.Item) []*show.Item {
  697. if len(chc) == 0 {
  698. return _emptyItems
  699. }
  700. cnt := 4
  701. if plat == model.PlatIPad {
  702. cnt = 8
  703. }
  704. if len(chc) < cnt {
  705. cnt = len(chc)
  706. }
  707. return chc[:cnt]
  708. }
  709. func (s *Service) loadBlackCache() {
  710. var res []int64
  711. if err := s.client.Get(context.TODO(), _blackUrl, "", nil, &res); err != nil {
  712. log.Error("recommend ranking url(%s) error(%v)", _blackUrl, err)
  713. return
  714. }
  715. if len(res) == 0 {
  716. return
  717. }
  718. tmp := map[int64]struct{}{}
  719. for _, aid := range res {
  720. tmp[aid] = struct{}{}
  721. }
  722. s.blackCache = tmp
  723. log.Info("reBlackList success")
  724. }
  725. // rcmmndproc get recommend aids and add into cache.
  726. func (s *Service) rcmmndproc() {
  727. var ctx = context.TODO()
  728. for i := 0; i < runtime.NumCPU(); i++ {
  729. go func() {
  730. for {
  731. r := <-s.rcmmndCh
  732. s.dao.AddRcmmndCache(ctx, r.key, r.aids...)
  733. }
  734. }()
  735. }
  736. }
  737. // // loadPopularCard load popular card
  738. // func (s *Service) loadPopularCard(now time.Time) {
  739. // var (
  740. // c = context.TODO()
  741. // err error
  742. // tmp, tmpcache []*card.PopularCard
  743. // tmpPlat = map[int64]map[int8][]*card.PopularCardPlat{}
  744. // )
  745. // if tmp, err = s.cdao.Card(c, now); err != nil {
  746. // log.Error("popular card s.cd.Card error(%v)", err)
  747. // return
  748. // }
  749. // if tmpPlat, err = s.cdao.CardPlat(c); err != nil {
  750. // log.Error("popular card s.cd.CardPlat error(%v)", err)
  751. // return
  752. // }
  753. // for _, t := range tmp {
  754. // tc := &card.PopularCard{}
  755. // *tc = *t
  756. // if pconfig, ok := tmpPlat[t.ID]; ok {
  757. // tc.PopularCardPlat = pconfig
  758. // }
  759. // tmpcache = append(tmpcache, tc)
  760. // }
  761. // s.hotCache = tmpcache
  762. // log.Info("hotCache success")
  763. // }
  764. func (s *Service) loadHotTenTabAids() {
  765. var tmpList = make(map[int][]*recmod.CardList)
  766. for i := 0; i < 10; i++ {
  767. var (
  768. c = context.TODO()
  769. err error
  770. hottabAids []*recmod.CardList
  771. flowResp *creativeAPI.FlowResponse
  772. oids []int64
  773. forbidAids = make(map[int64]struct{})
  774. )
  775. if hottabAids, err = s.rcmmnd.HotHeTongTabCard(c, i); err != nil {
  776. log.Error("%+v", err)
  777. continue
  778. }
  779. for _, hot := range hottabAids {
  780. if hot.Goto == model.GotoAv {
  781. oids = append(oids, hot.ID)
  782. }
  783. }
  784. if flowResp, err = s.creativeClient.FlowJudge(context.Background(), &creativeAPI.FlowRequest{
  785. Oids: oids,
  786. Business: 4,
  787. Gid: 24,
  788. }); err != nil {
  789. log.Error("s.creativeClient.FlowJudge error(%v)", err)
  790. tmpList[i] = hottabAids
  791. } else {
  792. for _, oid := range flowResp.Oids {
  793. forbidAids[oid] = struct{}{}
  794. }
  795. for _, list := range hottabAids {
  796. if list.Goto == model.GotoAv {
  797. if _, ok := forbidAids[list.ID]; ok {
  798. log.Info("aid(%d) is flowJundged", list.ID)
  799. continue
  800. }
  801. }
  802. tmpList[i] = append(tmpList[i], list)
  803. }
  804. }
  805. log.Info("buildHotSuccess(%d) len(%d)", i, len(tmpList[i]))
  806. }
  807. if len(tmpList) == 10 {
  808. s.hotTenTabCardCache = tmpList
  809. }
  810. }
  811. func (s *Service) loadHotTopicCache() {
  812. var (
  813. c = context.TODO()
  814. err error
  815. topics []*clive.TopicHot
  816. )
  817. if topics, err = s.lv.TopicHots(c); err != nil {
  818. log.Error("topichots s.lv.TopicHots error(%v)", err)
  819. return
  820. }
  821. if len(topics) > 8 {
  822. s.hottopicsCache = topics[:8]
  823. } else {
  824. s.hottopicsCache = topics
  825. }
  826. log.Info("loadHotTopicCache success")
  827. }
  828. func (s *Service) loadHotTenMergeRcmdCache(i int) {
  829. // mc
  830. var (
  831. c = context.TODO()
  832. hcards []*recmod.CardList
  833. rcmdcard []*card.PopularCard
  834. ok bool
  835. err error
  836. )
  837. if hcards, ok = s.hotTenTabCardCache[i]; ok {
  838. for _, hcard := range hcards {
  839. rcmdcard = append(rcmdcard, hcard.CardListChange())
  840. }
  841. if err = s.cdao.AddPopularCardTenCache(c, i, rcmdcard); err != nil {
  842. log.Error("cards mc s.cdao.AddPopularCardCache error(%v)", err)
  843. return
  844. }
  845. }
  846. }
  847. // PopularCardList cards
  848. func (s *Service) PopularCardTenList(c context.Context, i int) (res []*card.PopularCard) {
  849. var err error
  850. if res, err = s.cdao.PopularCardTenCache(c, i); err != nil {
  851. log.Error("%+v", err)
  852. return
  853. }
  854. return
  855. }
  856. func (s *Service) loadCardSetCache() {
  857. var (
  858. cards map[int64]*operate.CardSet
  859. err error
  860. )
  861. if cards, err = s.cdao.CardSet(context.TODO()); err != nil {
  862. log.Error("%+v", err)
  863. return
  864. }
  865. s.cardSetCache = cards
  866. }
  867. func (s *Service) loadDynamicHotCache() {
  868. var (
  869. liveList []*clive.DynamicHot
  870. err error
  871. )
  872. if liveList, err = s.lv.DynamicHot(context.TODO()); err != nil {
  873. log.Error("s.lv.dynamichot error(%v)", err)
  874. return
  875. }
  876. s.dynamicHotCache = liveList
  877. }
  878. func (s *Service) loadEventTopicCache() {
  879. var (
  880. eventtopic map[int64]*operate.EventTopic
  881. err error
  882. )
  883. if eventtopic, err = s.cdao.EventTopic(context.TODO()); err != nil {
  884. log.Error("s.cdao.eventtopic error(%v)", err)
  885. return
  886. }
  887. s.eventTopicCache = eventtopic
  888. }