show.go 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. package show
  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/bangumi"
  8. "go-common/app/interface/main/app-show/model/banner"
  9. "go-common/app/interface/main/app-show/model/live"
  10. "go-common/app/interface/main/app-show/model/recommend"
  11. "go-common/app/service/main/archive/api"
  12. seasongrpc "go-common/app/service/openplatform/pgc-season/api/grpc/season/v1"
  13. )
  14. const (
  15. _activityForm = "2006-01-02 15:04:05"
  16. )
  17. // Show is module.
  18. type Show struct {
  19. *Head
  20. Body []*Item `json:"body"`
  21. Banner map[string][]*banner.Banner `json:"banner,omitempty"`
  22. Ext *Ext `json:"ext,omitempty"`
  23. }
  24. // Slice is for sort.
  25. type Slice []*Show
  26. func (ss Slice) Len() int { return len(ss) }
  27. func (ss Slice) Less(i, j int) bool { return ss[i].Rank > ss[j].Rank }
  28. func (ss Slice) Swap(i, j int) { ss[i], ss[j] = ss[j], ss[i] }
  29. // Head is show head.
  30. type Head struct {
  31. ID int `json:"-"`
  32. CardID int `json:"card_id,omitempty"`
  33. Plat int8 `json:"-"`
  34. Param string `json:"param"`
  35. Type string `json:"type"`
  36. Style string `json:"style"`
  37. Title string `json:"title"`
  38. Rank int `json:"-"`
  39. Build int `json:"-"`
  40. Condition string `json:"-"`
  41. Language string `json:"-"`
  42. Date int64 `json:"date,omitempty"`
  43. Cover string `json:"cover,omitempty"`
  44. URI string `json:"uri,omitempty"`
  45. Goto string `json:"goto,omitempty"`
  46. }
  47. // Item is show item, contains av, bangumi, live, banner, feed...
  48. type Item struct {
  49. Sid int `json:"-"`
  50. Title string `json:"title"`
  51. Cover string `json:"cover"`
  52. URI string `json:"uri"`
  53. NewURI string `json:"-"`
  54. Param string `json:"param"`
  55. Goto string `json:"goto"`
  56. Random int `json:"-"`
  57. // av
  58. Play int `json:"play,omitempty"`
  59. Danmaku int `json:"danmaku,omitempty"`
  60. Area string `json:"area,omitempty"`
  61. AreaID int `json:"area_id,omitempty"`
  62. Rname string `json:"rname,omitempty"`
  63. // av stat
  64. Duration int64 `json:"duration,omitempty"`
  65. // live and feed
  66. Name string `json:"name,omitempty"`
  67. Face string `json:"face,omitempty"`
  68. // only live
  69. Online int `json:"online,omitempty"`
  70. // only feed
  71. CTime int64 `json:"ctime,omitempty"`
  72. // bangumi
  73. Finish int8 `json:"finish,omitempty"`
  74. Index string `json:"index,omitempty"`
  75. TotalCount string `json:"total_count,omitempty"`
  76. MTime string `json:"mtime,omitempty"`
  77. // movie and bangumi badge
  78. Status int8 `json:"status,omitempty"`
  79. CoverMark string `json:"cover_mark,omitempty"`
  80. Fav int `json:"favourite,omitempty"`
  81. // rank
  82. Rank int `json:"-"`
  83. // cpm
  84. RequestId string `json:"request_id,omitempty"`
  85. CreativeId int `json:"creative_id,omitempty"`
  86. SrcId int `json:"src_id,omitempty"`
  87. IsAd bool `json:"is_ad"`
  88. IsAdReplace bool `json:"-"`
  89. IsAdLoc bool `json:"is_ad_loc,omitempty"`
  90. CmMark int `json:"cm_mark"`
  91. AdCb string `json:"ad_cb,omitempty"`
  92. ShowUrl string `json:"show_url,omitempty"`
  93. ClickUrl string `json:"click_url,omitempty"`
  94. ClientIp string `json:"client_ip,omitempty"`
  95. // article
  96. CateID int `json:"cate_id,omitempty"`
  97. CateName string `json:"cate_name,omitempty"`
  98. Summary string `json:"summary,omitempty"`
  99. Covers []string `json:"covers,omitempty"`
  100. Reply int `json:"reply,omitempty"`
  101. TemplateID int `json:"template_id,omitempty"`
  102. BannerURL string `json:"banner_url,omitempty"`
  103. //new manager
  104. Desc string `json:"desc,omitempty"`
  105. Stime string `json:"stime,omitempty"`
  106. Etime string `json:"etime,omitempty"`
  107. // rank
  108. Pts int64 `json:"pts,omitempty"`
  109. Children []*Item `json:"children,omitempty"`
  110. Like int `json:"like,omitempty"`
  111. // region
  112. Rid int `json:"rid,omitempty"`
  113. Reid int `json:"reid,omitempty"`
  114. }
  115. type Ext struct {
  116. LiveCnt int `json:"live_count,omitempty"`
  117. }
  118. // IsRandom check item whether or not random.
  119. func (i *Item) IsRandom() bool {
  120. return i.Random == 1
  121. }
  122. // FromArc from recommend arc.
  123. func (i *Item) FromArc(r *recommend.Arc) {
  124. i.Title = r.Title
  125. i.Cover = r.Pic
  126. i.Goto = model.GotoAv
  127. switch aid := r.Aid.(type) {
  128. case string:
  129. i.Param = aid
  130. case float64:
  131. i.Param = strconv.FormatInt(int64(aid), 10)
  132. }
  133. i.URI = model.FillURI(model.GotoAv, i.Param, nil)
  134. i.Danmaku = r.Danmaku
  135. v, ok := r.Views.(float64)
  136. if ok {
  137. i.Play = int(v)
  138. }
  139. }
  140. // FromBangumi from bangumi.
  141. func (i *Item) FromBangumi(b *bangumi.Bangumi) {
  142. i.Title = b.Title
  143. i.Cover = b.NewEp.Cover
  144. i.Goto = model.GotoBangumi
  145. i.Param = b.SeasonId
  146. i.URI = model.FillURI(model.GotoBangumiWeb, b.SeasonId, nil)
  147. i.Index = b.NewEp.Index
  148. i.TotalCount = b.TotalCount
  149. i.MTime = b.NewEp.UpTime
  150. i.Status = int8(b.SeasonStatus)
  151. // i.CoverMark = b.Badge
  152. i.Play, _ = strconv.Atoi(b.PlayCount)
  153. i.Fav, _ = strconv.Atoi(b.Favorites)
  154. if b.Finish == "1" {
  155. i.Finish = 1
  156. }
  157. }
  158. // FromLive from live.
  159. func (i *Item) FromLive(r *live.Room) {
  160. i.Title = r.Title
  161. i.Cover = r.Cover.Src
  162. i.Name = r.Owner.Name
  163. i.Face = r.Owner.Face
  164. i.Goto = model.GotoLive
  165. i.Param = strconv.FormatInt(r.ID, 10)
  166. i.URI = model.FillURI(model.GotoLive, strconv.FormatInt(r.ID, 10), nil)
  167. i.Online = r.Online
  168. i.Area = r.Area
  169. i.AreaID = r.AreaID
  170. }
  171. // FromArchivePB from archive archive.
  172. func (i *Item) FromArchivePB(a *api.Arc) {
  173. i.Title = a.Title
  174. i.Cover = a.Pic
  175. i.Goto = model.GotoAv
  176. i.Param = strconv.FormatInt(a.Aid, 10)
  177. i.URI = model.FillURI(model.GotoAv, i.Param, nil)
  178. i.Danmaku = int(a.Stat.Danmaku)
  179. i.Play = int(a.Stat.View)
  180. i.Like = int(a.Stat.Like)
  181. if a.Access > 0 {
  182. i.Play = 0
  183. }
  184. }
  185. // FromArchivePBBangumi from archive archive.
  186. func (i *Item) FromArchivePBBangumi(a *api.Arc, season *seasongrpc.CardInfoProto, bangumiType int) {
  187. var (
  188. _bangumiSeasonID = 1
  189. _bangumiEpisodeID = 2
  190. )
  191. i.Title = a.Title
  192. i.Cover = a.Pic
  193. i.Goto = model.GotoBangumi
  194. i.Param = strconv.Itoa(int(season.SeasonId))
  195. switch bangumiType {
  196. case _bangumiSeasonID:
  197. i.URI = model.FillURI(model.GotoBangumi, i.Param, nil)
  198. case _bangumiEpisodeID:
  199. if season.NewEp != nil && season.NewEp.Id > 0 {
  200. epid := strconv.Itoa(int(season.NewEp.Id))
  201. i.URI = model.FillURIBangumi(model.GotoBangumi, i.Param, epid, int(season.SeasonType))
  202. } else {
  203. i.URI = model.FillURI(model.GotoBangumi, i.Param, nil)
  204. }
  205. }
  206. i.Danmaku = int(a.Stat.Danmaku)
  207. i.Play = int(a.Stat.View)
  208. i.Like = int(a.Stat.Like)
  209. i.Fav = int(a.Stat.Fav)
  210. if a.Access > 0 {
  211. i.Play = 0
  212. }
  213. }
  214. // FromArchiveRank from archive archive.
  215. func (i *Item) FromArchiveRank(a *api.Arc, scores map[int64]int64) {
  216. i.Title = a.Title
  217. i.Cover = a.Pic
  218. i.Goto = model.GotoAv
  219. i.Param = strconv.FormatInt(a.Aid, 10)
  220. i.URI = model.FillURI(model.GotoAv, i.Param, nil)
  221. i.Danmaku = int(a.Stat.Danmaku)
  222. i.Play = int(a.Stat.View)
  223. i.Title = a.Title
  224. i.Name = a.Author.Name
  225. i.Like = int(a.Stat.Like)
  226. if score, ok := scores[a.Aid]; ok {
  227. i.Pts = score
  228. }
  229. if a.Access > 0 {
  230. i.Play = 0
  231. }
  232. }
  233. // FromActivity
  234. func (i *Item) FromActivity(a *activity.Activity, now time.Time) {
  235. stime, err := time.ParseInLocation(_activityForm, a.Stime, time.Local)
  236. if err != nil {
  237. return
  238. }
  239. etime, err := time.ParseInLocation(_activityForm, a.Etime, time.Local)
  240. if err != nil {
  241. return
  242. }
  243. if now.After(etime) {
  244. i.Status = 1
  245. } else if now.Before(stime) {
  246. i.Status = 2
  247. }
  248. i.Title = a.Name
  249. i.Cover = a.H5Cover
  250. i.Goto = model.GotoWeb
  251. i.Param = a.H5URL
  252. i.URI = model.FillURI(model.GotoWeb, i.Param, nil)
  253. i.Desc = a.Desc
  254. i.Stime = a.Stime
  255. i.Etime = a.Etime
  256. }
  257. // FromTopic
  258. func (i *Item) FromTopic(a *activity.Activity) {
  259. i.Title = a.Name
  260. i.Cover = a.H5Cover
  261. i.Goto = model.GotoWeb
  262. i.Param = a.H5URL
  263. i.URI = model.FillURI(model.GotoWeb, i.Param, nil)
  264. i.Desc = a.Desc
  265. }
  266. func (h *Head) FillBuildURI(plat int8, build int) {
  267. switch h.Goto {
  268. case model.GotoDaily:
  269. if (plat == model.PlatIPhone && build > 6670) || (plat == model.PlatAndroid && build > 5250000) {
  270. h.URI = "bilibili://pegasus/list/daily/" + h.Param
  271. }
  272. }
  273. }