single.go 53 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777
  1. package card
  2. import (
  3. "fmt"
  4. "strconv"
  5. "go-common/app/interface/main/app-card/model"
  6. "go-common/app/interface/main/app-card/model/bplus"
  7. "go-common/app/interface/main/app-card/model/card/ai"
  8. "go-common/app/interface/main/app-card/model/card/audio"
  9. "go-common/app/interface/main/app-card/model/card/bangumi"
  10. "go-common/app/interface/main/app-card/model/card/banner"
  11. "go-common/app/interface/main/app-card/model/card/cm"
  12. "go-common/app/interface/main/app-card/model/card/live"
  13. "go-common/app/interface/main/app-card/model/card/operate"
  14. "go-common/app/interface/main/app-card/model/card/show"
  15. tag "go-common/app/interface/main/tag/model"
  16. article "go-common/app/interface/openplatform/article/model"
  17. account "go-common/app/service/main/account/model"
  18. "go-common/app/service/main/archive/api"
  19. "go-common/app/service/main/archive/model/archive"
  20. relation "go-common/app/service/main/relation/model"
  21. episodegrpc "go-common/app/service/openplatform/pgc-season/api/grpc/episode/v1"
  22. season "go-common/app/service/openplatform/pgc-season/api/grpc/season/v1"
  23. "go-common/library/log"
  24. )
  25. func singleHandle(cardGoto model.CardGt, cardType model.CardType, rcmd *ai.Item, tagm map[int64]*tag.Tag, isAttenm map[int64]int8, statm map[int64]*relation.Stat, cardm map[int64]*account.Card) (hander Handler) {
  26. base := &Base{CardType: cardType, CardGoto: cardGoto, Rcmd: rcmd, Tagm: tagm, IsAttenm: isAttenm, Statm: statm, Cardm: cardm, Columnm: model.ColumnSvrSingle}
  27. switch cardType {
  28. case model.LargeCoverV1:
  29. hander = &LargeCoverV1{Base: base}
  30. case model.OnePicV1:
  31. hander = &OnePicV1{Base: base}
  32. case model.ThreePicV1:
  33. hander = &ThreePicV1{Base: base}
  34. case model.SmallCoverV5:
  35. hander = &SmallCoverV5{Base: base}
  36. case model.OptionsV1:
  37. hander = &Option{Base: base}
  38. case model.Select:
  39. hander = &Select{Base: base}
  40. default:
  41. switch cardGoto {
  42. case model.CardGotoAv, model.CardGotoBangumi, model.CardGotoLive, model.CardGotoPlayer, model.CardGotoPlayerLive, model.CardGotoChannelRcmd, model.CardGotoUpRcmdAv, model.CardGotoPGC:
  43. base.CardType = model.LargeCoverV1
  44. hander = &LargeCoverV1{Base: base}
  45. case model.CardGotoAudio, model.CardGotoBangumiRcmd, model.CardGotoGameDownloadS, model.CardGotoShoppingS, model.CardGotoSpecialS, model.CardGotoMoe:
  46. base.CardType = model.SmallCoverV1
  47. hander = &SmallCoverV1{Base: base}
  48. case model.CardGotoSpecial:
  49. base.CardType = model.MiddleCoverV1
  50. hander = &MiddleCover{Base: base}
  51. case model.CardGotoConverge, model.CardGotoRank:
  52. base.CardType = model.ThreeItemV1
  53. hander = &ThreeItemV1{Base: base}
  54. case model.CardGotoSubscribe, model.CardGotoSearchSubscribe:
  55. base.CardType = model.ThreeItemHV1
  56. hander = &ThreeItemH{Base: base}
  57. case model.CardGotoArticleS:
  58. base.CardType = model.ThreeItemHV3
  59. hander = &ThreeItemHV3{Base: base}
  60. case model.CardGotoLiveUpRcmd:
  61. base.CardType = model.TwoItemV1
  62. hander = &TwoItemV1{Base: base}
  63. case model.CardGotoLogin:
  64. base.CardType = model.CoverOnlyV1
  65. hander = &CoverOnly{Base: base}
  66. case model.CardGotoBanner:
  67. base.CardType = model.BannerV1
  68. hander = &Banner{Base: base}
  69. case model.CardGotoAdAv:
  70. base.CardType = model.CmV1
  71. hander = &LargeCoverV1{Base: base}
  72. case model.CardGotoAdWebS, model.CardGotoAdWeb:
  73. base.CardType = model.CmV1
  74. hander = &SmallCoverV1{Base: base}
  75. case model.CardGotoHotTopic:
  76. base.CardType = model.HotTopic
  77. hander = &HotTopic{Base: base}
  78. case model.CardGotoTopstick:
  79. base.CardType = model.TopStick
  80. hander = &Topstick{Base: base}
  81. case model.CardGotoChannelSquare:
  82. base.CardType = model.ChannelSquare
  83. hander = &ChannelSquare{Base: base}
  84. case model.CardGotoPgcsRcmd:
  85. base.CardType = model.ThreeItemHV4
  86. hander = &ThreeItemHV4{Base: base}
  87. case model.CardGotoUpRcmdS:
  88. base.CardType = model.UpRcmdCover
  89. hander = &UpRcmdCover{Base: base}
  90. case model.CardGotoSearchUpper:
  91. base.CardType = model.ThreeItemAll
  92. hander = &ThreeItemAll{Base: base}
  93. case model.CardGotoUpRcmdNew:
  94. base.CardType = model.TwoItemHV1
  95. hander = &TwoItemHV1{Base: base}
  96. case model.CardGotoUpRcmdNewV2:
  97. base.CardType = model.ThreeItemAllV2
  98. hander = &ThreeItemAllV2{Base: base}
  99. case model.CardGotoDynamicHot:
  100. base.CardType = model.ThreeItemHV5
  101. hander = &DynamicHot{Base: base}
  102. case model.CardGotoEventTopic:
  103. base.CardType = model.MiddleCoverV3
  104. hander = &MiddleCoverV3{Base: base}
  105. }
  106. }
  107. return
  108. }
  109. type LargeCoverV1 struct {
  110. *Base
  111. Avatar *Avatar `json:"avatar,omitempty"`
  112. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  113. CoverLeftText2 string `json:"cover_left_text_2,omitempty"`
  114. CoverLeftText3 string `json:"cover_left_text_3,omitempty"`
  115. CoverBadge string `json:"cover_badge,omitempty"`
  116. TopRcmdReason string `json:"top_rcmd_reason,omitempty"`
  117. BottomRcmdReason string `json:"bottom_rcmd_reason,omitempty"`
  118. Desc string `json:"desc,omitempty"`
  119. OfficialIcon model.Icon `json:"official_icon,omitempty"`
  120. CanPlay int32 `json:"can_play,omitempty"`
  121. CoverBadgeColor model.CoverColor `json:"cover_badge_color,omitempty"`
  122. TopRcmdReasonStyle *ReasonStyle `json:"top_rcmd_reason_style,omitempty"`
  123. BottomRcmdReasonStyle *ReasonStyle `json:"bottom_rcmd_reason_style,omitempty"`
  124. CoverBadge2 string `json:"cover_badge_2,omitempty"`
  125. }
  126. func (c *LargeCoverV1) From(main interface{}, op *operate.Card) {
  127. if op == nil {
  128. return
  129. }
  130. var (
  131. button interface{}
  132. avatar *AvatarStatus
  133. upID int64
  134. )
  135. switch main.(type) {
  136. case map[int64]*archive.ArchiveWithPlayer:
  137. am := main.(map[int64]*archive.ArchiveWithPlayer)
  138. a, ok := am[op.ID]
  139. if !ok || !model.AvIsNormal(a) {
  140. return
  141. }
  142. c.Base.from(op.Param, a.Pic, a.Title, model.GotoAv, op.URI, model.AvPlayHandler(a.Archive3, a.PlayerInfo, op.TrackID))
  143. c.CoverLeftText1 = model.DurationString(a.Duration)
  144. c.CoverLeftText2 = model.ArchiveViewString(a.Stat.View)
  145. c.CoverLeftText3 = model.DanmakuString(a.Stat.Danmaku)
  146. if op.SwitchLike == model.SwitchFeedIndexLike {
  147. c.CoverLeftText2 = model.LikeString(a.Stat.Like)
  148. c.CoverLeftText3 = model.ArchiveViewString(a.Stat.View)
  149. }
  150. switch op.CardGoto {
  151. case model.CardGotoAv, model.CardGotoUpRcmdAv, model.CardGotoPlayer:
  152. var (
  153. authorface = a.Author.Face
  154. authorname = a.Author.Name
  155. )
  156. if a.Author.Name != "" {
  157. if op.Switch != model.SwitchCooperationHide {
  158. authorname = unionAuthor(a)
  159. }
  160. }
  161. if (authorface == "" || authorname == "") && c.Cardm != nil {
  162. if au, ok := c.Cardm[a.Author.Mid]; ok {
  163. authorface = au.Face
  164. authorname = au.Name
  165. }
  166. }
  167. avatar = &AvatarStatus{Cover: authorface, Goto: model.GotoMid, Param: strconv.FormatInt(a.Author.Mid, 10), Type: model.AvatarRound}
  168. if c.Rcmd != nil && c.Rcmd.RcmdReason != nil && c.Rcmd.RcmdReason.Style == 3 && c.IsAttenm[a.Author.Mid] == 1 {
  169. c.Desc = authorname
  170. } else {
  171. c.Desc = authorname + " · " + model.PubDataString(a.PubDate.Time())
  172. }
  173. if op.CardGoto == model.CardGotoUpRcmdAv {
  174. button = &ButtonStatus{Goto: model.GotoMid, Param: strconv.FormatInt(a.Author.Mid, 10), IsAtten: c.IsAttenm[a.Author.Mid]}
  175. } else {
  176. if t, ok := c.Tagm[op.Tid]; ok {
  177. button = t
  178. } else {
  179. button = &ButtonStatus{Text: a.TypeName}
  180. }
  181. }
  182. c.Base.PlayerArgs = playerArgsFrom(a.Archive3)
  183. if op.CardGoto == model.CardGotoPlayer && c.Base.PlayerArgs == nil {
  184. log.Warn("player card aid(%d) can't auto player", a.Aid)
  185. return
  186. }
  187. c.Args.fromArchive(a.Archive3, c.Tagm[op.Tid])
  188. upID = a.Author.Mid
  189. case model.CardGotoChannelRcmd:
  190. t, ok := c.Tagm[op.Tid]
  191. if !ok {
  192. return
  193. }
  194. avatar = &AvatarStatus{Cover: t.Cover, Goto: model.GotoTag, Param: strconv.FormatInt(t.ID, 10), Type: model.AvatarSquare}
  195. c.Desc = model.SubscribeString(int32(t.Count.Atten))
  196. button = &ButtonStatus{Goto: model.GotoTag, Param: strconv.FormatInt(t.ID, 10), IsAtten: t.IsAtten}
  197. c.Base.PlayerArgs = playerArgsFrom(a.Archive3)
  198. c.Args.fromArchive(a.Archive3, c.Tagm[op.Tid])
  199. case model.CardGotoAdAv:
  200. c.AdInfo = c.Rcmd.Ad
  201. avatar = &AvatarStatus{Cover: a.Author.Face, Goto: model.GotoMid, Param: strconv.FormatInt(a.Author.Mid, 10), Type: model.AvatarRound}
  202. c.Desc = a.Author.Name + " · " + model.PubDataString(a.PubDate.Time())
  203. button = c.Tagm[op.Tid]
  204. c.Args.fromArchive(a.Archive3, c.Tagm[op.Tid])
  205. upID = a.Author.Mid
  206. default:
  207. log.Warn("LargeCoverV1 From: unexpected card_goto %s", op.CardGoto)
  208. return
  209. }
  210. c.CanPlay = a.Rights.Autoplay
  211. if a.Rights.UGCPay == 1 && op.ShowUGCPay {
  212. c.CoverBadge2 = "付费"
  213. }
  214. case map[int64]*bangumi.Season:
  215. sm := main.(map[int64]*bangumi.Season)
  216. s, ok := sm[op.ID]
  217. if !ok {
  218. return
  219. }
  220. c.Base.from(s.EpisodeID, s.Cover, s.Title, model.GotoBangumi, s.EpisodeID, nil)
  221. c.CoverLeftText2 = model.ArchiveViewString(s.PlayCount)
  222. c.CoverLeftText3 = model.BangumiFavString(s.Favorites)
  223. avatar = &AvatarStatus{Cover: s.SeasonCover, Type: model.AvatarSquare}
  224. c.CoverBadge = s.TypeBadge
  225. c.Desc = s.UpdateDesc
  226. case map[int32]*season.CardInfoProto:
  227. sm := main.(map[int32]*season.CardInfoProto)
  228. s, ok := sm[int32(op.ID)]
  229. if !ok {
  230. return
  231. }
  232. c.Base.from(op.Param, s.Cover, s.Title, model.GotoPGC, op.URI, nil)
  233. if s.Stat != nil {
  234. c.CoverLeftText2 = model.ArchiveViewString(int32(s.Stat.View))
  235. c.CoverLeftText3 = model.BangumiFavString(int32(s.Stat.Follow))
  236. }
  237. avatar = &AvatarStatus{Cover: s.Cover, Type: model.AvatarSquare}
  238. c.CoverBadge = s.SeasonTypeName
  239. if s.NewEp != nil {
  240. c.Desc = s.NewEp.IndexShow
  241. }
  242. case map[int32]*episodegrpc.EpisodeCardsProto:
  243. sm := main.(map[int32]*episodegrpc.EpisodeCardsProto)
  244. s, ok := sm[int32(op.ID)]
  245. if !ok {
  246. return
  247. }
  248. title := s.Season.Title + ":" + s.ShowTitle
  249. c.Base.from(op.Param, s.Cover, title, model.GotoBangumi, op.URI, nil)
  250. c.Goto = model.GotoPGC
  251. if s.Season.Stat != nil {
  252. c.CoverLeftText2 = model.ArchiveViewString(int32(s.Season.Stat.View))
  253. c.CoverLeftText3 = model.BangumiFavString(int32(s.Season.Stat.Follow))
  254. }
  255. avatar = &AvatarStatus{Cover: s.Season.Cover, Type: model.AvatarSquare}
  256. c.CoverBadge = s.Season.SeasonTypeName
  257. if s.Season != nil {
  258. c.Desc = s.Season.NewEpShow
  259. }
  260. case map[int64]*live.Room:
  261. rm := main.(map[int64]*live.Room)
  262. r, ok := rm[op.ID]
  263. if !ok || r.LiveStatus != 1 {
  264. return
  265. }
  266. c.Base.from(strconv.FormatInt(op.ID, 10), r.Cover, r.Uname, model.GotoLive, strconv.FormatInt(r.RoomID, 10), model.LiveRoomHandler(r))
  267. c.CoverLeftText2 = model.LiveOnlineString(r.Online)
  268. avatar = &AvatarStatus{Cover: r.Cover, Goto: model.GotoMid, Param: strconv.FormatInt(r.UID, 10), Type: model.AvatarRound}
  269. c.CoverBadge = "直播"
  270. c.Desc = r.Title
  271. c.Base.PlayerArgs = playerArgsFrom(r)
  272. c.Args.fromLiveRoom(r)
  273. upID = r.UID
  274. button = r
  275. c.CanPlay = 1
  276. // SmallCoverV1
  277. case map[int64]*show.Shopping:
  278. const _buttonText = "进入"
  279. sm := main.(map[int64]*show.Shopping)
  280. s, ok := sm[op.ID]
  281. if !ok {
  282. return
  283. }
  284. c.Base.from(strconv.FormatInt(op.ID, 10), model.ShoppingCover(s.PerformanceImageP), s.Name, model.GotoWeb, s.URL, nil)
  285. if s.Type == 1 {
  286. c.CoverLeftText2 = s.Want
  287. c.CoverLeftText3 = s.CityName
  288. c.Desc = s.STime + " - " + s.ETime
  289. } else if s.Type == 2 {
  290. c.CoverLeftText2 = s.Want
  291. c.CoverLeftText3 = s.Subname
  292. c.Desc = s.Pricelt
  293. }
  294. button = &ButtonStatus{Text: _buttonText, Goto: model.GotoWeb, Param: s.URL, Type: model.ButtonTheme, Event: model.EventButtonClick}
  295. c.Args.fromShopping(s)
  296. c.CoverBadgeColor = model.PurpleCoverBadge
  297. case nil:
  298. c.Base.from(op.Param, op.Coverm[model.ColumnSvrDouble], op.Title, op.Goto, op.URI, nil)
  299. switch op.CardGoto {
  300. case model.CardGotoDownload:
  301. const _buttonText = "进入"
  302. c.Desc = op.Desc
  303. c.CoverLeftText2 = model.DownloadString(op.Download)
  304. if (op.Plat == model.PlatIPhone && op.Build > 8220) || (op.Plat == model.PlatAndroid && op.Build > 5335001) {
  305. button = &ButtonStatus{Text: _buttonText, Goto: op.Goto, Param: op.URI, Type: model.ButtonTheme, Event: model.EventGameClick}
  306. } else {
  307. button = &ButtonStatus{Text: _buttonText, Goto: op.Goto, Param: op.URI, Type: model.ButtonTheme, Event: model.EventButtonClick}
  308. }
  309. c.CoverBadgeColor = model.PurpleCoverBadge
  310. case model.CardGotoSpecial:
  311. c.Desc = op.Desc
  312. c.CoverBadge = op.Badge
  313. c.CoverBadgeColor = model.PurpleCoverBadge
  314. default:
  315. log.Warn("LargeCoverV1 From: unexpected card_goto %s", op.CardGoto)
  316. return
  317. }
  318. default:
  319. log.Warn("LargeCoverV1 From: unexpected type %T", main)
  320. return
  321. }
  322. if c.Rcmd != nil {
  323. c.TopRcmdReason, c.BottomRcmdReason = TopBottomRcmdReason(c.Rcmd.RcmdReason, c.IsAttenm[upID], c.Cardm)
  324. c.TopRcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.TopRcmdReason, c.Base.Goto)
  325. c.BottomRcmdReasonStyle = bottomReasonStyleFrom(c.Rcmd, c.BottomRcmdReason, c.Base.Goto)
  326. }
  327. c.OfficialIcon = model.OfficialIcon(c.Cardm[upID])
  328. c.Avatar = avatarFrom(avatar)
  329. if c.Rcmd == nil || !c.Rcmd.HideButton {
  330. c.DescButton = buttonFrom(button, op.Plat)
  331. }
  332. c.Right = true
  333. }
  334. func (c *LargeCoverV1) Get() *Base {
  335. return c.Base
  336. }
  337. type SmallCoverV1 struct {
  338. *Base
  339. CoverBadge string `json:"cover_badge,omitempty"`
  340. Desc1 string `json:"desc_1,omitempty"`
  341. Desc2 string `json:"desc_2,omitempty"`
  342. Desc3 string `json:"desc_3,omitempty"`
  343. TitleRightText string `json:"title_right_text,omitempty"`
  344. TitleRightPic model.Icon `json:"title_right_pic,omitempty"`
  345. }
  346. func (c *SmallCoverV1) From(main interface{}, op *operate.Card) {
  347. if op == nil {
  348. return
  349. }
  350. var button interface{}
  351. switch main.(type) {
  352. case map[int64]*audio.Audio:
  353. var firstSong string
  354. am := main.(map[int64]*audio.Audio)
  355. a, ok := am[op.ID]
  356. if !ok {
  357. return
  358. }
  359. if len(a.Songs) != 0 {
  360. firstSong = a.Songs[0].Title
  361. }
  362. c.Base.from(op.Param, a.CoverURL, a.Title, model.GotoAudio, op.URI, nil)
  363. c.Desc1, c.Desc2 = model.AudioDescString(firstSong, a.RecordNum)
  364. c.Desc3 = model.AudioPlayString(a.PlayNum) + " " + model.AudioFavString(a.FavoriteNum)
  365. c.Args.fromAudio(a)
  366. button = a.Ctgs
  367. case *bangumi.Update:
  368. const (
  369. _title = "你的追番更新啦"
  370. _updates = 99
  371. )
  372. u := main.(*bangumi.Update)
  373. if u == nil || u.Updates == 0 {
  374. return
  375. }
  376. c.Base.from("", u.SquareCover, _title, "", "", nil)
  377. updates := u.Updates
  378. if updates > _updates {
  379. updates = _updates
  380. c.TitleRightPic = model.IconBomb
  381. } else {
  382. c.TitleRightPic = model.IconTV
  383. }
  384. c.Desc1 = u.Title
  385. c.TitleRightText = strconv.Itoa(updates)
  386. case map[int64]*show.Shopping:
  387. const _buttonText = "进入"
  388. sm := main.(map[int64]*show.Shopping)
  389. s, ok := sm[op.ID]
  390. if !ok {
  391. return
  392. }
  393. c.Base.from(strconv.FormatInt(op.ID, 10), model.ShoppingCover(s.PerformanceImageP), s.Name, model.GotoWeb, s.URL, nil)
  394. if s.Type == 1 {
  395. c.Desc1 = s.STime + " - " + s.ETime
  396. c.Desc2 = s.CityName
  397. c.Desc3 = "¥" + s.Pricelt
  398. } else if s.Type == 2 {
  399. c.Desc1 = s.Subname
  400. c.Desc2 = s.Want
  401. c.Desc3 = s.Pricelt
  402. }
  403. button = &ButtonStatus{Text: _buttonText, Goto: model.GotoWeb, Param: s.URL, Type: model.ButtonTheme, Event: model.EventButtonClick}
  404. c.Args.fromShopping(s)
  405. case *cm.AdInfo:
  406. ad := main.(*cm.AdInfo)
  407. c.AdInfo = ad
  408. case *bangumi.Moe:
  409. m := main.(*bangumi.Moe)
  410. if m == nil {
  411. return
  412. }
  413. c.Base.from(strconv.FormatInt(m.ID, 10), m.Square, m.Title, model.GotoWeb, m.Link, nil)
  414. c.Desc1 = m.Desc
  415. c.CoverBadge = m.Badge
  416. case nil:
  417. c.Base.from(op.Param, op.Coverm[c.Columnm], op.Title, op.Goto, op.URI, nil)
  418. switch op.CardGoto {
  419. case model.CardGotoDownload:
  420. const _buttonText = "进入"
  421. c.Desc1 = op.Desc
  422. c.Desc2 = model.DownloadString(op.Download)
  423. if (op.Plat == model.PlatIPhone && op.Build > 8220) || (op.Plat == model.PlatAndroid && op.Build > 5335001) {
  424. button = &ButtonStatus{Text: _buttonText, Goto: op.Goto, Param: op.URI, Type: model.ButtonTheme, Event: model.EventGameClick}
  425. } else {
  426. button = &ButtonStatus{Text: _buttonText, Goto: op.Goto, Param: op.URI, Type: model.ButtonTheme, Event: model.EventButtonClick}
  427. }
  428. case model.CardGotoSpecial:
  429. c.Desc1 = op.Desc
  430. c.CoverBadge = op.Badge
  431. default:
  432. log.Warn("SmallCoverV1 From: unexpected card_goto %s", op.CardGoto)
  433. return
  434. }
  435. default:
  436. log.Warn("SmallCoverV1 From: unexpected type %T", main)
  437. return
  438. }
  439. c.DescButton = buttonFrom(button, op.Plat)
  440. c.Right = true
  441. }
  442. func (c *SmallCoverV1) Get() *Base {
  443. return c.Base
  444. }
  445. type MiddleCover struct {
  446. *Base
  447. Ratio int `json:"ratio,omitempty"`
  448. Badge string `json:"badge,omitempty"`
  449. Desc string `json:"desc,omitempty"`
  450. }
  451. func (c *MiddleCover) From(main interface{}, op *operate.Card) {
  452. switch main.(type) {
  453. case *cm.AdInfo:
  454. ad := main.(*cm.AdInfo)
  455. c.AdInfo = ad
  456. case nil:
  457. if op == nil {
  458. return
  459. }
  460. c.Base.from(op.Param, op.Coverm[c.Columnm], op.Title, op.Goto, op.URI, nil)
  461. switch op.CardGoto {
  462. case model.CardGotoSpecial:
  463. c.Desc = op.Desc
  464. c.Badge = op.Badge
  465. c.Ratio = op.Ratio
  466. default:
  467. log.Warn("MiddleCover From: unexpected card_goto %s", op.CardGoto)
  468. return
  469. }
  470. default:
  471. log.Warn("MiddleCover From: unexpected type %T", main)
  472. return
  473. }
  474. c.Right = true
  475. }
  476. func (c *MiddleCover) Get() *Base {
  477. return c.Base
  478. }
  479. type Topstick struct {
  480. *Base
  481. Desc string `json:"desc,omitempty"`
  482. }
  483. func (c *Topstick) From(main interface{}, op *operate.Card) {
  484. switch main.(type) {
  485. case nil:
  486. if op == nil {
  487. return
  488. }
  489. c.Base.from(op.Param, op.Coverm[c.Columnm], op.Title, op.Goto, op.URI, nil)
  490. switch op.CardGoto {
  491. case model.CardGotoTopstick:
  492. c.Desc = op.Desc
  493. default:
  494. return
  495. }
  496. }
  497. c.Right = true
  498. }
  499. func (c *Topstick) Get() *Base {
  500. return c.Base
  501. }
  502. type ThreeItemV1 struct {
  503. *Base
  504. TitleIcon model.Icon `json:"title_icon,omitempty"`
  505. BannerCover string `json:"banner_cover,omitempty"`
  506. BannerURI string `json:"banner_uri,omitempty"`
  507. MoreURI string `json:"more_uri,omitempty"`
  508. MoreText string `json:"more_text,omitempty"`
  509. Items []*ThreeItemV1Item `json:"items,omitempty"`
  510. }
  511. type ThreeItemV1Item struct {
  512. Base
  513. CoverLeftText string `json:"cover_left_text,omitempty"`
  514. CoverLeftIcon model.Icon `json:"cover_left_icon,omitempty"`
  515. Desc1 string `json:"desc_1,omitempty"`
  516. Desc2 string `json:"desc_2,omitempty"`
  517. Badge string `json:"badge,omitempty"`
  518. }
  519. func (c *ThreeItemV1) From(main interface{}, op *operate.Card) {
  520. switch main.(type) {
  521. case map[model.Gt]interface{}:
  522. intfcm := main.(map[model.Gt]interface{})
  523. if op == nil {
  524. return
  525. }
  526. switch op.CardGoto {
  527. case model.CardGotoRank:
  528. const (
  529. _title = "全站排行榜"
  530. _limit = 3
  531. )
  532. c.Base.from("0", "", _title, "", "", nil)
  533. // c.TitleIcon = model.IconRank
  534. c.MoreURI = model.FillURI(op.Goto, op.URI, nil)
  535. c.MoreText = "查看更多"
  536. c.Items = make([]*ThreeItemV1Item, 0, _limit)
  537. for _, v := range op.Items {
  538. if v == nil {
  539. continue
  540. }
  541. intfc, ok := intfcm[v.Goto]
  542. if !ok {
  543. continue
  544. }
  545. am := intfc.(map[int64]*archive.ArchiveWithPlayer)
  546. a, ok := am[v.ID]
  547. if !ok || !model.AvIsNormal(a) {
  548. continue
  549. }
  550. item := &ThreeItemV1Item{
  551. CoverLeftText: model.DurationString(a.Duration),
  552. Desc1: model.ScoreString(v.Score),
  553. }
  554. item.Base.from(v.Param, a.Pic, a.Title, model.GotoAv, v.URI, model.AvPlayHandler(a.Archive3, a.PlayerInfo, op.TrackID))
  555. item.Args.fromArchive(a.Archive3, nil)
  556. c.Items = append(c.Items, item)
  557. if len(c.Items) == _limit {
  558. break
  559. }
  560. }
  561. if len(c.Items) < _limit {
  562. return
  563. }
  564. c.Items[0].CoverLeftIcon = model.IconGoldMedal
  565. c.Items[1].CoverLeftIcon = model.IconSilverMedal
  566. c.Items[2].CoverLeftIcon = model.IconBronzeMedal
  567. case model.CardGotoConverge:
  568. limit := 3
  569. if op.Coverm[c.Columnm] != "" {
  570. limit = 2
  571. }
  572. c.Base.from(op.Param, op.Coverm[c.Columnm], op.Title, op.Goto, op.URI, nil)
  573. c.MoreURI = model.FillURI(model.GotoConverge, op.Param, nil)
  574. c.MoreText = "查看更多"
  575. c.Items = make([]*ThreeItemV1Item, 0, len(op.Items))
  576. for _, v := range op.Items {
  577. if v == nil {
  578. continue
  579. }
  580. intfc, ok := intfcm[v.Goto]
  581. if !ok {
  582. continue
  583. }
  584. var item *ThreeItemV1Item
  585. switch intfc.(type) {
  586. case map[int64]*archive.ArchiveWithPlayer:
  587. am := intfc.(map[int64]*archive.ArchiveWithPlayer)
  588. a, ok := am[v.ID]
  589. if !ok || !model.AvIsNormal(a) {
  590. continue
  591. }
  592. item = &ThreeItemV1Item{
  593. CoverLeftText: model.DurationString(a.Duration),
  594. Desc1: model.ArchiveViewString(a.Stat.View),
  595. Desc2: model.DanmakuString(a.Stat.Danmaku),
  596. }
  597. if op.SwitchLike == model.SwitchFeedIndexLike {
  598. item.Desc1 = model.LikeString(a.Stat.Like)
  599. item.Desc2 = model.ArchiveViewString(a.Stat.View)
  600. }
  601. item.Base.from(v.Param, a.Pic, a.Title, model.GotoAv, v.URI, model.AvPlayHandler(a.Archive3, a.PlayerInfo, op.TrackID))
  602. item.Args.fromArchive(a.Archive3, nil)
  603. case map[int64]*live.Room:
  604. rm := intfc.(map[int64]*live.Room)
  605. r, ok := rm[v.ID]
  606. if !ok || r.LiveStatus != 1 {
  607. continue
  608. }
  609. item = &ThreeItemV1Item{
  610. Desc1: model.LiveOnlineString(r.Online),
  611. Badge: "直播",
  612. }
  613. item.Base.from(v.Param, r.Cover, r.Title, model.GotoLive, v.URI, model.LiveRoomHandler(r))
  614. item.Args.fromLiveRoom(r)
  615. case map[int64]*article.Meta:
  616. mm := intfc.(map[int64]*article.Meta)
  617. m, ok := mm[v.ID]
  618. if !ok {
  619. continue
  620. }
  621. if len(m.ImageURLs) == 0 {
  622. continue
  623. }
  624. item = &ThreeItemV1Item{
  625. Badge: "文章",
  626. }
  627. item.Base.from(v.Param, m.ImageURLs[0], m.Title, model.GotoArticle, v.URI, nil)
  628. if m.Stats != nil {
  629. item.Desc1 = model.ArticleViewString(m.Stats.View)
  630. item.Desc2 = model.ArticleReplyString(m.Stats.Reply)
  631. }
  632. item.Args.fromArticle(m)
  633. default:
  634. log.Warn("ThreeItemV1 From: unexpected type %T", intfc)
  635. continue
  636. }
  637. c.Items = append(c.Items, item)
  638. if len(c.Items) == limit {
  639. break
  640. }
  641. }
  642. if len(c.Items) < limit {
  643. return
  644. }
  645. default:
  646. log.Warn("ThreeItemV1 From: unexpected card_goto %s", op.CardGoto)
  647. return
  648. }
  649. default:
  650. log.Warn("ThreeItemV1 From: unexpected type %T", main)
  651. return
  652. }
  653. c.Right = true
  654. }
  655. func (c *ThreeItemV1) Get() *Base {
  656. return c.Base
  657. }
  658. type ThreeItemH struct {
  659. *Base
  660. Items []*ThreeItemHItem `json:"items,omitempty"`
  661. }
  662. type ThreeItemHItem struct {
  663. Base
  664. CoverType model.Type `json:"cover_type,omitempty"`
  665. Desc string `json:"desc,omitempty"`
  666. OfficialIcon model.Icon `json:"official_icon,omitempty"`
  667. }
  668. func (c *ThreeItemH) From(main interface{}, op *operate.Card) {
  669. switch main.(type) {
  670. case nil:
  671. if op == nil {
  672. return
  673. }
  674. switch op.CardGoto {
  675. case model.CardGotoSubscribe, model.CardGotoSearchSubscribe:
  676. const _limit = 3
  677. c.Base.from(op.Param, "", op.Title, "", "", nil)
  678. c.Items = make([]*ThreeItemHItem, 0, _limit)
  679. for _, v := range op.Items {
  680. if v == nil {
  681. continue
  682. }
  683. var (
  684. item *ThreeItemHItem
  685. button interface{}
  686. )
  687. switch v.Goto {
  688. case model.GotoTag:
  689. t, ok := c.Tagm[v.ID]
  690. if !ok || t.IsAtten == 1 {
  691. continue
  692. }
  693. item = &ThreeItemHItem{
  694. CoverType: model.AvatarSquare,
  695. Desc: model.SubscribeString(int32(t.Count.Atten)),
  696. }
  697. item.Base.from(v.Param, t.Cover, t.Name, v.Goto, v.URI, nil)
  698. button = &ButtonStatus{Goto: model.GotoTag, Param: strconv.FormatInt(t.ID, 10)}
  699. case model.GotoMid:
  700. cd, ok := c.Cardm[v.ID]
  701. if !ok || c.IsAttenm[v.ID] == 1 {
  702. continue
  703. }
  704. item = &ThreeItemHItem{
  705. CoverType: model.AvatarRound,
  706. }
  707. item.Base.from(v.Param, cd.Face, cd.Name, v.Goto, v.URI, nil)
  708. button = &ButtonStatus{Goto: model.GotoMid, Param: strconv.FormatInt(cd.Mid, 10)}
  709. if v.Desc != "" {
  710. item.Desc = v.Desc
  711. } else if stat, ok := c.Statm[cd.Mid]; ok {
  712. item.Desc = model.FanString(int32(stat.Follower))
  713. }
  714. item.OfficialIcon = model.OfficialIcon(cd)
  715. default:
  716. log.Warn("ThreeItemH From: unexpected type %T", v.Goto)
  717. continue
  718. }
  719. item.DescButton = buttonFrom(button, op.Plat)
  720. c.Items = append(c.Items, item)
  721. if len(c.Items) == _limit {
  722. break
  723. }
  724. }
  725. if len(c.Items) < _limit {
  726. return
  727. }
  728. default:
  729. log.Warn("ThreeItemH From: unexpected card_goto %s", op.CardGoto)
  730. return
  731. }
  732. default:
  733. log.Warn("ThreeItemH From: unexpected type %T", main)
  734. return
  735. }
  736. c.Right = true
  737. }
  738. func (c *ThreeItemH) Get() *Base {
  739. return c.Base
  740. }
  741. type ThreeItemHV3 struct {
  742. *Base
  743. Covers []string `json:"covers,omitempty"`
  744. CoverTopText1 string `json:"cover_top_text_1,omitempty"`
  745. CoverTopText2 string `json:"cover_top_text_2,omitempty"`
  746. Desc string `json:"desc,omitempty"`
  747. Avatar *Avatar `json:"avatar,omitempty"`
  748. OfficialIcon model.Icon `json:"official_icon,omitempty"`
  749. }
  750. func (c *ThreeItemHV3) From(main interface{}, op *operate.Card) {
  751. if op == nil {
  752. return
  753. }
  754. var (
  755. upID int64
  756. )
  757. switch main.(type) {
  758. case map[int64]*article.Meta:
  759. mm := main.(map[int64]*article.Meta)
  760. m, ok := mm[op.ID]
  761. if !ok {
  762. return
  763. }
  764. c.Base.from(op.Param, "", m.Title, model.GotoArticle, op.URI, nil)
  765. c.Covers = m.ImageURLs
  766. c.CoverTopText1 = model.ArticleViewString(m.Stats.View)
  767. c.CoverTopText2 = model.ArticleReplyString(m.Stats.Reply)
  768. c.Desc = m.Summary
  769. if m.Author != nil {
  770. c.Avatar = avatarFrom(&AvatarStatus{Cover: m.Author.Face, Text: m.Author.Name + "·" + model.PubDataString(m.PublishTime.Time()), Goto: model.GotoMid, Param: strconv.FormatInt(m.Author.Mid, 10), Type: model.AvatarRound})
  771. upID = m.Author.Mid
  772. }
  773. c.Args.fromArticle(m)
  774. default:
  775. log.Warn("ThreeItemHV3 From: unexpected type %T", main)
  776. return
  777. }
  778. c.OfficialIcon = model.OfficialIcon(c.Cardm[upID])
  779. c.Right = true
  780. }
  781. func (c *ThreeItemHV3) Get() *Base {
  782. return c.Base
  783. }
  784. type TwoItemV1 struct {
  785. *Base
  786. Items []*TwoItemV1Item `json:"items,omitempty"`
  787. }
  788. type TwoItemV1Item struct {
  789. Base
  790. CoverBadge string `json:"cover_badge,omitempty"`
  791. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  792. }
  793. func (c *TwoItemV1) From(main interface{}, op *operate.Card) {
  794. if op == nil {
  795. return
  796. }
  797. switch main.(type) {
  798. case map[int64][]*live.Card:
  799. const _limit = 2
  800. csm := main.(map[int64][]*live.Card)
  801. cs, ok := csm[op.ID]
  802. if !ok {
  803. return
  804. }
  805. c.Base.from(op.Param, "", "", "", "", nil)
  806. c.Items = make([]*TwoItemV1Item, 0, _limit)
  807. for _, card := range cs {
  808. if card == nil || card.LiveStatus != 1 {
  809. continue
  810. }
  811. item := &TwoItemV1Item{
  812. CoverBadge: "直播",
  813. CoverLeftText1: model.LiveOnlineString(card.Online),
  814. }
  815. item.DescButton = buttonFrom(card, op.Plat)
  816. item.Base.from(strconv.FormatInt(card.RoomID, 10), card.ShowCover, card.Title, model.GotoLive, strconv.FormatInt(card.RoomID, 10), model.LiveUpHandler(card))
  817. item.Args.fromLiveUp(card)
  818. c.Items = append(c.Items, item)
  819. if len(c.Items) == _limit {
  820. break
  821. }
  822. }
  823. }
  824. c.Right = true
  825. }
  826. func (c *TwoItemV1) Get() *Base {
  827. return c.Base
  828. }
  829. type CoverOnly struct {
  830. *Base
  831. }
  832. func (c *CoverOnly) From(main interface{}, op *operate.Card) {
  833. if op == nil {
  834. return
  835. }
  836. switch main.(type) {
  837. case nil:
  838. switch op.CardGoto {
  839. case model.CardGotoLogin:
  840. c.Base.from(op.Param, "", "", "", "", nil)
  841. }
  842. default:
  843. log.Warn("CoverOnly From: unexpected type %T", main)
  844. return
  845. }
  846. c.Right = true
  847. }
  848. func (c *CoverOnly) Get() *Base {
  849. return c.Base
  850. }
  851. type Banner struct {
  852. *Base
  853. Hash string `json:"hash,omitempty"`
  854. BannerItem []*banner.Banner `json:"banner_item,omitempty"`
  855. }
  856. func (c *Banner) From(main interface{}, op *operate.Card) {
  857. if op == nil {
  858. return
  859. }
  860. switch main.(type) {
  861. case nil:
  862. switch op.CardGoto {
  863. case model.CardGotoBanner:
  864. if len(op.Banner) == 0 {
  865. log.Warn("Banner len is null")
  866. return
  867. }
  868. c.BannerItem = op.Banner
  869. c.Hash = op.Hash
  870. default:
  871. log.Warn("Banner From: unexpected card_goto %s", op.CardGoto)
  872. return
  873. }
  874. default:
  875. log.Warn("Banner From: unexpected type %T", main)
  876. return
  877. }
  878. c.Right = true
  879. }
  880. func (c *Banner) Get() *Base {
  881. return c.Base
  882. }
  883. type HotTopic struct {
  884. *Base
  885. Desc string `json:"desc,omitempty"`
  886. Items []*HotTopicItem `json:"items,omitempty"`
  887. }
  888. type HotTopicItem struct {
  889. Cover string `json:"cover,omitempty"`
  890. URI string `json:"uri,omitempty"`
  891. Param string `json:"param,omitempty"`
  892. Name string `json:"name,omitempty"`
  893. }
  894. func (c *HotTopic) From(main interface{}, op *operate.Card) {
  895. switch main.(type) {
  896. case []*live.TopicHot:
  897. th := main.([]*live.TopicHot)
  898. if len(th) == 0 {
  899. return
  900. }
  901. items := make([]*HotTopicItem, 0, len(th))
  902. for _, t := range th {
  903. it := &HotTopicItem{
  904. Name: t.TName,
  905. Param: strconv.Itoa(t.TID),
  906. Cover: t.ImageURL,
  907. URI: model.FillURI(model.GotoHotTopic, strconv.Itoa(t.TID), model.HottopicHandler(t)),
  908. }
  909. items = append(items, it)
  910. }
  911. c.Items = items
  912. c.Base.from("0", "", "热门话题", model.GotoWeb, "bilibili://following/hot_topic_list", nil)
  913. c.Desc = "更多热门话题"
  914. default:
  915. log.Warn("HotTopic From: unexpected type %T", main)
  916. return
  917. }
  918. c.Right = true
  919. }
  920. func (c *HotTopic) Get() *Base {
  921. return c.Base
  922. }
  923. type Text struct {
  924. *Base
  925. Content string `json:"content,omitempty"`
  926. }
  927. func (c *Text) From(main interface{}, op *operate.Card) {
  928. if op == nil {
  929. return
  930. }
  931. switch main.(type) {
  932. case nil:
  933. switch op.CardGoto {
  934. case model.CardGotoNews:
  935. c.Base.from(op.Param, "", op.Title, model.GotoWeb, op.URI, nil)
  936. c.Content = op.Desc
  937. default:
  938. log.Warn("Text From: unexpected card_goto %s", op.CardGoto)
  939. return
  940. }
  941. default:
  942. log.Warn("Text From: unexpected type %T", main)
  943. return
  944. }
  945. c.Right = true
  946. }
  947. func (c *Text) Get() *Base {
  948. return c.Base
  949. }
  950. type ThreeItemHV4 struct {
  951. *Base
  952. MoreURI string `json:"more_uri,omitempty"`
  953. MoreText string `json:"more_text,omitempty"`
  954. Items []*ThreeItemHV4Item `json:"items,omitempty"`
  955. }
  956. type ThreeItemHV4Item struct {
  957. Cover string `json:"cover,omitempty"`
  958. Title string `json:"title,omitempty"`
  959. Desc string `json:"desc,omitempty"`
  960. Goto model.Gt `json:"goto,omitempty"`
  961. Param string `json:"param,omitempty"`
  962. URI string `json:"uri,omitempty"`
  963. CoverBadge string `json:"cover_badge,omitempty"`
  964. CoverBadgeColor model.CoverColor `json:"cover_badge_color,omitempty"`
  965. }
  966. func (c *ThreeItemHV4) From(main interface{}, op *operate.Card) {
  967. if op == nil {
  968. return
  969. }
  970. switch main.(type) {
  971. case map[int32]*season.CardInfoProto:
  972. const _limit = 3
  973. c.Base.from(op.Param, "", op.Title, op.Goto, "", nil)
  974. c.Items = make([]*ThreeItemHV4Item, 0, _limit)
  975. for _, v := range op.Items {
  976. if v == nil {
  977. continue
  978. }
  979. var (
  980. item *ThreeItemHV4Item
  981. )
  982. sm := main.(map[int32]*season.CardInfoProto)
  983. s, ok := sm[int32(v.ID)]
  984. if !ok {
  985. return
  986. }
  987. item = &ThreeItemHV4Item{
  988. Title: s.Title,
  989. Cover: s.Cover,
  990. Goto: model.GotoPGC,
  991. URI: model.FillURI(model.GotoPGC, strconv.FormatInt(int64(s.SeasonId), 10), nil),
  992. Param: strconv.FormatInt(int64(s.SeasonId), 10),
  993. CoverBadge: s.Badge,
  994. // CoverBadgeColor: model.PurpleCoverBadge,
  995. // Desc:SeasonTypeName + " · " +
  996. }
  997. if s.Rating != nil && s.Rating.Score > 0 {
  998. item.Desc = fmt.Sprintf("%s · %.1f分", s.SeasonTypeName, s.Rating.Score)
  999. }
  1000. c.Items = append(c.Items, item)
  1001. if len(c.Items) == _limit {
  1002. break
  1003. }
  1004. }
  1005. if len(c.Items) > _limit {
  1006. // c.MoreText = "查看更多"
  1007. // c.MoreURI = model.FillURI(op.Goto, op.URI, nil)
  1008. c.Items = c.Items[:_limit]
  1009. }
  1010. if len(c.Items) < _limit {
  1011. return
  1012. }
  1013. default:
  1014. log.Warn("ThreeItemHV4Item From: unexpected card_goto %s", op.CardGoto)
  1015. return
  1016. }
  1017. c.Right = true
  1018. return
  1019. }
  1020. func (c *ThreeItemHV4) Get() *Base {
  1021. return c.Base
  1022. }
  1023. type UpRcmdCover struct {
  1024. *Base
  1025. CoverType model.Type `json:"cover_type,omitempty"`
  1026. Level int32 `json:"level,omitempty"`
  1027. OfficialIcon model.Icon `json:"official_icon,omitempty"`
  1028. DescButton *Button `json:"desc_button,omitempty"`
  1029. Desc1 string `json:"desc_1,omitempty"`
  1030. Desc2 string `json:"desc_2,omitempty"`
  1031. Desc3 string `json:"desc_3,omitempty"`
  1032. }
  1033. func (c *UpRcmdCover) From(main interface{}, op *operate.Card) {
  1034. if op == nil {
  1035. return
  1036. }
  1037. switch main.(type) {
  1038. case nil:
  1039. switch op.CardGoto {
  1040. case model.CardGotoUpRcmdS:
  1041. c.Base.from(strconv.FormatInt(op.ID, 10), "", "", model.GotoMid, strconv.FormatInt(op.ID, 10), nil)
  1042. var (
  1043. button interface{}
  1044. )
  1045. cd, ok := c.Cardm[op.ID]
  1046. if !ok {
  1047. return
  1048. }
  1049. c.Cover = cd.Face
  1050. c.CoverType = model.AvatarRound
  1051. c.Title = cd.Name
  1052. c.Level = cd.Level
  1053. c.OfficialIcon = model.OfficialIcon(cd)
  1054. if stat, ok := c.Statm[cd.Mid]; ok {
  1055. c.Desc1 = "粉丝: " + model.StatString(int32(stat.Follower), "")
  1056. }
  1057. c.Desc2 = "视频: " + strconv.Itoa(op.Limit)
  1058. c.Desc3 = cd.Sign
  1059. button = &ButtonStatus{
  1060. Goto: model.GotoMid,
  1061. Param: strconv.FormatInt(cd.Mid, 10),
  1062. IsAtten: c.IsAttenm[op.ID],
  1063. Event: model.EventUpClick,
  1064. }
  1065. c.DescButton = buttonFrom(button, op.Plat)
  1066. default:
  1067. log.Warn("UpRcmdCover From: unexpected card_goto %s", op.CardGoto)
  1068. return
  1069. }
  1070. c.Right = true
  1071. }
  1072. }
  1073. func (c *UpRcmdCover) Get() *Base {
  1074. return c.Base
  1075. }
  1076. type ThreeItemAll struct {
  1077. *Base
  1078. Items []*ThreeItemAllItem `json:"items,omitempty"`
  1079. }
  1080. type ThreeItemAllItem struct {
  1081. Base
  1082. CoverType model.Type `json:"cover_type,omitempty"`
  1083. Desc string `json:"desc,omitempty"`
  1084. DescButton *Button `json:"desc_button,omitempty"`
  1085. OfficialIcon model.Icon `json:"official_icon,omitempty"`
  1086. }
  1087. func (c *ThreeItemAll) From(main interface{}, op *operate.Card) {
  1088. switch main.(type) {
  1089. case nil:
  1090. if op == nil {
  1091. return
  1092. }
  1093. switch op.CardGoto {
  1094. case model.CardGotoSearchUpper:
  1095. const _limit = 3
  1096. c.Base.from(op.Param, "", op.Title, "", "", nil)
  1097. c.Items = []*ThreeItemAllItem{}
  1098. for _, v := range op.Items {
  1099. if v == nil {
  1100. continue
  1101. }
  1102. var (
  1103. item *ThreeItemAllItem
  1104. button interface{}
  1105. )
  1106. switch v.Goto {
  1107. case model.GotoMid:
  1108. cd, ok := c.Cardm[v.ID]
  1109. if !ok || c.IsAttenm[v.ID] == 1 {
  1110. continue
  1111. }
  1112. item = &ThreeItemAllItem{
  1113. CoverType: model.AvatarRound,
  1114. }
  1115. item.Base.from(v.Param, cd.Face, cd.Name, v.Goto, v.URI, nil)
  1116. button = &ButtonStatus{Goto: model.GotoMid, Param: strconv.FormatInt(cd.Mid, 10)}
  1117. if v.Desc != "" {
  1118. item.Desc = v.Desc
  1119. } else if stat, ok := c.Statm[cd.Mid]; ok {
  1120. item.Desc = model.FanString(int32(stat.Follower))
  1121. }
  1122. item.OfficialIcon = model.OfficialIcon(cd)
  1123. if item.OfficialIcon == 0 {
  1124. switch cd.Vip.Type {
  1125. case 1:
  1126. item.OfficialIcon = model.IconRoleVipRed
  1127. case 2:
  1128. item.OfficialIcon = model.IconRoleYearVipRed
  1129. }
  1130. }
  1131. default:
  1132. log.Warn("ThreeItemAll From: unexpected type %T", v.Goto)
  1133. continue
  1134. }
  1135. item.DescButton = buttonFrom(button, op.Plat)
  1136. c.Items = append(c.Items, item)
  1137. }
  1138. if len(c.Items) < _limit {
  1139. return
  1140. }
  1141. default:
  1142. log.Warn("ThreeItemAll From: unexpected card_goto %s", op.CardGoto)
  1143. return
  1144. }
  1145. c.Right = true
  1146. }
  1147. }
  1148. func (c *ThreeItemAll) Get() *Base {
  1149. return c.Base
  1150. }
  1151. type ChannelSquare struct {
  1152. *Base
  1153. Desc1 string `json:"desc_1,omitempty"`
  1154. Desc2 string `json:"desc_2,omitempty"`
  1155. Item []*ChannelSquareItem `json:"item,omitempty"`
  1156. }
  1157. type ChannelSquareItem struct {
  1158. Title string `json:"title,omitempty"`
  1159. Cover string `json:"cover,omitempty"`
  1160. URI string `json:"uri,omitempty"`
  1161. Param string `json:"param,omitempty"`
  1162. Goto string `json:"goto,omitempty"`
  1163. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  1164. CoverLeftIcon1 model.Icon `json:"cover_left_icon_1,omitempty"`
  1165. CoverLeftText2 string `json:"cover_left_text_2,omitempty"`
  1166. CoverLeftIcon2 model.Icon `json:"cover_left_icon_2,omitempty"`
  1167. CoverLeftText3 string `json:"cover_left_text_3,omitempty"`
  1168. FromType string `json:"from_type"`
  1169. }
  1170. //From ChannelSquare op:channel--av对应关系, main:av map, c.base.tagm:tag map
  1171. func (c *ChannelSquare) From(main interface{}, op *operate.Card) {
  1172. switch main.(type) {
  1173. case map[int64]*api.Arc:
  1174. t := c.Base.Tagm[op.ID]
  1175. c.Base.from(op.Param, t.Cover, t.Name, model.GotoTag, op.Param, nil)
  1176. button := &ButtonStatus{Goto: model.GotoTag, IsAtten: t.IsAtten}
  1177. c.DescButton = buttonFrom(button, op.Plat)
  1178. c.Desc1 = t.Content
  1179. c.Desc2 = model.SubscribeString(int32(t.Count.Atten))
  1180. for _, item := range op.Items {
  1181. am := main.(map[int64]*api.Arc)
  1182. av := am[item.ID]
  1183. c.Item = append(c.Item, &ChannelSquareItem{
  1184. Title: av.Title,
  1185. Cover: av.Pic,
  1186. URI: model.FillURI(model.GotoAv, strconv.FormatInt(item.ID, 10), model.AvPlayHandler(archive.BuildArchive3(av), nil, "")),
  1187. Goto: string(model.GotoAv),
  1188. Param: strconv.FormatInt(item.ID, 10),
  1189. CoverLeftText1: model.StatString(av.Stat.View, ""),
  1190. CoverLeftIcon1: model.IconPlay,
  1191. CoverLeftText2: model.StatString(av.Stat.Danmaku, ""),
  1192. CoverLeftIcon2: model.IconDanmaku,
  1193. CoverLeftText3: model.DurationString(av.Duration),
  1194. FromType: item.FromType,
  1195. })
  1196. }
  1197. }
  1198. c.Right = true
  1199. }
  1200. func (c *ChannelSquare) Get() *Base {
  1201. return c.Base
  1202. }
  1203. type TwoItemHV1 struct {
  1204. *Base
  1205. Desc string `json:"desc,omitempty"`
  1206. DescButton *Button `json:"desc_button,omitempty"`
  1207. Items []*TwoItemHV1Item `json:"item,omitempty"`
  1208. }
  1209. type TwoItemHV1Item struct {
  1210. Title string `json:"title,omitempty"`
  1211. Cover string `json:"cover,omitempty"`
  1212. URI string `json:"uri,omitempty"`
  1213. Param string `json:"param,omitempty"`
  1214. Args Args `json:"args,omitempty"`
  1215. Goto string `json:"goto,omitempty"`
  1216. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  1217. CoverLeftIcon1 model.Icon `json:"cover_left_icon_1,omitempty"`
  1218. CoverRightText string `json:"cover_right_text,omitempty"`
  1219. }
  1220. func (c *TwoItemHV1) From(main interface{}, op *operate.Card) {
  1221. if op == nil {
  1222. return
  1223. }
  1224. au, ok := c.Cardm[op.ID]
  1225. if !ok {
  1226. return
  1227. }
  1228. c.Base.from(op.Param, au.Face, au.Name, model.GotoMid, op.Param, nil)
  1229. button := &ButtonStatus{Goto: model.GotoMid, Param: strconv.FormatInt(op.ID, 10), IsAtten: c.IsAttenm[op.ID]}
  1230. c.DescButton = buttonFrom(button, op.Plat)
  1231. if op.Desc != "" {
  1232. c.Desc = op.Desc
  1233. } else {
  1234. c.Desc = au.Sign
  1235. }
  1236. switch main.(type) {
  1237. case map[int64]*archive.ArchiveWithPlayer:
  1238. for _, item := range op.Items {
  1239. am := main.(map[int64]*archive.ArchiveWithPlayer)
  1240. var (
  1241. a *archive.ArchiveWithPlayer
  1242. ok bool
  1243. )
  1244. if a, ok = am[item.ID]; !ok {
  1245. continue
  1246. }
  1247. args := Args{}
  1248. args.fromArchive(a.Archive3, c.Tagm[op.Tid])
  1249. c.Items = append(c.Items, &TwoItemHV1Item{
  1250. Title: a.Title,
  1251. Cover: a.Pic,
  1252. URI: model.FillURI(model.GotoAv, strconv.FormatInt(item.ID, 10), model.AvPlayHandler(a.Archive3, nil, "")),
  1253. Goto: string(model.GotoAv),
  1254. Param: strconv.FormatInt(item.ID, 10),
  1255. CoverLeftText1: model.StatString(a.Stat.View, ""),
  1256. CoverLeftIcon1: model.IconPlay,
  1257. CoverRightText: model.DurationString(a.Duration),
  1258. Args: args,
  1259. })
  1260. if len(c.Items) >= 2 {
  1261. break
  1262. }
  1263. }
  1264. if len(c.Items) < 2 {
  1265. return
  1266. }
  1267. }
  1268. c.Right = true
  1269. }
  1270. func (c *TwoItemHV1) Get() *Base {
  1271. return c.Base
  1272. }
  1273. type OnePicV1 struct {
  1274. *Base
  1275. Desc1 string
  1276. Desc2 string
  1277. Avatar *Avatar `json:"avatar,omitempty"`
  1278. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  1279. CoverLeftText2 string `json:"cover_left_text_2,omitempty"`
  1280. CoverRightText string `json:"cover_right_text,omitempty"`
  1281. CoverRightBackgroundColor string `json:"cover_right_background_color,omitempty"`
  1282. CoverBadge string `json:"cover_badge,omitempty"`
  1283. TopRcmdReason string `json:"top_rcmd_reason,omitempty"`
  1284. BottomRcmdReason string `json:"bottom_rcmd_reason,omitempty"`
  1285. Desc string `json:"desc,omitempty"`
  1286. OfficialIcon model.Icon `json:"official_icon,omitempty"`
  1287. CanPlay int32 `json:"can_play,omitempty"`
  1288. CoverBadgeColor model.CoverColor `json:"cover_badge_color,omitempty"`
  1289. TopRcmdReasonStyle *ReasonStyle `json:"top_rcmd_reason_style,omitempty"`
  1290. BottomRcmdReasonStyle *ReasonStyle `json:"bottom_rcmd_reason_style,omitempty"`
  1291. }
  1292. func (c *OnePicV1) From(main interface{}, op *operate.Card) {
  1293. if op == nil {
  1294. return
  1295. }
  1296. var (
  1297. button interface{}
  1298. avatar *AvatarStatus
  1299. upID int64
  1300. )
  1301. switch main.(type) {
  1302. case map[int64]*bplus.Picture:
  1303. pm := main.(map[int64]*bplus.Picture)
  1304. p, ok := pm[op.ID]
  1305. if !ok || len(p.Imgs) == 0 || p.ViewCount == 0 {
  1306. return
  1307. }
  1308. c.Base.from(op.Param, p.Imgs[0], p.DynamicText, model.GotoPicture, strconv.FormatInt(p.DynamicID, 10), nil)
  1309. c.CoverLeftText1 = model.PictureViewString(p.ViewCount)
  1310. c.CoverLeftText2 = model.ArticleReplyString(p.CommentCount)
  1311. if p.ImgCount > 1 {
  1312. c.CoverRightText = model.PictureCountString(p.ImgCount)
  1313. c.CoverRightBackgroundColor = "#66666666"
  1314. }
  1315. c.Desc1 = p.NickName
  1316. c.Desc2 = model.PubDataString(p.PublishTime.Time())
  1317. avatar = &AvatarStatus{Cover: p.FaceImg, Goto: model.GotoDynamicMid, Param: strconv.FormatInt(p.Mid, 10), Type: model.AvatarRound}
  1318. button = p
  1319. upID = p.Mid
  1320. default:
  1321. log.Warn("OnePicV1 From: unexpected type %T", main)
  1322. }
  1323. if c.Rcmd != nil {
  1324. c.TopRcmdReason, c.BottomRcmdReason = TopBottomRcmdReason(c.Rcmd.RcmdReason, c.IsAttenm[upID], c.Cardm)
  1325. c.TopRcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.TopRcmdReason, c.Base.Goto)
  1326. c.BottomRcmdReasonStyle = bottomReasonStyleFrom(c.Rcmd, c.BottomRcmdReason, c.Base.Goto)
  1327. }
  1328. c.OfficialIcon = model.OfficialIcon(c.Cardm[upID])
  1329. c.Avatar = avatarFrom(avatar)
  1330. c.DescButton = buttonFrom(button, op.Plat)
  1331. c.Right = true
  1332. }
  1333. func (c *OnePicV1) Get() *Base {
  1334. return c.Base
  1335. }
  1336. type ThreePicV1 struct {
  1337. *Base
  1338. Covers []string `json:"covers,omitempty"`
  1339. Desc1 string `json:"desc_1,omitempty"`
  1340. Desc2 string `json:"desc_2,omitempty"`
  1341. Avatar *Avatar `json:"avatar,omitempty"`
  1342. TitleLeftText1 string `json:"title_left_text_1,omitempty"`
  1343. TitleLeftText2 string `json:"title_left_text_2,omitempty"`
  1344. CoverRightText string `json:"cover_right_text,omitempty"`
  1345. CoverRightBackgroundColor string `json:"cover_right_background_color,omitempty"`
  1346. TopRcmdReason string `json:"top_rcmd_reason,omitempty"`
  1347. BottomRcmdReason string `json:"bottom_rcmd_reason,omitempty"`
  1348. TopRcmdReasonStyle *ReasonStyle `json:"top_rcmd_reason_style,omitempty"`
  1349. BottomRcmdReasonStyle *ReasonStyle `json:"bottom_rcmd_reason_style,omitempty"`
  1350. }
  1351. func (c *ThreePicV1) From(main interface{}, op *operate.Card) {
  1352. if op == nil {
  1353. return
  1354. }
  1355. var (
  1356. button interface{}
  1357. avatar *AvatarStatus
  1358. upID int64
  1359. )
  1360. switch main.(type) {
  1361. case map[int64]*bplus.Picture:
  1362. pm := main.(map[int64]*bplus.Picture)
  1363. p, ok := pm[op.ID]
  1364. if !ok || len(p.Imgs) < 3 || p.ViewCount == 0 {
  1365. return
  1366. }
  1367. c.Base.from(op.Param, "", p.DynamicText, model.GotoPicture, strconv.FormatInt(p.DynamicID, 10), nil)
  1368. c.Covers = p.Imgs[:3]
  1369. c.TitleLeftText1 = model.PictureViewString(p.ViewCount)
  1370. c.TitleLeftText2 = model.ArticleReplyString(p.CommentCount)
  1371. if p.ImgCount > 3 {
  1372. c.CoverRightText = model.PictureCountString(p.ImgCount)
  1373. c.CoverRightBackgroundColor = "#66666666"
  1374. }
  1375. c.Desc1 = p.NickName
  1376. c.Desc2 = model.PubDataString(p.PublishTime.Time())
  1377. avatar = &AvatarStatus{Cover: p.FaceImg, Goto: model.GotoDynamicMid, Param: strconv.FormatInt(p.Mid, 10), Type: model.AvatarRound}
  1378. button = p
  1379. upID = p.Mid
  1380. default:
  1381. log.Warn("ThreePicV1 From: unexpected type %T", main)
  1382. }
  1383. if c.Rcmd != nil {
  1384. c.TopRcmdReason, c.BottomRcmdReason = TopBottomRcmdReason(c.Rcmd.RcmdReason, c.IsAttenm[upID], c.Cardm)
  1385. c.TopRcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.TopRcmdReason, c.Base.Goto)
  1386. c.BottomRcmdReasonStyle = bottomReasonStyleFrom(c.Rcmd, c.BottomRcmdReason, c.Base.Goto)
  1387. }
  1388. c.Avatar = avatarFrom(avatar)
  1389. c.DescButton = buttonFrom(button, op.Plat)
  1390. c.Right = true
  1391. }
  1392. func (c *ThreePicV1) Get() *Base {
  1393. return c.Base
  1394. }
  1395. type SmallCoverV5 struct {
  1396. *Base
  1397. Up *Up `json:"up,omitempty"`
  1398. CoverRightText1 string `json:"cover_right_text_1,omitempty"`
  1399. RightDesc1 string `json:"right_desc_1,omitempty"`
  1400. RightDesc2 string `json:"right_desc_2,omitempty"`
  1401. CanPlay int32 `json:"can_play,omitempty"`
  1402. RcmdReasonStyle *ReasonStyle `json:"rcmd_reason_style,omitempty"`
  1403. }
  1404. type Up struct {
  1405. ID int64 `json:"id,omitempty"`
  1406. Name string `json:"name,omitempty"`
  1407. Desc string `json:"desc,omitempty"`
  1408. Avatar *Avatar `json:"avatar,omitempty"`
  1409. OfficialIcon model.Icon `json:"official_icon,omitempty"`
  1410. DescButton *Button `json:"desc_button,omitempty"`
  1411. Cooperation string `json:"cooperation,omitempty"`
  1412. }
  1413. func (c *SmallCoverV5) From(main interface{}, op *operate.Card) {
  1414. if op == nil {
  1415. return
  1416. }
  1417. var (
  1418. button interface{}
  1419. avatar *AvatarStatus
  1420. rcmdReason string
  1421. )
  1422. switch main.(type) {
  1423. case map[int64]*archive.ArchiveWithPlayer:
  1424. am := main.(map[int64]*archive.ArchiveWithPlayer)
  1425. a, ok := am[op.ID]
  1426. if !ok || !model.AvIsNormal(a) {
  1427. return
  1428. }
  1429. c.Base.from(op.Param, a.Pic, a.Title, model.GotoAv, op.URI, model.AvPlayHandler(a.Archive3, a.PlayerInfo, op.TrackID))
  1430. c.CoverRightText1 = model.DurationString(a.Duration)
  1431. if c.Rcmd != nil {
  1432. rcmdReason, _ = TopBottomRcmdReason(c.Rcmd.RcmdReason, c.IsAttenm[a.Author.Mid], c.Cardm)
  1433. c.RcmdReasonStyle = topReasonStyleFrom(c.Rcmd, rcmdReason, c.Base.Goto)
  1434. }
  1435. switch op.CardGoto {
  1436. case model.CardGotoAv:
  1437. var (
  1438. authorface = a.Author.Face
  1439. authorname = a.Author.Name
  1440. )
  1441. if (authorface == "" || authorname == "") && c.Cardm != nil {
  1442. if au, ok := c.Cardm[a.Author.Mid]; ok {
  1443. authorface = au.Face
  1444. authorname = au.Name
  1445. }
  1446. }
  1447. switch c.Rcmd.Style {
  1448. case model.HotCardStyleShowUp:
  1449. c.Up = &Up{
  1450. ID: a.Author.Mid,
  1451. Name: authorname,
  1452. }
  1453. if stat, ok := c.Statm[a.Author.Mid]; ok {
  1454. c.Up.Desc = model.AttentionString(int32(stat.Follower))
  1455. }
  1456. avatar = &AvatarStatus{Cover: authorface, Goto: model.GotoMid, Param: strconv.FormatInt(a.Author.Mid, 10), Type: model.AvatarRound}
  1457. c.Up.Avatar = avatarFrom(avatar)
  1458. c.Up.OfficialIcon = model.OfficialIcon(c.Cardm[a.Author.Mid])
  1459. c.RightDesc1 = model.ArchiveViewString(a.Stat.View) + " · " + model.PubDataString(a.PubDate.Time())
  1460. button = &ButtonStatus{Goto: model.GotoMid, Param: strconv.FormatInt(a.Author.Mid, 10), IsAtten: c.IsAttenm[a.Author.Mid]}
  1461. c.Up.DescButton = buttonFrom(button, op.Plat)
  1462. if a.Rights.IsCooperation > 0 {
  1463. c.Up.Cooperation = "等联合创作"
  1464. }
  1465. default:
  1466. if op.Switch != model.SwitchCooperationHide {
  1467. c.RightDesc1 = unionAuthor(a)
  1468. } else {
  1469. c.RightDesc1 = authorname
  1470. }
  1471. c.RightDesc2 = model.ArchiveViewString(a.Stat.View) + " · " + model.PubDataString(a.PubDate.Time())
  1472. }
  1473. // c.CanPlay = a.Rights.Autoplay
  1474. default:
  1475. log.Warn("SmallCoverV5 From: unexpected type %T", main)
  1476. return
  1477. }
  1478. }
  1479. c.Right = true
  1480. }
  1481. func (c *SmallCoverV5) Get() *Base {
  1482. return c.Base
  1483. }
  1484. // Option struct.
  1485. type Option struct {
  1486. *Base
  1487. Option []string `json:"option,omitempty"`
  1488. }
  1489. // From is.
  1490. func (c *Option) From(main interface{}, op *operate.Card) {
  1491. if op == nil {
  1492. return
  1493. }
  1494. switch main.(type) {
  1495. case []string:
  1496. os := main.([]string)
  1497. if len(os) == 0 {
  1498. return
  1499. }
  1500. c.Base.from(op.Param, "", "选择感兴趣的内容", "", "", nil)
  1501. c.Option = os
  1502. c.DescButton = &Button{Text: "选好啦,刷新首页"}
  1503. default:
  1504. log.Warn("Option From: unexpected type %T", main)
  1505. return
  1506. }
  1507. c.Right = true
  1508. }
  1509. // Get is.
  1510. func (c *Option) Get() *Base {
  1511. return c.Base
  1512. }
  1513. type DynamicHot struct {
  1514. *Base
  1515. TopLeftTitle string `json:"top_left_title,omitempty"`
  1516. Desc1 string `json:"desc1,omitempty"`
  1517. Desc2 string `json:"desc2,omitempty"`
  1518. MoreURI string `json:"more_uri,omitempty"`
  1519. MoreText string `json:"more_text,omitempty"`
  1520. Covers []string `json:"covers,omitempty"`
  1521. CoverRightText string `json:"cover_right_text,omitempty"`
  1522. TopRcmdReasonStyle *ReasonStyle `json:"top_rcmd_reason_style,omitempty"`
  1523. }
  1524. func (c *DynamicHot) From(main interface{}, op *operate.Card) {
  1525. if op == nil {
  1526. return
  1527. }
  1528. switch main.(type) {
  1529. case []*live.DynamicHot:
  1530. lds := main.([]*live.DynamicHot)
  1531. if len(lds) == 0 {
  1532. return
  1533. }
  1534. ld := lds[0]
  1535. c.Base.from("", "", "", model.GotoHotDynamic, strconv.FormatInt(ld.ID, 10), nil)
  1536. c.TopLeftTitle = "热门动态"
  1537. c.MoreURI = "bilibili://following/recommend"
  1538. c.MoreText = "查看更多"
  1539. c.Title = ld.DynamicText
  1540. if len(ld.Imgs) < 3 {
  1541. return
  1542. }
  1543. c.Covers = ld.Imgs[:3]
  1544. c.CoverRightText = strconv.Itoa(ld.ImgCount) + "P"
  1545. c.Desc1 = ld.NickName
  1546. var tmpdesc string
  1547. if ld.ViewCount > 0 {
  1548. tmpdesc = model.PictureViewString(ld.ViewCount)
  1549. }
  1550. if tmpdesc != "" && ld.CommentCount > 0 {
  1551. tmpdesc = tmpdesc + " " + model.ArticleReplyString(ld.CommentCount)
  1552. } else if ld.CommentCount > 0 {
  1553. tmpdesc = model.ArticleReplyString(ld.CommentCount)
  1554. }
  1555. if tmpdesc != "" {
  1556. c.Desc2 = model.PictureViewString(ld.ViewCount) + " " + model.ArticleReplyString(ld.CommentCount)
  1557. }
  1558. if ld.RcmdReason != "" {
  1559. c.TopRcmdReasonStyle = reasonStyleFrom(model.BgColorOrange, ld.RcmdReason)
  1560. }
  1561. default:
  1562. log.Warn("DynamicHot From: unexpected type %T", main)
  1563. return
  1564. }
  1565. c.Right = true
  1566. }
  1567. func (c *DynamicHot) Get() *Base {
  1568. return c.Base
  1569. }
  1570. type ThreeItemAllV2 struct {
  1571. *Base
  1572. DescButton *Button `json:"desc_button,omitempty"`
  1573. TopRcmdReasonStyle *ReasonStyle `json:"top_rcmd_reason_style,omitempty"`
  1574. Items []*TwoItemHV1Item `json:"item,omitempty"`
  1575. }
  1576. type ThreeItemAllV2Item struct {
  1577. Title string `json:"title,omitempty"`
  1578. Cover string `json:"cover,omitempty"`
  1579. URI string `json:"uri,omitempty"`
  1580. Param string `json:"param,omitempty"`
  1581. Args Args `json:"args,omitempty"`
  1582. Goto string `json:"goto,omitempty"`
  1583. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  1584. CoverLeftIcon1 model.Icon `json:"cover_left_icon_1,omitempty"`
  1585. CoverRightText string `json:"cover_right_text,omitempty"`
  1586. }
  1587. func (c *ThreeItemAllV2) From(main interface{}, op *operate.Card) {
  1588. if op == nil {
  1589. return
  1590. }
  1591. au, ok := c.Cardm[op.ID]
  1592. if !ok {
  1593. return
  1594. }
  1595. c.Base.from(op.Param, au.Face, au.Name, model.GotoMid, op.Param, nil)
  1596. button := &ButtonStatus{Goto: model.GotoMid, Param: strconv.FormatInt(op.ID, 10), IsAtten: c.IsAttenm[op.ID]}
  1597. c.DescButton = buttonFrom(button, op.Plat)
  1598. if op.Desc != "" {
  1599. c.TopRcmdReasonStyle = reasonStyleFrom(model.BgColorOrange, op.Desc)
  1600. }
  1601. switch main.(type) {
  1602. case map[int64]*archive.ArchiveWithPlayer:
  1603. for _, item := range op.Items {
  1604. am := main.(map[int64]*archive.ArchiveWithPlayer)
  1605. var (
  1606. a *archive.ArchiveWithPlayer
  1607. ok bool
  1608. )
  1609. if a, ok = am[item.ID]; !ok {
  1610. continue
  1611. }
  1612. args := Args{}
  1613. args.fromArchive(a.Archive3, c.Tagm[op.Tid])
  1614. c.Items = append(c.Items, &TwoItemHV1Item{
  1615. Title: a.Title,
  1616. Cover: a.Pic,
  1617. URI: model.FillURI(model.GotoAv, strconv.FormatInt(item.ID, 10), model.AvPlayHandler(a.Archive3, nil, "")),
  1618. Goto: string(model.GotoAv),
  1619. Param: strconv.FormatInt(item.ID, 10),
  1620. CoverLeftText1: model.StatString(a.Stat.View, ""),
  1621. CoverLeftIcon1: model.IconPlay,
  1622. CoverRightText: model.DurationString(a.Duration),
  1623. Args: args,
  1624. })
  1625. }
  1626. if len(c.Items) < 3 {
  1627. return
  1628. }
  1629. }
  1630. c.Right = true
  1631. }
  1632. func (c *ThreeItemAllV2) Get() *Base {
  1633. return c.Base
  1634. }
  1635. type MiddleCoverV3 struct {
  1636. *Base
  1637. Desc1 string `json:"desc1,omitempty"`
  1638. Desc2 string `json:"desc2,omitempty"`
  1639. CoverBadge *ReasonStyle `json:"cover_badge_style,omitempty"`
  1640. }
  1641. func (c *MiddleCoverV3) From(main interface{}, op *operate.Card) {
  1642. if op == nil {
  1643. return
  1644. }
  1645. c.Base.from(op.Param, op.Cover, op.Title, model.GotoWeb, op.URI, nil)
  1646. c.Goto = op.Goto
  1647. if op.Badge != "" {
  1648. c.CoverBadge = reasonStyleFrom(model.BgColorPurple, op.Badge)
  1649. }
  1650. c.Desc1 = op.Desc
  1651. c.Right = true
  1652. }
  1653. func (c *MiddleCoverV3) Get() *Base {
  1654. return c.Base
  1655. }
  1656. type Select struct {
  1657. *Base
  1658. Desc string `json:"desc,omitempty"`
  1659. LeftButton *Button `json:"left_button,omitempty"`
  1660. RightButton *Button `json:"right_button,omitempty"`
  1661. }
  1662. func (c *Select) From(main interface{}, op *operate.Card) {
  1663. if op == nil {
  1664. return
  1665. }
  1666. switch main.(type) {
  1667. case nil:
  1668. switch op.CardGoto {
  1669. case model.CardGotoFollowMode:
  1670. if len(op.Buttons) < 2 {
  1671. return
  1672. }
  1673. c.Base.from(op.Param, "", op.Title, "", "", nil)
  1674. c.Desc = op.Desc
  1675. c.LeftButton = buttonFrom(&ButtonStatus{Text: op.Buttons[0].Text, Event: model.Event(op.Buttons[0].Event)}, op.Plat)
  1676. c.RightButton = buttonFrom(&ButtonStatus{Text: op.Buttons[1].Text, Event: model.Event(op.Buttons[1].Event)}, op.Plat)
  1677. default:
  1678. log.Warn("Select From: unexpected card_goto %s", op.CardGoto)
  1679. return
  1680. }
  1681. default:
  1682. log.Warn("Select From: unexpected type %T", main)
  1683. return
  1684. }
  1685. c.Right = true
  1686. }
  1687. func (c *Select) Get() *Base {
  1688. return c.Base
  1689. }