region.go 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. package region
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "strconv"
  7. "strings"
  8. "go-common/app/interface/main/app-show/model"
  9. "go-common/app/interface/main/app-show/model/region"
  10. locmdl "go-common/app/service/main/location/model"
  11. "go-common/library/ecode"
  12. "go-common/library/log"
  13. "go-common/library/net/metadata"
  14. farm "github.com/dgryski/go-farm"
  15. )
  16. const (
  17. _initRegionKey = "region_key_%d_%v"
  18. _initlanguage = "hans"
  19. _initVersion = "region_version"
  20. _regionAll = int8(0)
  21. _isRegion = int8(1)
  22. _isRank = int8(2)
  23. _initRegionlimit = "%d_%v"
  24. _regionRepeat = "r_%d_%d"
  25. )
  26. var (
  27. _emptyRegions = []*region.Region{}
  28. _isBangumi = map[int]struct{}{
  29. 13: struct{}{},
  30. 177: struct{}{},
  31. 23: struct{}{},
  32. 11: struct{}{},
  33. }
  34. _isBangumiIndex = map[int]struct{}{
  35. 13: struct{}{},
  36. 23: struct{}{},
  37. 11: struct{}{},
  38. 167: struct{}{},
  39. }
  40. _regionlimit = map[int8]map[string]map[int]string{
  41. model.PlatIPhone: map[string]map[int]string{
  42. "65542_bilibili://cliparea": map[int]string{
  43. 5960: "gt",
  44. 6570: "lt",
  45. },
  46. "65541_bilibili://category/65541": map[int]string{
  47. 5960: "gt",
  48. 6570: "lt",
  49. },
  50. "65544_bilibili://albumarea": map[int]string{
  51. 6090: "gt",
  52. 6570: "lt",
  53. },
  54. },
  55. }
  56. )
  57. // Regions get regions.
  58. func (s *Service) Regions(c context.Context, plat int8, build int, ver, mobiApp, device, language string) (rs []*region.Region, version string, err error) {
  59. ip := metadata.String(c, metadata.RemoteIP)
  60. rs, version, err = s.getCache(c, plat, build, ver, ip, mobiApp, device, language, "", false)
  61. return
  62. }
  63. // Regions get regions.
  64. func (s *Service) RegionsList(c context.Context, plat int8, build int, ver, mobiApp, device, language, entrance string) (rs []*region.Region, version string, err error) {
  65. ip := metadata.String(c, metadata.RemoteIP)
  66. rs, version, err = s.getCache(c, plat, build, ver, ip, mobiApp, device, language, entrance, true)
  67. return
  68. }
  69. // getCache get region from cache.
  70. func (s *Service) getCache(c context.Context, plat int8, build int, ver, ip, mobiApp, device, language, entrance string, isNew bool) (res []*region.Region, version string, err error) {
  71. if language == "" {
  72. language = _initlanguage
  73. }
  74. var (
  75. rs = s.cache[fmt.Sprintf(_initRegionKey, plat, language)]
  76. child = map[int][]*region.Region{}
  77. entranceShow = _isRegion
  78. ridlimit = _regionlimit[plat]
  79. ridtmp = map[string]struct{}{}
  80. pids []string
  81. auths map[string]*locmdl.Auth
  82. )
  83. switch entrance {
  84. case "region":
  85. entranceShow = _isRegion
  86. case "rank":
  87. entranceShow = _isRank
  88. }
  89. for _, rtmp := range rs {
  90. if rtmp.Area != "" {
  91. pids = append(pids, rtmp.Area)
  92. }
  93. }
  94. if len(pids) > 0 {
  95. auths, _ = s.loc.AuthPIDs(c, strings.Join(pids, ","), ip)
  96. }
  97. Retry:
  98. for _, rtmp := range rs {
  99. r := &region.Region{}
  100. *r = *rtmp
  101. if _, isgbm := _isBangumi[r.Rid]; isgbm {
  102. r.IsBangumi = 1
  103. }
  104. if isNew {
  105. if r.Entrance != _regionAll && entranceShow != r.Entrance {
  106. continue
  107. }
  108. } else {
  109. switch r.Rid {
  110. case 65545, 65542, 65541, 65543, 65544, 65546:
  111. if mobiApp == "android" {
  112. continue
  113. }
  114. }
  115. }
  116. if r.Rid != 165 || ((mobiApp != "iphone" || device != "pad") || build <= 3590) {
  117. if model.InvalidBuild(build, r.Build, r.Condition) {
  118. continue
  119. }
  120. }
  121. key := fmt.Sprintf(_initRegionlimit, r.Rid, r.URI)
  122. if rlimit, ok := ridlimit[key]; ok {
  123. for blimit, climit := range rlimit {
  124. if model.InvalidBuild(build, blimit, climit) {
  125. continue Retry
  126. }
  127. }
  128. }
  129. if r.Rid == 65541 && (plat == model.PlatIPhone && build == 7040) {
  130. continue
  131. }
  132. if r.Rid == 65543 && ((plat == model.PlatIPhone && (build == 7070 || build == 7040 || build == 7030)) ||
  133. (plat == model.PlatAndroid && (build == 591182 || build == 591181 || build == 591178 || build == 591177))) {
  134. continue
  135. }
  136. if auth, ok := auths[r.Area]; ok && auth.Play == locmdl.Forbidden {
  137. log.Warn("s.invalid area(%v) ip(%v) error(%v)", r.Area, ip, err)
  138. continue
  139. }
  140. if isAudit := s.auditRegion(mobiApp, plat, build, r.Rid); isAudit {
  141. continue
  142. }
  143. rkey := fmt.Sprintf(_regionRepeat, r.Rid, r.Reid)
  144. if _, ok := ridtmp[rkey]; !ok {
  145. ridtmp[rkey] = struct{}{}
  146. } else {
  147. continue
  148. }
  149. if r.Reid != 0 {
  150. cl, ok := child[r.Reid]
  151. if !ok {
  152. cl = []*region.Region{}
  153. }
  154. cl = append(cl, r)
  155. child[r.Reid] = cl
  156. } else {
  157. res = append(res, r)
  158. }
  159. }
  160. if len(res) == 0 {
  161. res = _emptyRegions
  162. } else {
  163. for _, r := range res {
  164. r.Children = child[r.Rid]
  165. }
  166. }
  167. if version = s.hash(res); version == ver {
  168. err = ecode.NotModified
  169. res = nil
  170. }
  171. return
  172. }
  173. // NewRegionList get region from cache.
  174. func (s *Service) NewRegionList(c context.Context, plat int8, build int, ver, mobiApp, device, language string) (res []*region.Region, version string, err error) {
  175. ip := metadata.String(c, metadata.RemoteIP)
  176. var (
  177. hantlanguage = "hant"
  178. )
  179. if ok := model.IsOverseas(plat); ok && language != _initlanguage && language != hantlanguage {
  180. language = hantlanguage
  181. } else if language == "" {
  182. language = _initlanguage
  183. }
  184. var (
  185. rs = s.cachelist[fmt.Sprintf(_initRegionKey, plat, language)]
  186. child = map[int][]*region.Region{}
  187. ridtmp = map[string]struct{}{}
  188. pids []string
  189. auths map[string]*locmdl.Auth
  190. )
  191. for _, rtmp := range rs {
  192. if rtmp.Area != "" {
  193. pids = append(pids, rtmp.Area)
  194. }
  195. }
  196. if len(pids) > 0 {
  197. auths, _ = s.loc.AuthPIDs(c, strings.Join(pids, ","), ip)
  198. }
  199. LOOP:
  200. for _, rtmp := range rs {
  201. r := &region.Region{}
  202. *r = *rtmp
  203. if _, isgbm := _isBangumiIndex[r.Rid]; isgbm {
  204. r.IsBangumi = 1
  205. }
  206. var tmpl, limitshow bool
  207. if limit, ok := s.limitCache[r.ID]; ok {
  208. for i, l := range limit {
  209. if i+1 <= len(limit)-1 {
  210. if ((l.Condition == "gt" && limit[i+1].Condition == "lt") && (l.Build < limit[i+1].Build)) ||
  211. ((l.Condition == "lt" && limit[i+1].Condition == "gt") && (l.Build > limit[i+1].Build)) {
  212. if (l.Condition == "gt" && limit[i+1].Condition == "lt") &&
  213. (build > l.Build && build < limit[i+1].Build) {
  214. break
  215. } else if (l.Condition == "lt" && limit[i+1].Condition == "gt") &&
  216. (build < l.Build && build > limit[i+1].Build) {
  217. break
  218. } else {
  219. tmpl = true
  220. continue
  221. }
  222. }
  223. }
  224. if tmpl {
  225. if i == len(limit)-1 {
  226. limitshow = true
  227. // continue LOOP
  228. break
  229. }
  230. tmpl = false
  231. continue
  232. }
  233. if model.InvalidBuild(build, l.Build, l.Condition) {
  234. limitshow = true
  235. continue
  236. // continue LOOP
  237. } else {
  238. limitshow = false
  239. break
  240. }
  241. }
  242. }
  243. if limitshow {
  244. continue LOOP
  245. }
  246. if auth, ok := auths[r.Area]; ok && auth.Play == locmdl.Forbidden {
  247. log.Warn("s.invalid area(%v) ip(%v) error(%v)", r.Area, ip, err)
  248. continue
  249. }
  250. if isAudit := s.auditRegion(mobiApp, plat, build, r.Rid); isAudit {
  251. continue
  252. }
  253. if config, ok := s.configCache[r.ID]; ok {
  254. r.Config = config
  255. }
  256. key := fmt.Sprintf(_regionRepeat, r.Rid, r.Reid)
  257. if _, ok := ridtmp[key]; !ok {
  258. ridtmp[key] = struct{}{}
  259. } else {
  260. continue
  261. }
  262. if r.Reid != 0 {
  263. cl, ok := child[r.Reid]
  264. if !ok {
  265. cl = []*region.Region{}
  266. }
  267. cl = append(cl, r)
  268. child[r.Reid] = cl
  269. } else {
  270. res = append(res, r)
  271. }
  272. }
  273. if len(res) == 0 {
  274. res = _emptyRegions
  275. } else {
  276. for _, r := range res {
  277. r.Children = child[r.Rid]
  278. }
  279. }
  280. if version = s.hash(res); version == ver {
  281. err = ecode.NotModified
  282. res = nil
  283. }
  284. return
  285. }
  286. func (s *Service) hash(v []*region.Region) string {
  287. bs, err := json.Marshal(v)
  288. if err != nil {
  289. log.Error("json.Marshal error(%v)", err)
  290. return _initVersion
  291. }
  292. return strconv.FormatUint(farm.Hash64(bs), 10)
  293. }
  294. // loadRegion regions cache.
  295. func (s *Service) loadRegion() {
  296. res, err := s.dao.All(context.TODO())
  297. if err != nil {
  298. log.Error("s.dao.All error(%v)", err)
  299. return
  300. }
  301. tmp := map[string][]*region.Region{}
  302. for _, v := range res {
  303. key := fmt.Sprintf(_initRegionKey, v.Plat, v.Language)
  304. tmp[key] = append(tmp[key], v)
  305. }
  306. if len(tmp) > 0 {
  307. s.cache = tmp
  308. }
  309. log.Info("region cacheproc success")
  310. }
  311. func (s *Service) loadRegionlist() {
  312. res, err := s.dao.AllList(context.TODO())
  313. if err != nil {
  314. log.Error("s.dao.All error(%v)", err)
  315. return
  316. }
  317. tmp := map[string][]*region.Region{}
  318. tmpRegion := map[string]map[int]*region.Region{}
  319. for _, v := range res {
  320. key := fmt.Sprintf(_initRegionKey, v.Plat, v.Language)
  321. tmp[key] = append(tmp[key], v)
  322. // region list map
  323. if r, ok := tmpRegion[key]; ok {
  324. r[v.Rid] = v
  325. } else {
  326. tmpRegion[key] = map[int]*region.Region{
  327. v.Rid: v,
  328. }
  329. }
  330. }
  331. if len(tmp) > 0 && len(tmpRegion) > 0 {
  332. s.cachelist = tmp
  333. s.regionListCache = tmpRegion
  334. }
  335. log.Info("region list cacheproc success")
  336. limit, err := s.dao.Limit(context.TODO())
  337. if err != nil {
  338. log.Error("s.dao.limit error(%v)", err)
  339. return
  340. }
  341. s.limitCache = limit
  342. log.Info("region limit cacheproc success")
  343. config, err := s.dao.Config(context.TODO())
  344. if err != nil {
  345. log.Error("s.dao.Config error(%v)", err)
  346. return
  347. }
  348. s.configCache = config
  349. log.Info("region config cacheproc success")
  350. }