audit.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. package region
  2. import (
  3. "context"
  4. "strconv"
  5. "time"
  6. "go-common/app/interface/main/app-show/model"
  7. "go-common/app/interface/main/app-show/model/banner"
  8. "go-common/app/interface/main/app-show/model/region"
  9. "go-common/app/service/main/archive/api"
  10. "go-common/library/log"
  11. )
  12. var (
  13. _auditRids = map[int8]map[int]struct{}{
  14. model.PlatIPad: map[int]struct{}{
  15. 153: struct{}{},
  16. 168: struct{}{},
  17. 169: struct{}{},
  18. 170: struct{}{},
  19. 33: struct{}{},
  20. 32: struct{}{},
  21. 51: struct{}{},
  22. 152: struct{}{},
  23. 37: struct{}{},
  24. 178: struct{}{},
  25. 179: struct{}{},
  26. 180: struct{}{},
  27. 147: struct{}{},
  28. 145: struct{}{},
  29. 146: struct{}{},
  30. 83: struct{}{},
  31. 185: struct{}{},
  32. 187: struct{}{},
  33. 13: struct{}{},
  34. 167: struct{}{},
  35. 177: struct{}{},
  36. 23: struct{}{},
  37. 1: struct{}{},
  38. 160: struct{}{},
  39. 119: struct{}{},
  40. 155: struct{}{},
  41. 165: struct{}{},
  42. 5: struct{}{},
  43. 181: struct{}{},
  44. },
  45. model.PlatIPhone: map[int]struct{}{
  46. 153: struct{}{},
  47. 168: struct{}{},
  48. 169: struct{}{},
  49. 170: struct{}{},
  50. 33: struct{}{},
  51. 32: struct{}{},
  52. 51: struct{}{},
  53. 152: struct{}{},
  54. 37: struct{}{},
  55. 178: struct{}{},
  56. 179: struct{}{},
  57. 180: struct{}{},
  58. 147: struct{}{},
  59. 145: struct{}{},
  60. 146: struct{}{},
  61. 83: struct{}{},
  62. 185: struct{}{},
  63. 187: struct{}{},
  64. 1: struct{}{},
  65. 160: struct{}{},
  66. 119: struct{}{},
  67. 155: struct{}{},
  68. 165: struct{}{},
  69. 5: struct{}{},
  70. 181: struct{}{},
  71. },
  72. }
  73. )
  74. // Audit region data list.
  75. func (s *Service) auditRegion(mobiApp string, plat int8, build, rid int) (isAudit bool) {
  76. if plats, ok := s.auditCache[mobiApp]; ok {
  77. if _, ok = plats[build]; ok {
  78. if rids, ok := _auditRids[plat]; ok {
  79. if _, ok = rids[rid]; ok {
  80. return true
  81. }
  82. }
  83. }
  84. }
  85. return false
  86. }
  87. func (s *Service) loadAuditCache() {
  88. as, err := s.adt.Audits(context.TODO())
  89. if err != nil {
  90. log.Error("s.adt.Audits error(%v)", err)
  91. return
  92. }
  93. s.auditCache = as
  94. }
  95. // Audit check audit plat and ip, then return audit data.
  96. func (s *Service) Audit(c context.Context, mobiApp string, plat int8, build, rid int, isShow bool) (res *region.Show, ok bool) {
  97. if plats, ok := s.auditCache[mobiApp]; ok {
  98. if _, ok = plats[build]; ok {
  99. res = s.auditData(c, plat, rid, auditShowAids)
  100. if isShow {
  101. res.Banner = audirRegionBanners[rid]
  102. }
  103. return res, true
  104. }
  105. }
  106. return nil, false
  107. }
  108. // AuditChild check audit plat and ip, then return audit data.
  109. func (s *Service) AuditChild(c context.Context, mobiApp, order string, plat int8, build, rid, tid int) (res *region.Show, ok bool) {
  110. if plats, ok := s.auditCache[mobiApp]; ok {
  111. if _, ok = plats[build]; ok {
  112. res = s.auditData(c, plat, rid, auditChildShowAids)
  113. res.New = s.auditRegionRPCList(c, rid, 1, 8)
  114. return res, true
  115. }
  116. }
  117. return nil, false
  118. }
  119. // AuditChildList check audit plat and ip, then return audit data.
  120. func (s *Service) AuditChildList(c context.Context, mobiApp, order string, plat int8, build, rid, tid, pn, ps int) (res []*region.ShowItem, ok bool) {
  121. if plats, ok := s.auditCache[mobiApp]; ok {
  122. if _, ok = plats[build]; ok {
  123. res = s.auditRegionChildList(c, rid, tid, pn, ps)
  124. return res, true
  125. }
  126. }
  127. return nil, false
  128. }
  129. // auditData some data for audit.
  130. func (s *Service) auditData(c context.Context, p int8, rid int, auditAids map[int][]int64) (res *region.Show) {
  131. aids := auditAids[rid]
  132. // archive
  133. as, err := s.arc.ArchivesPB(c, aids)
  134. if err != nil {
  135. log.Error("s.arc.ArchivesPB error(%v)", err)
  136. as = map[int64]*api.Arc{}
  137. }
  138. res = &region.Show{}
  139. for _, aid := range aids {
  140. if aid == 0 {
  141. continue
  142. }
  143. item := &region.ShowItem{}
  144. item.Goto = model.GotoAv
  145. item.Param = strconv.FormatInt(aid, 10)
  146. item.URI = model.FillURI(item.Goto, item.Param, nil)
  147. if a, ok := as[aid]; ok {
  148. item.Title = a.Title
  149. item.Cover = a.Pic
  150. item.Name = a.Author.Name
  151. item.Play = int(a.Stat.View)
  152. item.Danmaku = int(a.Stat.Danmaku)
  153. item.Reply = int(a.Stat.Reply)
  154. item.Fav = int(a.Stat.Fav)
  155. }
  156. res.Recommend = append(res.Recommend, item)
  157. }
  158. return
  159. }
  160. func (s *Service) auditRegionChildList(c context.Context, rid, tid, pn, ps int) (res []*region.ShowItem) {
  161. if tid == 0 {
  162. arcs, _, err := s.arc.RanksArcs(c, rid, pn, ps)
  163. if err != nil {
  164. log.Error("s.rcmmnd.RegionArcList(%d, %d, %d, %d) error(%v)", rid, pn, ps, err)
  165. return
  166. }
  167. res = s.fromArchivesPBOsea(arcs, false)
  168. } else {
  169. as, err := s.tag.NewArcs(c, rid, tid, pn, ps, time.Now())
  170. if err != nil {
  171. log.Error("s.tag.NewArcs(%d, %d) error(%v)", rid, tid, err)
  172. return
  173. }
  174. res = s.fromAidsOsea(c, as, false, false, 0)
  175. }
  176. return
  177. }
  178. func (s *Service) auditRegionRPCList(c context.Context, rid, pn, ps int) (res []*region.ShowItem) {
  179. arcs, err := s.arc.RankTopArcs(c, rid, pn, ps)
  180. if err != nil {
  181. log.Error("s.arc.RankTopArcs(%d) error(%v)", rid, err)
  182. return
  183. }
  184. res, _ = s.fromArchivesPB(arcs)
  185. return
  186. }
  187. var (
  188. auditShowAids = map[int][]int64{
  189. // rid
  190. 1: []int64{575891, 744286, 663583, 666946, 559050, 744299},
  191. 3: []int64{881693, 756287, 785484, 402851, 887618, 853895},
  192. 4: []int64{861290, 861306, 861410, 861538, 861711, 861945},
  193. 5: []int64{791621, 795406, 797933, 800658, 832103, 833520},
  194. 11: []int64{1961205, 2028734},
  195. 13: []int64{2434272, 7408756, 2222558, 845204, 862063, 845034},
  196. 36: []int64{834839, 838077, 872364, 852955, 877423, 881182},
  197. 119: []int64{638240, 1959692, 78287, 1979757},
  198. 129: []int64{966192, 936016, 1958897, 886841},
  199. }
  200. auditChildShowAids = map[int][]int64{
  201. 20: []int64{936016, 886841, 1773160, 1958897, 1406019, 1935680, 1976153, 1985297, 1984555, 1964367, 29013765, 27379226, 25886650, 27684044, 20203945},
  202. 21: []int64{689694, 829135, 743922, 876565, 690522, 686220, 286616, 339727, 668054, 288602},
  203. 22: []int64{1911041, 1976535, 913421},
  204. 24: []int64{258271, 462832, 430248},
  205. 25: []int64{190257, 432195},
  206. 26: []int64{638240, 1959692, 78287, 1979757},
  207. 27: []int64{775898, 199852, 539880, 2469560, 306718, 2460323, 851414, 2471090, 591021, 286678},
  208. 28: []int64{221107, 221106, 884789, 364379, 465230, 26437, 29009413, 28965015, 28087847, 27837553, 24691347},
  209. 29: []int64{1984330, 1966586, 1984971, 28935962, 28818825, 26514923, 23288906, 18043554},
  210. 30: []int64{308040, 850424, 360940, 482844, 887861, 539600, 869576, 400161, 644935, 333069, 28659609, 24929108, 23068834, 26659364, 25386207},
  211. 31: []int64{1968681, 1986904, 1986802, 2473751, 2473083, 24910218, 25409335, 25043881, 27384682, 23474776},
  212. 37: []int64{1968901, 1969254, 1971484},
  213. 47: []int64{364103, 621797, 557774, 620545, 291630, 853831, 627451, 789570, 582598, 666971},
  214. 54: []int64{2294239, 2210977, 21297755, 21678914, 22000250, 19929241, 18039794},
  215. 59: []int64{1969748, 1966643, 1964781, 1969527, 25814802, 25991412, 26577780, 23922472, 28934467},
  216. 71: []int64{1986816, 1985288, 1986516, 1985717},
  217. 75: []int64{200595, 721477, 668533, 803294, 708986, 581574, 588820, 718877, 6336, 592586},
  218. 76: []int64{800617, 817625, 853774, 808176, 810174, 737783, 792994, 811825, 794302, 817814},
  219. 95: []int64{880857, 26317616, 26697725, 24670946, 13562204, 24136940},
  220. 96: []int64{2313588, 2314237, 2316089, 28917042, 20177394, 27839524, 25866526, 22021244},
  221. 98: []int64{875076, 873174, 580862, 289024, 28868117, 26404621, 17229132, 28810408, 27710623},
  222. 122: []int64{1986932, 1985610, 22034719, 19980487, 19841525, 23328696, 29249512},
  223. 124: []int64{842756, 875624, 880558, 862316, 876708, 883418, 403120, 855131, 876867, 833785, 29064835, 27464818, 28055879, 18081681, 22968172},
  224. 126: []int64{1636345, 1985956, 1975358, 1982533},
  225. 127: []int64{1743126, 1625784, 1986533, 1727650},
  226. 128: []int64{2031210, 2034983, 1916941, 2030610, 2015734, 2016150, 1982576, 2039658, 1981156, 1964927},
  227. 130: []int64{1984887, 1985685, 1985886, 25276379, 17119215, 24949925, 25058065, 2929013},
  228. 131: []int64{1980280, 1975409},
  229. 137: []int64{2316922, 2318219},
  230. 138: []int64{2317125, 2317283, 2315385, 2317914, 2317194},
  231. 153: []int64{2429129, 7408756, 2426501, 2425990, 2387429, 2425770, 2219211, 878914, 880182, 2240189},
  232. 154: []int64{1960912, 1984928, 29240625, 26192654, 24211477, 23746281, 23871787},
  233. 156: []int64{28960012, 26624032, 25520347, 23567968, 23706035},
  234. 17: []int64{28989880, 25158325, 23947116, 27052563, 24237900},
  235. 171: []int64{29027059, 26486853, 19641793, 26432920, 27107785},
  236. 172: []int64{28280704, 28667051, 27462689, 22870782, 17703340},
  237. 65: []int64{28386938, 28832756, 27894258, 23401066, 24434703},
  238. 173: []int64{28938351, 28945212, 28149415, 17717106, 26227357},
  239. 121: []int64{27148774, 24729449, 24544576, 23651344, 21672258},
  240. 136: []int64{26033272, 26422598, 26804826, 25773023, 22961192},
  241. 19: []int64{28942929, 26325161, 24502096, 22364954, 19289951},
  242. 39: []int64{29120624, 26300313, 25504214, 9447066, 20786390},
  243. 176: []int64{28811447, 27569816, 11984355, 10788852, 29346662},
  244. }
  245. audirRegionBanners = map[int]map[string][]*banner.Banner{
  246. 1: map[string][]*banner.Banner{
  247. "top": []*banner.Banner{
  248. &banner.Banner{
  249. Title: "四月再见",
  250. Image: "http://i0.hdslb.com/bfs/archive/8bbc82a30720f8c2cdcca1576e25917f7bbdfb96.jpg",
  251. Hash: "db6e4dcc120fcd954a5c2d454b618f09",
  252. URI: "http://www.bilibili.com/video/av2471080/",
  253. },
  254. },
  255. },
  256. 3: map[string][]*banner.Banner{
  257. "top": []*banner.Banner{
  258. &banner.Banner{
  259. Title: "【洛天依原创】夜寂",
  260. Image: "http://i0.hdslb.com/bfs/archive/6fa8a51c9adf6eeda36636ed7fffae5b1888c154.jpg",
  261. Hash: "c925b57dbaa1198e8cdedc84c4781313",
  262. URI: "http://www.bilibili.com/video/av2126431/",
  263. },
  264. },
  265. },
  266. 4: map[string][]*banner.Banner{
  267. "top": []*banner.Banner{
  268. &banner.Banner{
  269. Title: "释放内心中的熊孩子吧",
  270. Image: "http://i0.hdslb.com/bfs/archive/b94d053b289184d498236de100af383bd25cfb13.jpg",
  271. Hash: "f246e2f10d19e30dc7311c9f1ee8385e",
  272. URI: "http://www.bilibili.com/video/av2459834/",
  273. },
  274. },
  275. },
  276. 5: map[string][]*banner.Banner{
  277. "top": []*banner.Banner{
  278. &banner.Banner{
  279. Title: "巅峰料理对决~~~",
  280. Image: "http://i0.hdslb.com/bfs/archive/a91501598fb180f61f234e31f94731b74235b461.jpg",
  281. Hash: "8664c0bd979f62c02cf6711ac0a55219",
  282. URI: "http://www.bilibili.com/video/av2607073/?br",
  283. },
  284. &banner.Banner{
  285. Title: "首轮淘汰赛,谁将会离开",
  286. Image: "http://i0.hdslb.com/bfs/archive/ae6d1ef420a5bfdca969a31ecd7449384cfcd580.jpg",
  287. Hash: "346b456dea567a32a11a9427ebe3246f",
  288. URI: "http://www.bilibili.com/video/av2609994/?br",
  289. },
  290. &banner.Banner{
  291. Title: "孙红雷罗志祥乡村女装秀",
  292. Image: "http://i0.hdslb.com/bfs/archive/3ea355584e26376df6cccbb1a2574f03f7e0a41d.jpg",
  293. Hash: "45e70e0f72dd1fa4621e13986df03b30",
  294. URI: "http://www.bilibili.com/video/av2598211/?br",
  295. },
  296. &banner.Banner{
  297. Title: "帅哥萌妹齐驾到 HK君强势出境!",
  298. Image: "http://i0.hdslb.com/bfs/archive/ae6d1ef420a5bfdca969a31ecd7449384cfcd580.jpg",
  299. Hash: "7e7f8fa57dfffa0ca141e12f43088851",
  300. URI: "http://www.bilibili.com/video/av2598658/?br",
  301. },
  302. &banner.Banner{
  303. Title: "林丹谢霆锋上演锅铲大战 容祖儿情绪崩溃大哭",
  304. Image: "http://i0.hdslb.com/bfs/archive/959930c687c172a28d9f24e6a53aceb7fca4f728.jpg",
  305. Hash: "512a11b81e053d52c2ad836c453c18ad",
  306. URI: "http://www.bilibili.com/video/av2588446/?br",
  307. },
  308. &banner.Banner{
  309. Title: "【绅士大概一分钟】尽情舞蹈吧少年",
  310. Image: "http://i0.hdslb.com/bfs/archive/40878881827105f576e0346932cf693c3033e1ca.jpg",
  311. Hash: "147763f8003e6f88385cd438e8b6c7e4",
  312. URI: "http://www.bilibili.com/video/av2614367/?br",
  313. },
  314. },
  315. },
  316. 11: map[string][]*banner.Banner{
  317. "top": []*banner.Banner{
  318. &banner.Banner{
  319. Title: "亚瑟王",
  320. Image: "http://i0.hdslb.com/bfs/archive/60b1339a3eeb8d0de287b7c305e0671082946bfc.jpg",
  321. Hash: "634684fe0fd4fb3b7501daf9a9b4ab5d",
  322. URI: "http://www.bilibili.com/video/av2128802/",
  323. },
  324. },
  325. },
  326. 13: map[string][]*banner.Banner{
  327. "top": []*banner.Banner{
  328. &banner.Banner{
  329. Title: "少女终末旅行",
  330. Image: "http://i0.hdslb.com/bfs/archive/c0c33be60527c377277048c04ee222c9ec76a82c.jpg",
  331. Hash: "2e772627851aa7da8a75f7b5403a5ed3",
  332. URI: "http://bangumi.bilibili.com/anime/6463",
  333. },
  334. },
  335. },
  336. 23: map[string][]*banner.Banner{
  337. "top": []*banner.Banner{
  338. &banner.Banner{
  339. Title: "像素大战",
  340. Image: "http://i0.hdslb.com/bfs/archive/0c8f1e05dfdba3b58fc15159523d0ccceed1e9ac.jpg",
  341. Hash: "f62bbb0578beb4bc63550d5632960480",
  342. URI: "http://www.bilibili.com/video/av2124091/",
  343. },
  344. },
  345. },
  346. 36: map[string][]*banner.Banner{
  347. "top": []*banner.Banner{
  348. &banner.Banner{
  349. Title: "梦回仙剑",
  350. Image: "http://i0.hdslb.com/bfs/archive/76145de97ff917a6e603009376f4ca174dd4ed51.jpg",
  351. Hash: "6334c8c08ffa8eaa6c13f8c14bd0fae0",
  352. URI: "http://www.bilibili.com/video/av2448057/",
  353. },
  354. },
  355. },
  356. 119: map[string][]*banner.Banner{
  357. "top": []*banner.Banner{
  358. &banner.Banner{
  359. Title: "魔都地铁偷走了重要的东西",
  360. Image: "http://i0.hdslb.com/bfs/archive/f84dd391351a00d69cfb44616c1a64419ad4611c.jpg",
  361. Hash: "5de70c2b24a155d7958943b85bf8facc",
  362. URI: "http://www.bilibili.com/video/av2106417/",
  363. },
  364. },
  365. },
  366. 129: map[string][]*banner.Banner{
  367. "top": []*banner.Banner{
  368. &banner.Banner{
  369. Title: "元气少女",
  370. Image: "http://i0.hdslb.com/bfs/archive/014c0793bdaf5930e0edca54755da3c25eafcb2e.jpg",
  371. Hash: "46e48cee8d5b344af3a41636e96a60ca",
  372. URI: "http://www.bilibili.com/video/av2448328/",
  373. },
  374. },
  375. },
  376. }
  377. )