region.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. package region
  2. import (
  3. "strconv"
  4. "time"
  5. "go-common/app/interface/main/app-show/model"
  6. "go-common/app/interface/main/app-show/model/activity"
  7. "go-common/app/interface/main/app-show/model/banner"
  8. "go-common/app/interface/main/app-show/model/recommend"
  9. "go-common/app/interface/main/app-show/model/tag"
  10. accv1 "go-common/app/service/main/account/api"
  11. "go-common/app/service/main/archive/api"
  12. seasongrpc "go-common/app/service/openplatform/pgc-season/api/grpc/season/v1"
  13. xtime "go-common/library/time"
  14. )
  15. const (
  16. _activityForm = "2006-01-02 15:04:05"
  17. )
  18. type Region struct {
  19. ID int64 `json:"-"`
  20. Rid int `json:"tid"`
  21. Reid int `json:"reid"`
  22. Name string `json:"name"`
  23. Logo string `json:"logo"`
  24. Goto string `json:"goto"`
  25. Param string `json:"param"`
  26. Rank string `json:"-"`
  27. Plat int8 `json:"-"`
  28. Build int `json:"-"`
  29. Condition string `json:"-"`
  30. Area string `json:"-"`
  31. Language string `json:"-"`
  32. URI string `json:"uri,omitempty"`
  33. Islogo int8 `json:"-"`
  34. Rtype int8 `json:"type"`
  35. Entrance int8 `json:"-"`
  36. IsBangumi int8 `json:"is_bangumi,omitempty"`
  37. Children []*Region `json:"children,omitempty"`
  38. Config []*Config `json:"config,omitempty"`
  39. }
  40. type Limit struct {
  41. ID int64 `json:"-"`
  42. Rid int64 `json:"-"`
  43. Build int `json:"-"`
  44. Condition string `json:"-"`
  45. }
  46. type Config struct {
  47. ID int64 `json:"-"`
  48. Rid int64 `json:"-"`
  49. ScenesID int `json:"-"`
  50. ScenesName string `json:"scenes_name,omitempty"`
  51. ScenesType string `json:"scenes_type,omitempty"`
  52. }
  53. type Show struct {
  54. Banner map[string][]*banner.Banner `json:"banner,omitempty"`
  55. Card []*Head `json:"card,omitempty"`
  56. Tag *tag.Tag `json:"tag,omitempty"`
  57. TopTag []*SimilarTag `json:"top_tag,omitempty"`
  58. NewTag *NewTag `json:"new_tag,omitempty"`
  59. Cbottom xtime.Time `json:"cbottom,omitempty"`
  60. Ctop xtime.Time `json:"ctop,omitempty"`
  61. Recommend []*ShowItem `json:"recommend,omitempty"`
  62. New []*ShowItem `json:"new"`
  63. Dynamic []*ShowItem `json:"dynamic,omitempty"`
  64. }
  65. type Head struct {
  66. CardID int `json:"card_id,omitempty"`
  67. Title string `json:"title,omitempty"`
  68. Cover string `json:"cover,omitempty"`
  69. Type string `json:"type,omitempty"`
  70. Date int64 `json:"date,omitempty"`
  71. Plat int8 `json:"-"`
  72. Build int `json:"-"`
  73. Condition string `json:"-"`
  74. URI string `json:"uri,omitempty"`
  75. Goto string `json:"goto,omitempty"`
  76. Param string `json:"param,omitempty"`
  77. Body []*ShowItem `json:"body,omitempty"`
  78. }
  79. type ShowItem struct {
  80. Title string `json:"title"`
  81. Cover string `json:"cover"`
  82. URI string `json:"uri"`
  83. NewURI string `json:"-"`
  84. Param string `json:"param"`
  85. FirstCid int64 `json:"cid,omitempty"`
  86. Goto string `json:"goto"`
  87. // up
  88. Mid int64 `json:"mid,omitempty"`
  89. Name string `json:"name,omitempty"`
  90. Face string `json:"face,omitempty"`
  91. Follower int `json:"follower,omitempty"`
  92. Attribute int `json:"attribute,omitempty"`
  93. OfficialVerify *OfficialVerify `json:"official_verify,omitempty"`
  94. // stat
  95. Play int `json:"play,omitempty"`
  96. Danmaku int `json:"danmaku,omitempty"`
  97. Reply int `json:"reply,omitempty"`
  98. Fav int `json:"favourite,omitempty"`
  99. // movie and bangumi badge
  100. Status int8 `json:"status,omitempty"`
  101. CoverMark string `json:"cover_mark,omitempty"`
  102. // ranking
  103. Pts int64 `json:"pts,omitempty"`
  104. Children []*ShowItem `json:"children,omitempty"`
  105. // av
  106. PubDate xtime.Time `json:"pubdate"`
  107. // av stat
  108. Duration int64 `json:"duration,omitempty"`
  109. // region
  110. Rid int `json:"rid,omitempty"`
  111. Rname string `json:"rname,omitempty"`
  112. Reid int `json:"reid,omitempty"`
  113. //new manager
  114. Desc string `json:"desc,omitempty"`
  115. Stime string `json:"stime,omitempty"`
  116. Etime string `json:"etime,omitempty"`
  117. Like int `json:"like,omitempty"`
  118. RedirectURL string `json:"-"`
  119. UGCPay int32 `json:"ugc_pay,omitempty"`
  120. Cooperation string `json:"cooperation,omitempty"`
  121. }
  122. type OfficialVerify struct {
  123. Type int `json:"type"`
  124. Desc string `json:"desc"`
  125. }
  126. type SimilarTag struct {
  127. TagId int `json:"tid"`
  128. TagName string `json:"tname"`
  129. Rid int `json:"rid,omitempty"`
  130. Rname string `json:"rname,omitempty"`
  131. Reid int `json:"reid,omitempty"`
  132. Rename string `json:"rename,omitempty"`
  133. }
  134. type NewTag struct {
  135. Position int `json:"pos"`
  136. Tag []*SimilarTag `json:"tag"`
  137. }
  138. func (c *Config) ConfigChange() {
  139. switch c.ScenesID {
  140. case 0:
  141. c.ScenesName = "region"
  142. c.ScenesType = "bottom"
  143. case 1:
  144. c.ScenesName = "region"
  145. c.ScenesType = "top"
  146. case 2:
  147. c.ScenesName = "rank"
  148. case 3:
  149. c.ScenesName = "search"
  150. case 4:
  151. c.ScenesName = "tag"
  152. case 5:
  153. c.ScenesName = "attention"
  154. }
  155. }
  156. // FromArc from recommend arc.
  157. func (i *ShowItem) FromArc(a *recommend.Arc) {
  158. i.fromArc(a)
  159. for _, as := range a.Others {
  160. child := &ShowItem{}
  161. child.fromArc(as)
  162. i.Children = append(i.Children, child)
  163. }
  164. }
  165. // FromArcBangumi from recommend arc bangumi.
  166. func (i *ShowItem) FromArcBangumi(a *recommend.Arc, sids map[int64]int64) {
  167. aidInt := fromAid(a.Aid)
  168. if sid, ok := sids[aidInt]; ok && sid != 0 {
  169. i.fromArcBangumi(a, sid)
  170. } else {
  171. i.fromArc(a)
  172. }
  173. for _, as := range a.Others {
  174. child := &ShowItem{}
  175. aidInt = fromAid(as.Aid)
  176. if sid, ok := sids[aidInt]; ok && sid != 0 {
  177. child.fromArcBangumi(as, sid)
  178. } else {
  179. child.fromArc(as)
  180. }
  181. i.Children = append(i.Children, child)
  182. }
  183. }
  184. // fromAid
  185. func fromAid(aidInter interface{}) (aid int64) {
  186. switch aidType := aidInter.(type) {
  187. case string:
  188. if aidtmp, err := strconv.ParseInt(aidType, 10, 64); err == nil && aidtmp != 0 {
  189. aid = aidtmp
  190. }
  191. case float64:
  192. aid = int64(aidType)
  193. }
  194. return
  195. }
  196. func (i *ShowItem) fromArc(a *recommend.Arc) {
  197. i.Title = a.Title
  198. i.Cover = a.Pic
  199. switch aid := a.Aid.(type) {
  200. case string:
  201. i.Param = aid
  202. case float64:
  203. i.Param = strconv.FormatInt(int64(aid), 10)
  204. }
  205. i.URI = model.FillURI(model.GotoAv, i.Param, nil)
  206. i.Goto = model.GotoAv
  207. v, ok := a.Views.(float64)
  208. if ok {
  209. i.Play = int(v)
  210. }
  211. i.Danmaku = a.Danmaku
  212. i.Name = a.Author
  213. i.Reply = int(a.Comments)
  214. i.Fav = int(a.Favorites)
  215. i.Pts = a.Pts
  216. }
  217. func (i *ShowItem) fromArcBangumi(a *recommend.Arc, sid int64) {
  218. i.Title = a.Title
  219. i.Cover = a.Pic
  220. i.Param = strconv.FormatInt(sid, 10)
  221. i.URI = model.FillURI(model.GotoBangumi, i.Param, nil)
  222. i.Goto = model.GotoBangumi
  223. v, ok := a.Views.(float64)
  224. if ok {
  225. i.Play = int(v)
  226. }
  227. i.Danmaku = a.Danmaku
  228. i.Name = a.Author
  229. i.Reply = int(a.Comments)
  230. i.Fav = int(a.Favorites)
  231. i.Pts = a.Pts
  232. }
  233. // FromArchivePB from archive archive.
  234. func (i *ShowItem) FromArchivePB(a *api.Arc) {
  235. i.Title = a.Title
  236. i.Cover = a.Pic
  237. i.Param = strconv.FormatInt(a.Aid, 10)
  238. i.URI = model.FillURI(model.GotoAv, i.Param, model.AvHandler(a))
  239. i.Goto = model.GotoAv
  240. i.Play = int(a.Stat.View)
  241. i.Danmaku = int(a.Stat.Danmaku)
  242. i.Name = a.Author.Name
  243. i.Face = a.Author.Face
  244. i.Reply = int(a.Stat.Reply)
  245. i.Fav = int(a.Stat.Fav)
  246. i.PubDate = a.PubDate
  247. i.Rid = int(a.TypeID)
  248. i.Rname = a.TypeName
  249. i.Duration = a.Duration
  250. i.Like = int(a.Stat.Like)
  251. if a.Access > 0 {
  252. i.Play = 0
  253. }
  254. i.UGCPay = a.Rights.UGCPay
  255. }
  256. // FromBangumi from archive archive.
  257. func (i *ShowItem) FromBangumiArchivePB(a *api.Arc, season *seasongrpc.CardInfoProto, bangumiType int) {
  258. var (
  259. _bangumiSeasonID = 1
  260. _bangumiEpisodeID = 2
  261. )
  262. if season == nil {
  263. return
  264. }
  265. i.Title = a.Title
  266. i.Cover = a.Pic
  267. i.Param = strconv.Itoa(int(season.SeasonId))
  268. switch bangumiType {
  269. case _bangumiSeasonID:
  270. i.URI = model.FillURI(model.GotoBangumi, i.Param, nil)
  271. case _bangumiEpisodeID:
  272. if season.NewEp != nil && season.NewEp.Id > 0 {
  273. epid := strconv.Itoa(int(season.NewEp.Id))
  274. i.URI = model.FillURIBangumi(model.GotoBangumi, i.Param, epid, int(season.SeasonType))
  275. } else {
  276. i.URI = model.FillURI(model.GotoBangumi, i.Param, nil)
  277. }
  278. }
  279. i.Goto = model.GotoBangumi
  280. i.Play = int(a.Stat.View)
  281. i.Danmaku = int(a.Stat.Danmaku)
  282. i.Name = a.Author.Name
  283. i.Reply = int(a.Stat.Reply)
  284. i.Fav = int(a.Stat.Fav)
  285. i.PubDate = a.PubDate
  286. i.Rid = int(a.TypeID)
  287. i.Rname = a.TypeName
  288. i.Duration = a.Duration
  289. i.Like = int(a.Stat.Like)
  290. if a.Access > 0 {
  291. i.Play = 0
  292. }
  293. }
  294. // FromArchivePBRank from archive archive.
  295. func (i *ShowItem) FromArchivePBRank(a *api.Arc, scores map[int64]int64) {
  296. i.Title = a.Title
  297. i.Cover = a.Pic
  298. i.Param = strconv.FormatInt(a.Aid, 10)
  299. i.URI = model.FillURI(model.GotoAv, i.Param, nil)
  300. i.RedirectURL = a.RedirectURL
  301. i.Goto = model.GotoAv
  302. i.Play = int(a.Stat.View)
  303. i.Danmaku = int(a.Stat.Danmaku)
  304. i.Mid = a.Author.Mid
  305. i.Name = a.Author.Name
  306. i.Face = a.Author.Face
  307. i.Reply = int(a.Stat.Reply)
  308. i.Fav = int(a.Stat.Fav)
  309. i.PubDate = a.PubDate
  310. i.Rid = int(a.TypeID)
  311. i.Rname = a.TypeName
  312. i.Duration = a.Duration
  313. i.Like = int(a.Stat.Like)
  314. i.FirstCid = a.FirstCid
  315. if score, ok := scores[a.Aid]; ok {
  316. i.Pts = score
  317. }
  318. if a.Access > 0 {
  319. i.Play = 0
  320. }
  321. if a.Rights.IsCooperation > 0 {
  322. i.Cooperation = "等联合创作"
  323. }
  324. }
  325. // FromTopic
  326. func (i *ShowItem) FromTopic(a *activity.Activity) {
  327. i.Title = a.Name
  328. i.Cover = a.H5Cover
  329. i.Goto = model.GotoWeb
  330. i.Param = a.H5URL
  331. i.URI = model.FillURI(model.GotoWeb, i.Param, nil)
  332. i.Desc = a.Desc
  333. }
  334. // FromActivity
  335. func (i *ShowItem) FromActivity(a *activity.Activity, now time.Time) {
  336. stime, err := time.ParseInLocation(_activityForm, a.Stime, time.Local)
  337. if err != nil {
  338. return
  339. }
  340. etime, err := time.ParseInLocation(_activityForm, a.Etime, time.Local)
  341. if err != nil {
  342. return
  343. }
  344. if now.After(etime) {
  345. i.Status = 1
  346. } else if now.Before(stime) {
  347. i.Status = 2
  348. }
  349. i.Title = a.Name
  350. i.Cover = a.H5Cover
  351. i.Goto = model.GotoWeb
  352. i.Param = a.H5URL
  353. i.URI = model.FillURI(model.GotoWeb, i.Param, nil)
  354. i.Desc = a.Desc
  355. i.Stime = a.Stime
  356. i.Etime = a.Etime
  357. }
  358. // FromOfficialVerify from official
  359. func (i *OfficialVerify) FromOfficialVerify(a accv1.OfficialInfo) {
  360. if a.Role == 0 {
  361. i.Type = -1
  362. } else {
  363. if a.Role <= 2 {
  364. i.Type = 0
  365. } else {
  366. i.Type = 1
  367. }
  368. i.Desc = a.Title
  369. }
  370. }
  371. func (h *Head) FillBuildURI(plat int8, build int) {
  372. switch h.Goto {
  373. case model.GotoDaily:
  374. if (plat == model.PlatIPhone && build > 6670) || (plat == model.PlatAndroid && build > 5250000) {
  375. h.URI = "bilibili://pegasus/list/daily/" + h.Param
  376. }
  377. }
  378. }