feed.go 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. package feed
  2. import (
  3. "encoding/json"
  4. "strconv"
  5. clive "go-common/app/interface/main/app-card/model/card/live"
  6. "go-common/app/interface/main/app-show/model"
  7. "go-common/app/interface/main/app-show/model/card"
  8. "go-common/app/interface/main/app-show/model/dislike"
  9. "go-common/app/interface/main/app-show/model/tag"
  10. "go-common/app/service/main/archive/api"
  11. xtime "go-common/library/time"
  12. )
  13. type Item struct {
  14. Title string `json:"title,omitempty"`
  15. Subtitle string `json:"subtitle,omitempty"`
  16. Cover string `json:"cover,omitempty"`
  17. URI string `json:"uri,omitempty"`
  18. Redirect string `json:"redirect,omitempty"`
  19. RedirectURI string `json:"redirect_uri,omitempty"`
  20. Param string `json:"param,omitempty"`
  21. Goto string `json:"goto,omitempty"`
  22. ViewType string `json:"view_type,omitempty"`
  23. Kind string `json:"kind,omitempty"`
  24. Desc string `json:"desc,omitempty"`
  25. Play int `json:"play,omitempty"`
  26. Danmaku int `json:"danmaku,omitempty"`
  27. Reply int `json:"reply,omitempty"`
  28. Fav int `json:"favorite,omitempty"`
  29. Coin int `json:"coin,omitempty"`
  30. Share int `json:"share,omitempty"`
  31. Like int `json:"like,omitempty"`
  32. Count int `json:"count,omitempty"`
  33. Status int8 `json:"status,omitempty"`
  34. Type int8 `json:"type,omitempty"`
  35. Badge string `json:"badge,omitempty"`
  36. StatType int8 `json:"stat_type,omitempty"`
  37. RcmdReason *RcmdReason `json:"rcmd_reason,omitempty"`
  38. Item []*Item `json:"item,omitempty"`
  39. CornerMark int8 `json:"-"`
  40. CardStyle int8 `json:"-"`
  41. RcmdContent string `json:"-"`
  42. // sortedset index
  43. Idx int64 `json:"idx,omitempty"`
  44. // av info
  45. Cid int64 `json:"cid,omitempty"`
  46. Rid int16 `json:"tid,omitempty"`
  47. TName string `json:"tname,omitempty"`
  48. Tag *Tag `json:"tag,omitempty"`
  49. DisklikeReasons []*dislike.DisklikeReason `json:"dislike_reasons,omitempty"`
  50. PTime xtime.Time `json:"ctime,omitempty"`
  51. Autoplay int32 `json:"autoplay,omitempty"`
  52. // av stat
  53. Duration int64 `json:"duration,omitempty"`
  54. // upper
  55. Mid int64 `json:"mid,omitempty"`
  56. Name string `json:"name,omitempty"`
  57. Face string `json:"face,omitempty"`
  58. IsAtten int8 `json:"is_atten,omitempty"`
  59. Fans int64 `json:"fans,omitempty"`
  60. RecCnt int `json:"recent_count,omitempty"`
  61. Recent []*Item `json:"recent,omitempty"`
  62. Official *OfficialInfo `json:"official,omitempty"`
  63. // live
  64. Online int `json:"online,omitempty"`
  65. Area string `json:"area,omitempty"`
  66. AreaID int `json:"area_id,omitempty"`
  67. Area2 *Area2 `json:"area2,omitempty"`
  68. // bangumi
  69. Index string `json:"index,omitempty"`
  70. IndexTitle string `json:"index_title,omitempty"`
  71. CoverMark string `json:"cover_mark,omitempty"`
  72. Finish bool `json:"finish,omitempty"`
  73. LatestIndex string `json:"last_index,omitempty"`
  74. // bangumi recommend
  75. Updates int `json:"updates,omitempty"`
  76. // live or bangumi
  77. From int8 `json:"from,omitempty"`
  78. // adviertisement
  79. RequestID string `json:"request_id,omitempty"`
  80. CreativeID int64 `json:"creative_id,omitempty"`
  81. SrcID int `json:"src_id,omitempty"`
  82. IsAd bool `json:"is_ad,omitempty"`
  83. IsAdLoc bool `json:"is_ad_loc,omitempty"`
  84. AdCb string `json:"ad_cb,omitempty"`
  85. ShowURL string `json:"show_url,omitempty"`
  86. ClickURL string `json:"click_url,omitempty"`
  87. ClientIP string `json:"client_ip,omitempty"`
  88. CmMark int64 `json:"cm_mark,omitempty"`
  89. AdIndex int `json:"ad_index,omitempty"`
  90. Extra json.RawMessage `json:"extra,omitempty"`
  91. CardIndex int `json:"card_index,omitempty"`
  92. // activity
  93. STime string `json:"stime,omitempty"`
  94. ETime string `json:"etime,omitempty"`
  95. // tag
  96. Tags []*tag.Tag `json:"tags,omitempty"`
  97. // rank
  98. Cover1 string `json:"cover1,omitempty"`
  99. Cover2 string `json:"cover2,omitempty"`
  100. Cover3 string `json:"cover3,omitempty"`
  101. // banner`
  102. Hash string `json:"hash,omitempty"`
  103. // upper article
  104. Covers []string `json:"covers,omitempty"`
  105. Temple int `json:"temple,omitempty"`
  106. Category *Category `json:"category,omitempty"`
  107. BannerURL string `json:"banner_url,omitempty"`
  108. // game download
  109. GameDownloadButton *GameDownloadButton `json:"button,omitempty"`
  110. Download int `json:"download,omitempty"`
  111. BigCover string `json:"big_cover,omitempty"`
  112. // special
  113. HideBadge bool `json:"hide_badge,omitempty"`
  114. Ratio float64 `json:"ratio,omitempty"`
  115. // shopping
  116. City string `json:"city,omitempty"`
  117. PType string `json:"ptype,omitempty"`
  118. Price string `json:"price,omitempty"`
  119. // news
  120. Content string `json:"content,omitempty"`
  121. // bigdata source
  122. Source string `json:"-"`
  123. AvFeature json.RawMessage `json:"-"`
  124. // common
  125. GotoOrg string `json:"-"`
  126. FromType string `json:"from_type,omitempty"`
  127. Pos int `json:"-"`
  128. Score string `json:"score,omitempty"`
  129. }
  130. type Tag struct {
  131. TagID int64 `json:"tag_id,omitempty"`
  132. TagName string `json:"tag_name,omitempty"`
  133. IsAtten int8 `json:"is_atten,omitempty"`
  134. Count *TagCount `json:"count,omitempty"`
  135. Name string `json:"name,omitempty"`
  136. URI string `json:"uri,omitempty"`
  137. //channel
  138. ID int64 `json:"id,omitempty"`
  139. Face string `json:"face,omitempty"`
  140. Fans int64 `json:"fans,omitempty"`
  141. }
  142. type RcmdReason struct {
  143. ID int `json:"id,omitempty"`
  144. Content string `json:"content,omitempty"`
  145. BgColor string `json:"bg_color,omitempty"`
  146. IconLocation string `json:"icon_location,omitempty"`
  147. Message string `json:"message,omitempty"`
  148. }
  149. type TagCount struct {
  150. Atten int `json:"atten,omitempty"`
  151. }
  152. type Category struct {
  153. ID int64 `json:"id,omitempty"`
  154. Name string `json:"name,omitempty"`
  155. Children *Category `json:"children,omitempty"`
  156. }
  157. type GameDownloadButton struct {
  158. Name string `json:"name,omitempty"`
  159. URI string `json:"uri,omitempty"`
  160. RedirectURI string `json:"redirect_uri,omitempty"`
  161. }
  162. type Area2 struct {
  163. ID int64 `json:"id,omitempty"`
  164. Name string `json:"name,omitempty"`
  165. Children *Area2 `json:"children,omitempty"`
  166. }
  167. type OfficialInfo struct {
  168. Role int8 `json:"role,omitempty"`
  169. Title string `json:"title,omitempty"`
  170. Desc string `json:"desc,omitempty"`
  171. }
  172. func (i *Item) fillArcStat(a *api.Arc) {
  173. if a.Access == 0 {
  174. i.Play = int(a.Stat.View)
  175. }
  176. i.Danmaku = int(a.Stat.Danmaku)
  177. i.Reply = int(a.Stat.Reply)
  178. i.Fav = int(a.Stat.Fav)
  179. i.Coin = int(a.Stat.Coin)
  180. i.Share = int(a.Stat.Share)
  181. i.Like = int(a.Stat.Like)
  182. }
  183. func (i *Item) FromPlayerAv(a *api.Arc, uri string) {
  184. if i.Title == "" {
  185. i.Title = a.Title
  186. }
  187. if i.Cover == "" {
  188. i.Cover = model.CoverURLHTTPS(a.Pic)
  189. } else {
  190. i.Cover = model.CoverURLHTTPS(i.Cover)
  191. }
  192. i.Param = strconv.FormatInt(a.Aid, 10)
  193. i.Goto = model.GotoAv
  194. i.URI = uri
  195. if i.URI == "" {
  196. i.URI = model.FillURI(i.Goto, i.Param, model.AvHandler(a))
  197. }
  198. i.Rid = int16(a.TypeID)
  199. i.TName = a.TypeName
  200. // i.Desc = a.Desc
  201. i.fillArcStat(a)
  202. i.Duration = a.Duration
  203. i.Mid = a.Author.Mid
  204. i.Name = a.Author.Name
  205. i.Face = a.Author.Face
  206. i.PTime = a.PubDate
  207. i.Autoplay = a.Rights.Autoplay
  208. i.Cid = a.FirstCid
  209. // TODO
  210. // if a.Stat.Like > 0 && a.Stat.DisLike > 0 {
  211. // percent := int(a.Stat.Like / (a.Stat.Like + a.Stat.DisLike) * 100)
  212. // if percent != 0 {
  213. // i.Desc = strconv.Itoa(percent) + "%的人推荐"
  214. // }
  215. // }
  216. }
  217. func (i *Item) FromRcmdReason(c *card.PopularCard) {
  218. var content string
  219. switch c.ReasonType {
  220. case 0:
  221. content = ""
  222. case 1:
  223. content = "编辑精选"
  224. case 2:
  225. content = "热门推荐"
  226. case 3:
  227. content = c.Reason
  228. }
  229. if content != "" {
  230. i.RcmdReason = &RcmdReason{ID: 1, Content: content, BgColor: "yellow", IconLocation: "left_top"}
  231. i.RcmdContent = content
  232. }
  233. }
  234. func (i *Item) FromRank(aids []int64, score map[int64]int64, am map[int64]*api.Arc) {
  235. var _rankCount = 3
  236. if len(aids) < _rankCount {
  237. return
  238. }
  239. items := []*Item{}
  240. for _, aid := range aids {
  241. if a, ok := am[aid]; ok {
  242. it := &Item{
  243. Title: a.Title,
  244. Cover: a.Pic,
  245. Goto: model.GotoAv,
  246. Param: strconv.FormatInt(a.Aid, 10),
  247. }
  248. it.fillArcStat(a)
  249. it.Duration = a.Duration
  250. it.URI = model.FillURI(it.Goto, it.Param, model.AvHandler(a))
  251. if s, ok := score[aid]; ok {
  252. if s < 10000 {
  253. it.Score = model.Rounding(s, 0)
  254. } else if s >= 10000 && s < 100000000 {
  255. it.Score = model.Rounding(s, 10000) + "万"
  256. } else if s >= 100000000 {
  257. it.Score = model.Rounding(s, 100000000) + "亿"
  258. }
  259. }
  260. if it.Score != "" {
  261. it.Score = "综合评分:" + it.Score
  262. } else {
  263. it.Score = "综合评分:-"
  264. }
  265. items = append(items, it)
  266. if len(items) >= _rankCount {
  267. break
  268. }
  269. }
  270. }
  271. i.Title = "全站排行榜"
  272. i.Goto = model.GotoRank
  273. i.Item = items
  274. i.Param = "0"
  275. i.URI = "bilibili://rank?order_type=1&tid=0"
  276. }
  277. func (i *Item) FromHotTopic(hotTopics []*clive.TopicHot) {
  278. is := []*Item{}
  279. for _, t := range hotTopics {
  280. it := &Item{}
  281. it.Name = t.TName
  282. it.Param = strconv.Itoa(t.TID)
  283. it.Cover = t.ImageURL
  284. it.URI = model.FillURIHotTopic(it.Param, it.Name)
  285. is = append(is, it)
  286. }
  287. i.Item = is
  288. i.Title = "热门话题"
  289. i.Param = "0"
  290. i.Goto = model.GotoHotTopic
  291. i.URI = "activity://following/hot_topic_list"
  292. i.Desc = "更多热门话题"
  293. }