double.go 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130
  1. package card
  2. import (
  3. "strconv"
  4. "go-common/app/interface/main/app-card/model"
  5. "go-common/app/interface/main/app-card/model/bplus"
  6. "go-common/app/interface/main/app-card/model/card/ai"
  7. "go-common/app/interface/main/app-card/model/card/audio"
  8. "go-common/app/interface/main/app-card/model/card/bangumi"
  9. "go-common/app/interface/main/app-card/model/card/cm"
  10. "go-common/app/interface/main/app-card/model/card/live"
  11. "go-common/app/interface/main/app-card/model/card/operate"
  12. "go-common/app/interface/main/app-card/model/card/show"
  13. tag "go-common/app/interface/main/tag/model"
  14. article "go-common/app/interface/openplatform/article/model"
  15. account "go-common/app/service/main/account/model"
  16. "go-common/app/service/main/archive/model/archive"
  17. relation "go-common/app/service/main/relation/model"
  18. episodegrpc "go-common/app/service/openplatform/pgc-season/api/grpc/episode/v1"
  19. season "go-common/app/service/openplatform/pgc-season/api/grpc/season/v1"
  20. "go-common/library/log"
  21. )
  22. func doubleHandle(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) {
  23. base := &Base{CardType: cardType, CardGoto: cardGoto, Rcmd: rcmd, Tagm: tagm, IsAttenm: isAttenm, Statm: statm, Cardm: cardm, Columnm: model.ColumnSvrDouble}
  24. switch cardType {
  25. case model.ThreePicV2:
  26. base.CardLen = 1
  27. hander = &ThreePicV2{Base: base}
  28. case model.SmallCoverV2:
  29. base.CardLen = 1
  30. hander = &SmallCoverV2{Base: base}
  31. case model.OptionsV2:
  32. hander = &Option{Base: base}
  33. case model.OnePicV2:
  34. base.CardLen = 1
  35. hander = &OnePicV2{Base: base}
  36. case model.Select:
  37. hander = &Select{Base: base}
  38. default:
  39. switch cardGoto {
  40. case model.CardGotoAv, model.CardGotoLive, model.CardGotoArticleS, model.CardGotoSpecialS, model.CardGotoShoppingS, model.CardGotoAudio, model.CardGotoGameDownloadS, model.CardGotoBangumi, model.CardGotoMoe, model.CardGotoPGC:
  41. base.CardType = model.SmallCoverV2
  42. base.CardLen = 1
  43. hander = &SmallCoverV2{Base: base}
  44. case model.CardGotoAdAv:
  45. base.CardType = model.CmV2
  46. base.CardLen = 1
  47. hander = &SmallCoverV2{Base: base}
  48. case model.CardGotoChannelRcmd, model.CardGotoUpRcmdAv:
  49. base.CardType = model.SmallCoverV3
  50. base.CardLen = 1
  51. hander = &SmallCoverV3{Base: base}
  52. case model.CardGotoSpecial:
  53. base.CardType = model.MiddleCoverV2
  54. hander = &MiddleCover{Base: base}
  55. case model.CardGotoPlayer, model.CardGotoPlayerLive:
  56. base.CardType = model.LargeCoverV2
  57. hander = &LargeCoverV2{Base: base}
  58. case model.CardGotoSubscribe, model.CardGotoSearchSubscribe:
  59. base.CardType = model.ThreeItemHV2
  60. hander = &ThreeItemH{Base: base}
  61. case model.CardGotoLiveUpRcmd:
  62. base.CardType = model.TwoItemV2
  63. return &TwoItemV2{Base: base}
  64. case model.CardGotoConverge, model.CardGotoRank:
  65. base.CardType = model.ThreeItemV2
  66. hander = &ThreeItemV2{Base: base}
  67. case model.CardGotoBangumiRcmd:
  68. base.CardType = model.SmallCoverV4
  69. hander = &SmallCoverV4{Base: base}
  70. case model.CardGotoLogin:
  71. base.CardType = model.CoverOnlyV2
  72. base.CardLen = 1
  73. return &CoverOnly{Base: base}
  74. case model.CardGotoBanner:
  75. base.CardType = model.BannerV2
  76. return &Banner{Base: base}
  77. case model.CardGotoAdWebS:
  78. base.CardType = model.CmV2
  79. base.CardLen = 1
  80. hander = &SmallCoverV2{Base: base}
  81. case model.CardGotoAdWeb:
  82. base.CardType = model.CmV2
  83. hander = &MiddleCover{Base: base}
  84. case model.CardGotoNews:
  85. base.CardType = model.News
  86. hander = &Text{Base: base}
  87. case model.CardGotoEntrance:
  88. base.CardType = model.MultiItemH
  89. hander = &MultiItem{Base: base}
  90. case model.CardGotoTagRcmd, model.CardGotoContentRcmd:
  91. base.CardType = model.MultiItem
  92. hander = &MultiItem{Base: base}
  93. }
  94. }
  95. return
  96. }
  97. type SmallCoverV2 struct {
  98. *Base
  99. CoverBlur model.BlurStatus `json:"cover_blur,omitempty"`
  100. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  101. CoverLeftIcon1 model.Icon `json:"cover_left_icon_1,omitempty"`
  102. CoverLeftText2 string `json:"cover_left_text_2,omitempty"`
  103. CoverLeftIcon2 model.Icon `json:"cover_left_icon_2,omitempty"`
  104. CoverRightText string `json:"cover_right_text,omitempty"`
  105. CoverRightIcon model.Icon `json:"cover_right_icon,omitempty"`
  106. CoverRightBackgroundColor string `json:"cover_right_background_color,omitempty"`
  107. Subtitle string `json:"subtitle,omitempty"`
  108. Badge string `json:"badge,omitempty"`
  109. RcmdReason string `json:"rcmd_reason,omitempty"`
  110. DescButton *Button `json:"desc_button,omitempty"`
  111. Desc string `json:"desc,omitempty"`
  112. Avatar *Avatar `json:"avatar,omitempty"`
  113. OfficialIcon model.Icon `json:"official_icon,omitempty"`
  114. CanPlay int32 `json:"can_play,omitempty"`
  115. RcmdReasonStyle *ReasonStyle `json:"rcmd_reason_style,omitempty"`
  116. }
  117. func (c *SmallCoverV2) From(main interface{}, op *operate.Card) {
  118. if op == nil {
  119. return
  120. }
  121. var (
  122. upID int64
  123. button interface{}
  124. avatar *AvatarStatus
  125. )
  126. switch main.(type) {
  127. case map[int64]*archive.ArchiveWithPlayer:
  128. am := main.(map[int64]*archive.ArchiveWithPlayer)
  129. a, ok := am[op.ID]
  130. if !ok {
  131. return
  132. }
  133. switch op.CardGoto {
  134. case model.CardGotoAdAv:
  135. if !model.AdAvIsNormal(a) {
  136. return
  137. }
  138. c.AdInfo = op.AdInfo
  139. default:
  140. if !model.AvIsNormal(a) {
  141. return
  142. }
  143. }
  144. c.Base.from(op.Param, a.Pic, a.Title, model.GotoAv, strconv.FormatInt(a.Aid, 10), model.AvPlayHandler(a.Archive3, a.PlayerInfo, op.TrackID))
  145. // c.CoverLeftText1 = model.RecommendString(a.Stat.Like, a.Stat.DisLike)
  146. c.CoverLeftText1 = model.StatString(a.Stat.View, "")
  147. c.CoverLeftIcon1 = model.IconPlay
  148. c.CoverLeftText2 = model.StatString(a.Stat.Danmaku, "")
  149. c.CoverLeftIcon2 = model.IconDanmaku
  150. if op.SwitchLike == model.SwitchFeedIndexLike {
  151. c.CoverLeftText1 = model.StatString(a.Stat.Like, "")
  152. c.CoverLeftIcon1 = model.IconLike
  153. c.CoverLeftText2 = model.StatString(a.Stat.View, "")
  154. c.CoverLeftIcon2 = model.IconPlay
  155. }
  156. c.CoverRightText = model.DurationString(a.Duration)
  157. if c.Rcmd != nil {
  158. c.RcmdReason, c.Desc = rcmdReason(c.Rcmd.RcmdReason, a.Author.Name, c.IsAttenm[a.Author.Mid], c.Cardm)
  159. c.RcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.RcmdReason, c.Base.Goto)
  160. }
  161. if c.RcmdReason == "" {
  162. if t, ok := c.Tagm[op.Tid]; ok {
  163. tag := &tag.Tag{}
  164. *tag = *t
  165. tag.Name = a.TypeName + " · " + tag.Name
  166. button = tag
  167. } else {
  168. button = &ButtonStatus{Text: a.TypeName}
  169. }
  170. }
  171. c.Base.PlayerArgs = playerArgsFrom(a.Archive3)
  172. c.Args.fromArchive(a.Archive3, c.Tagm[op.Tid])
  173. c.CanPlay = a.Rights.Autoplay
  174. upID = a.Author.Mid
  175. switch op.CardGoto {
  176. case model.CardGotoAdAv:
  177. c.AdInfo = op.AdInfo
  178. }
  179. case map[int64]*bangumi.Season:
  180. sm := main.(map[int64]*bangumi.Season)
  181. s, ok := sm[op.ID]
  182. if !ok {
  183. return
  184. }
  185. c.Base.from(s.EpisodeID, s.Cover, s.Title, model.GotoBangumi, s.EpisodeID, nil)
  186. c.CoverLeftText1 = model.StatString(s.PlayCount, "")
  187. c.CoverLeftIcon1 = model.IconPlay
  188. c.CoverLeftText2 = model.StatString(s.Favorites, "")
  189. c.CoverLeftIcon2 = model.BangumiIcon(s.SeasonType)
  190. c.Badge = s.TypeBadge
  191. c.Subtitle = s.UpdateDesc
  192. case map[int32]*season.CardInfoProto:
  193. sm := main.(map[int32]*season.CardInfoProto)
  194. s, ok := sm[int32(op.ID)]
  195. if !ok {
  196. return
  197. }
  198. c.Base.from(op.Param, s.Cover, s.Title, model.GotoPGC, op.URI, nil)
  199. c.CoverLeftText1 = model.StatString(int32(s.Stat.View), "")
  200. c.CoverLeftIcon1 = model.IconPlay
  201. if s.Stat != nil {
  202. c.CoverLeftText2 = model.StatString(int32(s.Stat.Follow), "")
  203. }
  204. c.CoverLeftIcon2 = model.BangumiIcon(int8(s.SeasonType))
  205. c.Badge = s.SeasonTypeName
  206. if s.NewEp != nil {
  207. c.Subtitle = s.NewEp.IndexShow
  208. }
  209. case map[int32]*episodegrpc.EpisodeCardsProto:
  210. sm := main.(map[int32]*episodegrpc.EpisodeCardsProto)
  211. s, ok := sm[int32(op.ID)]
  212. if !ok {
  213. return
  214. }
  215. title := s.Season.Title + ":" + s.ShowTitle
  216. c.Base.from(op.Param, s.Cover, title, model.GotoBangumi, op.URI, nil)
  217. c.Goto = model.GotoPGC
  218. c.CoverLeftText1 = model.StatString(int32(s.Season.Stat.View), "")
  219. c.CoverLeftIcon1 = model.IconPlay
  220. if s.Season.Stat != nil {
  221. c.CoverLeftText2 = model.StatString(int32(s.Season.Stat.Follow), "")
  222. }
  223. c.CoverLeftIcon2 = model.BangumiIcon(int8(s.Season.SeasonType))
  224. c.Badge = s.Season.SeasonTypeName
  225. if s.Season != nil {
  226. c.Subtitle = s.Season.NewEpShow
  227. }
  228. case map[int64]*live.Room:
  229. rm := main.(map[int64]*live.Room)
  230. r, ok := rm[op.ID]
  231. if !ok || r.LiveStatus != 1 {
  232. return
  233. }
  234. c.Base.from(op.Param, r.Cover, r.Title, model.GotoLive, strconv.FormatInt(r.RoomID, 10), model.LiveRoomHandler(r))
  235. c.CoverLeftText1 = model.StatString(r.Online, "")
  236. c.CoverLeftIcon1 = model.IconOnline
  237. c.CoverRightText = r.Uname
  238. c.Badge = "直播"
  239. c.Base.PlayerArgs = playerArgsFrom(r)
  240. c.Args.fromLiveRoom(r)
  241. if c.Rcmd != nil && (c.Rcmd.RcmdReason != nil || c.IsAttenm[r.UID] == 1) {
  242. c.RcmdReason, c.Desc = rcmdReason(c.Rcmd.RcmdReason, "", c.IsAttenm[r.UID], c.Cardm)
  243. c.RcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.RcmdReason, c.Base.Goto)
  244. } else {
  245. button = r
  246. }
  247. upID = r.UID
  248. c.CanPlay = 1
  249. case map[int64]*show.Shopping:
  250. sm := main.(map[int64]*show.Shopping)
  251. s, ok := sm[op.ID]
  252. if !ok {
  253. return
  254. }
  255. c.Base.from(op.Param, model.ShoppingCover(s.PerformanceImage), s.Name, model.GotoWeb, s.URL, nil)
  256. if s.Type == 1 {
  257. c.CoverLeftText1 = model.ShoppingDuration(s.STime, s.ETime)
  258. c.CoverRightText = s.CityName
  259. c.CoverRightIcon = model.IconLocation
  260. if len(s.Tags) != 0 {
  261. c.Desc = s.Tags[0].TagName
  262. }
  263. } else if s.Type == 2 {
  264. c.CoverLeftText1 = s.Want
  265. c.Desc = s.Subname
  266. }
  267. c.Badge = "会员购"
  268. c.Args.fromShopping(s)
  269. case map[int64]*audio.Audio:
  270. am := main.(map[int64]*audio.Audio)
  271. a, ok := am[op.ID]
  272. if !ok {
  273. return
  274. }
  275. c.Base.from(op.Param, a.CoverURL, a.Title, model.GotoAudio, strconv.FormatInt(a.MenuID, 10), nil)
  276. c.CoverBlur = model.BlurYes
  277. c.CoverLeftText1 = model.StatString(a.PlayNum, "")
  278. c.CoverLeftIcon1 = model.IconHeadphone
  279. c.CoverRightText = model.AudioTotalStirng(a.RecordNum)
  280. c.Badge = model.AudioBadgeString(a.Type)
  281. button = a.Ctgs
  282. c.Args.fromAudio(a)
  283. case map[int64]*article.Meta:
  284. mm := main.(map[int64]*article.Meta)
  285. m, ok := mm[op.ID]
  286. if !ok {
  287. return
  288. }
  289. if len(m.ImageURLs) == 0 {
  290. return
  291. }
  292. c.Base.from(op.Param, m.ImageURLs[0], m.Title, model.GotoArticle, strconv.FormatInt(m.ID, 10), nil)
  293. if m.Stats != nil {
  294. c.CoverLeftText1 = model.StatString(int32(m.Stats.View), "")
  295. c.CoverLeftIcon1 = model.IconRead
  296. c.CoverLeftText2 = model.StatString(int32(m.Stats.Reply), "")
  297. c.CoverLeftIcon2 = model.IconComment
  298. }
  299. button = m.Categories
  300. c.Badge = "文章"
  301. c.Args.fromArticle(m)
  302. case map[int64]*bplus.Picture:
  303. pm := main.(map[int64]*bplus.Picture)
  304. p, ok := pm[op.ID]
  305. if !ok || len(p.Imgs) == 0 || p.ViewCount == 0 {
  306. return
  307. }
  308. c.Base.from(op.Param, p.Imgs[0], p.DynamicText, model.GotoPicture, strconv.FormatInt(p.DynamicID, 10), nil)
  309. c.CoverLeftText1 = model.StatString(int32(p.ViewCount), "")
  310. c.CoverLeftIcon1 = model.IconRead
  311. if p.ImgCount > 1 {
  312. c.CoverRightText = model.PictureCountString(p.ImgCount)
  313. c.CoverRightBackgroundColor = "#66666666"
  314. }
  315. if c.Rcmd != nil && c.Rcmd.RcmdReason != nil {
  316. c.RcmdReason, _ = rcmdReason(c.Rcmd.RcmdReason, p.NickName, c.IsAttenm[p.Mid], c.Cardm)
  317. c.RcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.RcmdReason, c.Base.Goto)
  318. } else {
  319. button = p
  320. c.Badge = "动态"
  321. }
  322. case *cm.AdInfo:
  323. ad := main.(*cm.AdInfo)
  324. c.AdInfo = ad
  325. case *bangumi.Moe:
  326. m := main.(*bangumi.Moe)
  327. if m == nil {
  328. return
  329. }
  330. c.Base.from(strconv.FormatInt(m.ID, 10), m.Square, m.Title, model.GotoWeb, m.Link, nil)
  331. c.Desc = m.Desc
  332. c.Badge = m.Badge
  333. case nil:
  334. if op == nil {
  335. return
  336. }
  337. c.Base.from(op.Param, op.Coverm[c.Columnm], op.Title, op.Goto, op.URI, nil)
  338. switch op.CardGoto {
  339. case model.CardGotoDownload:
  340. c.CoverLeftText1 = model.DownloadString(op.Download)
  341. avatar = &AvatarStatus{Cover: op.Avatar, Goto: op.Goto, Param: op.URI, Type: model.AvatarSquare}
  342. c.Desc = op.Desc
  343. case model.CardGotoSpecial:
  344. c.Desc = op.Desc
  345. c.Badge = op.Badge
  346. default:
  347. log.Warn("SmallCoverV2 From: unexpected card_goto %s", op.CardGoto)
  348. return
  349. }
  350. default:
  351. log.Warn("SmallCoverV2 From: unexpected type %T", main)
  352. return
  353. }
  354. c.OfficialIcon = model.OfficialIcon(c.Cardm[upID])
  355. c.Avatar = avatarFrom(avatar)
  356. c.DescButton = buttonFrom(button, op.Plat)
  357. c.Right = true
  358. }
  359. func (c *SmallCoverV2) Get() *Base {
  360. return c.Base
  361. }
  362. type SmallCoverV3 struct {
  363. *Base
  364. Avatar *Avatar `json:"avatar,omitempty"`
  365. CoverLeftText string `json:"cover_left_text,omitempty"`
  366. CoverRightButton *Button `json:"cover_right_button,omitempty"`
  367. RcmdReason string `json:"rcmd_reason,omitempty"`
  368. Desc string `json:"desc,omitempty"`
  369. DescButton *Button `json:"desc_button,omitempty"`
  370. OfficialIcon model.Icon `json:"official_icon,omitempty"`
  371. CanPlay int32 `json:"can_play,omitempty"`
  372. RcmdReasonStyle *ReasonStyle `json:"rcmd_reason_style,omitempty"`
  373. }
  374. func (c *SmallCoverV3) From(main interface{}, op *operate.Card) {
  375. if op == nil {
  376. return
  377. }
  378. var (
  379. button interface{}
  380. descButton interface{}
  381. )
  382. switch main.(type) {
  383. case map[int64]*archive.ArchiveWithPlayer:
  384. am := main.(map[int64]*archive.ArchiveWithPlayer)
  385. a, ok := am[op.ID]
  386. if !ok || !model.AvIsNormal(a) {
  387. return
  388. }
  389. c.Base.from(op.Param, a.Pic, a.Title, model.GotoAv, op.URI, model.AvPlayHandler(a.Archive3, a.PlayerInfo, op.TrackID))
  390. switch op.CardGoto {
  391. case model.CardGotoUpRcmdAv:
  392. c.Avatar = avatarFrom(&AvatarStatus{Cover: a.Author.Face, Goto: model.GotoMid, Param: strconv.FormatInt(a.Author.Mid, 10), Type: model.AvatarRound})
  393. c.CoverLeftText = a.Author.Name
  394. if c.Rcmd != nil && c.Rcmd.RcmdReason != nil {
  395. c.RcmdReason, _ = rcmdReason(c.Rcmd.RcmdReason, "", c.IsAttenm[a.Author.Mid], c.Cardm)
  396. c.RcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.RcmdReason, c.Base.Goto)
  397. } else {
  398. descButton = c.Tagm[op.Tid]
  399. }
  400. button = &ButtonStatus{Goto: model.GotoMid, Param: strconv.FormatInt(a.Author.Mid, 10), IsAtten: c.IsAttenm[a.Author.Mid]}
  401. c.Base.PlayerArgs = playerArgsFrom(a.Archive3)
  402. c.Args.fromArchive(a.Archive3, c.Tagm[op.Tid])
  403. case model.CardGotoChannelRcmd:
  404. t, ok := c.Tagm[op.Tid]
  405. if !ok {
  406. return
  407. }
  408. c.Avatar = avatarFrom(&AvatarStatus{Cover: t.Cover, Goto: model.GotoTag, Param: strconv.FormatInt(t.ID, 10), Type: model.AvatarSquare})
  409. c.CoverLeftText = t.Name
  410. c.Desc = model.SubscribeString(int32(t.Count.Atten))
  411. button = &ButtonStatus{Goto: model.GotoTag, Param: strconv.FormatInt(t.ID, 10), IsAtten: t.IsAtten}
  412. c.Base.PlayerArgs = playerArgsFrom(a.Archive3)
  413. c.Args.fromArchive(a.Archive3, c.Tagm[op.Tid])
  414. default:
  415. log.Warn("SmallCoverV3 From: unexpected card_goto %s", op.CardGoto)
  416. return
  417. }
  418. c.CanPlay = a.Rights.Autoplay
  419. default:
  420. log.Warn("SmallCoverV3 From: unexpected type %T", main)
  421. return
  422. }
  423. c.CoverRightButton = buttonFrom(button, op.Plat)
  424. c.DescButton = buttonFrom(descButton, op.Plat)
  425. c.Right = true
  426. }
  427. func (c *SmallCoverV3) Get() *Base {
  428. return c.Base
  429. }
  430. type MiddleCoverV2 struct {
  431. *Base
  432. Ratio int `json:"ratio,omitempty"`
  433. Desc string `json:"desc,omitempty"`
  434. Badge string `json:"badge,omitempty"`
  435. }
  436. func (c *MiddleCoverV2) Get() *Base {
  437. return c.Base
  438. }
  439. type LargeCoverV2 struct {
  440. *Base
  441. Avatar *Avatar `json:"avatar,omitempty"`
  442. Badge string `json:"badge,omitempty"`
  443. CoverRightButton *Button `json:"cover_right_button,omitempty"`
  444. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  445. CoverLeftIcon1 model.Icon `json:"cover_left_icon_1,omitempty"`
  446. CoverLeftText2 string `json:"cover_left_text_2,omitempty"`
  447. CoverLeftIcon2 model.Icon `json:"cover_left_icon_2,omitempty"`
  448. RcmdReason string `json:"rcmd_reason,omitempty"`
  449. DescButton *Button `json:"desc_button,omitempty"`
  450. OfficialIcon model.Icon `json:"official_icon,omitempty"`
  451. CanPlay int32 `json:"can_play,omitempty"`
  452. RcmdReasonStyle *ReasonStyle `json:"rcmd_reason_style,omitempty"`
  453. }
  454. func (c *LargeCoverV2) From(main interface{}, op *operate.Card) {
  455. if op == nil {
  456. return
  457. }
  458. var (
  459. button interface{}
  460. coverButton interface{}
  461. upID int64
  462. )
  463. switch main.(type) {
  464. case map[int64]*archive.ArchiveWithPlayer:
  465. am := main.(map[int64]*archive.ArchiveWithPlayer)
  466. a, ok := am[op.ID]
  467. if !ok || !model.AvIsNormal(a) {
  468. return
  469. }
  470. c.Base.from(op.Param, a.Pic, a.Title, model.GotoAv, op.URI, model.AvPlayHandler(a.Archive3, a.PlayerInfo, op.TrackID))
  471. c.Avatar = avatarFrom(&AvatarStatus{Cover: a.Author.Face, Text: a.Author.Name, Goto: model.GotoMid, Param: strconv.FormatInt(a.Author.Mid, 10), Type: model.AvatarRound})
  472. c.CoverLeftText1 = model.StatString(a.Stat.View, "")
  473. c.CoverLeftIcon1 = model.IconPlay
  474. c.CoverLeftText2 = model.StatString(a.Stat.Danmaku, "")
  475. c.CoverLeftIcon2 = model.IconDanmaku
  476. if op.SwitchLike == model.SwitchFeedIndexLike {
  477. c.CoverLeftText1 = model.StatString(a.Stat.Like, "")
  478. c.CoverLeftIcon1 = model.IconLike
  479. c.CoverLeftText2 = model.StatString(a.Stat.View, "")
  480. c.CoverLeftIcon2 = model.IconPlay
  481. }
  482. coverButton = &ButtonStatus{Goto: model.GotoMid, Param: strconv.FormatInt(a.Author.Mid, 10), IsAtten: c.IsAttenm[a.Author.Mid]}
  483. if c.Rcmd != nil && c.Rcmd.RcmdReason != nil {
  484. c.RcmdReason, _ = rcmdReason(c.Rcmd.RcmdReason, "", c.IsAttenm[a.Author.Mid], c.Cardm)
  485. c.RcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.RcmdReason, c.Base.Goto)
  486. } else if t, ok := c.Tagm[op.Tid]; ok {
  487. tag := &tag.Tag{}
  488. *tag = *t
  489. tag.Name = a.TypeName + " · " + tag.Name
  490. button = tag
  491. } else {
  492. button = &ButtonStatus{Text: a.TypeName}
  493. }
  494. c.CanPlay = a.Rights.Autoplay
  495. c.Base.PlayerArgs = playerArgsFrom(a.Archive3)
  496. if op.CardGoto == model.CardGotoPlayer && c.Base.PlayerArgs == nil {
  497. log.Warn("player card aid(%d) can't auto player", a.Aid)
  498. return
  499. }
  500. c.Args.fromArchive(a.Archive3, c.Tagm[op.Tid])
  501. upID = a.Author.Mid
  502. case map[int64]*live.Room:
  503. rm := main.(map[int64]*live.Room)
  504. r, ok := rm[op.ID]
  505. if !ok || r.LiveStatus != 1 {
  506. return
  507. }
  508. c.Base.from(op.Param, r.Cover, r.Title, model.GotoLive, op.URI, model.LiveRoomHandler(r))
  509. c.Avatar = avatarFrom(&AvatarStatus{Cover: r.Face, Text: r.Uname, Goto: model.GotoMid, Param: strconv.FormatInt(r.UID, 10), Type: model.AvatarRound})
  510. c.CoverLeftText1 = model.StatString(r.Online, "")
  511. c.CoverLeftIcon1 = model.IconOnline
  512. coverButton = &ButtonStatus{Goto: model.GotoMid, Param: strconv.FormatInt(r.UID, 10), IsAtten: c.IsAttenm[r.UID]}
  513. if c.Rcmd != nil && (c.Rcmd.RcmdReason != nil || c.IsAttenm[r.UID] == 1) {
  514. c.RcmdReason, _ = rcmdReason(c.Rcmd.RcmdReason, r.Uname, c.IsAttenm[r.UID], c.Cardm)
  515. c.RcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.RcmdReason, c.Base.Goto)
  516. } else {
  517. button = r
  518. }
  519. c.Badge = "直播"
  520. c.CanPlay = 1
  521. c.Base.PlayerArgs = playerArgsFrom(r)
  522. c.Args.fromLiveRoom(r)
  523. upID = r.UID
  524. default:
  525. log.Warn("MiddleCoverV2 From: unexpected type %T", main)
  526. return
  527. }
  528. c.DescButton = buttonFrom(button, op.Plat)
  529. c.CoverRightButton = buttonFrom(coverButton, op.Plat)
  530. c.OfficialIcon = model.OfficialIcon(c.Cardm[upID])
  531. c.Right = true
  532. }
  533. func (c *LargeCoverV2) Get() *Base {
  534. return c.Base
  535. }
  536. type ThreeItemV2 struct {
  537. *Base
  538. TitleIcon model.Icon `json:"title_icon,omitempty"`
  539. MoreURI string `json:"more_uri,omitempty"`
  540. MoreText string `json:"more_text,omitempty"`
  541. Items []*ThreeItemV2Item `json:"items,omitempty"`
  542. }
  543. type ThreeItemV2Item struct {
  544. Base
  545. CoverLeftIcon model.Icon `json:"cover_left_icon,omitempty"`
  546. DescText1 string `json:"desc_text_1,omitempty"`
  547. DescIcon1 model.Icon `json:"desc_icon_1,omitempty"`
  548. DescText2 string `json:"desc_text_2,omitempty"`
  549. DescIcon2 model.Icon `json:"desc_icon_2,omitempty"`
  550. Badge string `json:"badge,omitempty"`
  551. }
  552. func (c *ThreeItemV2) From(main interface{}, op *operate.Card) {
  553. switch main.(type) {
  554. case map[model.Gt]interface{}:
  555. intfcm := main.(map[model.Gt]interface{})
  556. if op == nil {
  557. return
  558. }
  559. switch op.CardGoto {
  560. case model.CardGotoRank:
  561. const (
  562. _title = "全站排行榜"
  563. _limit = 3
  564. )
  565. c.Base.from("0", "", _title, "", "", nil)
  566. c.TitleIcon = model.IconRank
  567. c.MoreURI = model.FillURI(op.Goto, op.URI, nil)
  568. c.MoreText = "查看更多"
  569. c.Items = make([]*ThreeItemV2Item, 0, _limit)
  570. for _, v := range op.Items {
  571. if v == nil {
  572. continue
  573. }
  574. intfc, ok := intfcm[v.Goto]
  575. if !ok {
  576. continue
  577. }
  578. var item *ThreeItemV2Item
  579. switch intfc.(type) {
  580. case map[int64]*archive.ArchiveWithPlayer:
  581. am := intfc.(map[int64]*archive.ArchiveWithPlayer)
  582. a, ok := am[v.ID]
  583. if !ok || !model.AvIsNormal(a) {
  584. continue
  585. }
  586. item = &ThreeItemV2Item{
  587. DescText1: model.ScoreString(v.Score),
  588. }
  589. item.Base.from(v.Param, a.Pic, a.Title, model.GotoAv, v.URI, model.AvPlayHandler(a.Archive3, a.PlayerInfo, op.TrackID))
  590. item.Args.fromArchive(a.Archive3, nil)
  591. default:
  592. log.Warn("ThreeItemV2 From: unexpected type %T", intfc)
  593. continue
  594. }
  595. c.Items = append(c.Items, item)
  596. if len(c.Items) == _limit {
  597. break
  598. }
  599. }
  600. if len(c.Items) < _limit {
  601. return
  602. }
  603. c.Items[0].CoverLeftIcon = model.IconGoldMedal
  604. c.Items[1].CoverLeftIcon = model.IconSilverMedal
  605. c.Items[2].CoverLeftIcon = model.IconBronzeMedal
  606. case model.CardGotoConverge:
  607. limit := 3
  608. if op.Coverm[c.Columnm] != "" {
  609. limit = 2
  610. }
  611. c.Base.from(op.Param, op.Coverm[c.Columnm], op.Title, op.Goto, op.URI, nil)
  612. c.MoreURI = model.FillURI(model.GotoConverge, op.Param, nil)
  613. c.MoreText = "查看更多"
  614. c.Items = make([]*ThreeItemV2Item, 0, len(op.Items))
  615. for _, v := range op.Items {
  616. if v == nil {
  617. continue
  618. }
  619. intfc, ok := intfcm[v.Goto]
  620. if !ok {
  621. continue
  622. }
  623. var item *ThreeItemV2Item
  624. switch intfc.(type) {
  625. case map[int64]*archive.ArchiveWithPlayer:
  626. am := intfc.(map[int64]*archive.ArchiveWithPlayer)
  627. a, ok := am[v.ID]
  628. if !ok || !model.AvIsNormal(a) {
  629. continue
  630. }
  631. item = &ThreeItemV2Item{
  632. DescText1: model.StatString(a.Stat.View, ""),
  633. DescIcon1: model.IconPlay,
  634. DescText2: model.StatString(a.Stat.Danmaku, ""),
  635. DescIcon2: model.IconDanmaku,
  636. }
  637. if op.SwitchLike == model.SwitchFeedIndexLike {
  638. item.DescText1 = model.StatString(a.Stat.Like, "")
  639. item.DescIcon1 = model.IconLike
  640. item.DescText2 = model.StatString(a.Stat.View, "")
  641. item.DescIcon2 = model.IconPlay
  642. }
  643. item.Base.from(v.Param, a.Pic, a.Title, model.GotoAv, v.URI, model.AvPlayHandler(a.Archive3, a.PlayerInfo, op.TrackID))
  644. item.Args.fromArchive(a.Archive3, nil)
  645. case map[int64]*live.Room:
  646. rm := intfc.(map[int64]*live.Room)
  647. r, ok := rm[v.ID]
  648. if !ok || r.LiveStatus != 1 {
  649. continue
  650. }
  651. item = &ThreeItemV2Item{
  652. DescText1: model.StatString(r.Online, ""),
  653. DescIcon1: model.IconOnline,
  654. Badge: "直播",
  655. }
  656. item.Base.from(v.Param, r.Cover, r.Title, model.GotoLive, v.URI, model.LiveRoomHandler(r))
  657. item.Args.fromLiveRoom(r)
  658. case map[int64]*article.Meta:
  659. mm := intfc.(map[int64]*article.Meta)
  660. m, ok := mm[v.ID]
  661. if !ok {
  662. continue
  663. }
  664. if len(m.ImageURLs) == 0 {
  665. continue
  666. }
  667. item = &ThreeItemV2Item{
  668. Badge: "文章",
  669. }
  670. item.Base.from(v.Param, m.ImageURLs[0], m.Title, model.GotoArticle, v.URI, nil)
  671. if m.Stats != nil {
  672. item.DescText1 = model.StatString(int32(m.Stats.View), "")
  673. item.DescIcon1 = model.IconRead
  674. item.DescText2 = model.StatString(int32(m.Stats.Reply), "")
  675. item.DescIcon2 = model.IconComment
  676. }
  677. item.Args.fromArticle(m)
  678. default:
  679. log.Warn("ThreeItemV2 From: unexpected type %T", intfc)
  680. continue
  681. }
  682. c.Items = append(c.Items, item)
  683. if len(c.Items) == limit {
  684. break
  685. }
  686. }
  687. if len(c.Items) < limit {
  688. return
  689. }
  690. default:
  691. log.Warn("ThreeItemV2 From: unexpected card_goto %s", op.CardGoto)
  692. return
  693. }
  694. default:
  695. log.Warn("ThreeItemV2 From: unexpected type %T", main)
  696. return
  697. }
  698. c.Right = true
  699. }
  700. func (c *ThreeItemV2) Get() *Base {
  701. return c.Base
  702. }
  703. type SmallCoverV4 struct {
  704. *Base
  705. CoverBadge string `json:"cover_badge,omitempty"`
  706. Desc string `json:"desc,omitempty"`
  707. TitleRightText string `json:"title_right_text,omitempty"`
  708. TitleRightPic model.Icon `json:"title_right_pic,omitempty"`
  709. }
  710. func (c *SmallCoverV4) From(main interface{}, op *operate.Card) {
  711. switch main.(type) {
  712. case *bangumi.Update:
  713. title := "你的追番更新啦"
  714. const (
  715. _updates = 99
  716. )
  717. u := main.(*bangumi.Update)
  718. if u == nil || u.Updates == 0 {
  719. return
  720. }
  721. emojim := map[string]struct{}{
  722. "(´∀`*)ウフフ": struct{}{},
  723. "ヾ( ・∀・)ノ": struct{}{},
  724. "(`・ω・´)ゞ": struct{}{},
  725. "(・∀・)イイ!!": struct{}{},
  726. }
  727. for emoji := range emojim {
  728. title = title + emoji
  729. break
  730. }
  731. c.Base.from("", u.SquareCover, title, "", "", nil)
  732. updates := u.Updates
  733. if updates > _updates {
  734. updates = _updates
  735. c.TitleRightPic = model.IconBomb
  736. } else {
  737. c.TitleRightPic = model.IconTV
  738. }
  739. c.Desc = u.Title
  740. c.TitleRightText = strconv.Itoa(updates)
  741. default:
  742. log.Warn("SmallCoverV4 From: unexpected type %T", main)
  743. return
  744. }
  745. c.Right = true
  746. }
  747. func (c *SmallCoverV4) Get() *Base {
  748. return c.Base
  749. }
  750. type TwoItemV2 struct {
  751. *Base
  752. Items []*TwoItemV2Item `json:"items,omitempty"`
  753. }
  754. type TwoItemV2Item struct {
  755. Base
  756. Badge string `json:"badge,omitempty"`
  757. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  758. CoverLeftIcon1 model.Icon `json:"cover_left_icon_1,omitempty"`
  759. DescButton *Button `json:"desc_button,omitempty"`
  760. }
  761. func (c *TwoItemV2) From(main interface{}, op *operate.Card) {
  762. if op == nil {
  763. return
  764. }
  765. switch main.(type) {
  766. case map[int64][]*live.Card:
  767. const _limit = 2
  768. csm := main.(map[int64][]*live.Card)
  769. cs, ok := csm[op.ID]
  770. if !ok {
  771. return
  772. }
  773. c.Base.from(op.Param, "", "", "", "", nil)
  774. c.Items = make([]*TwoItemV2Item, 0, _limit)
  775. for _, card := range cs {
  776. if card == nil || card.LiveStatus != 1 {
  777. continue
  778. }
  779. item := &TwoItemV2Item{
  780. Badge: "直播",
  781. CoverLeftText1: model.StatString(card.Online, ""),
  782. CoverLeftIcon1: model.IconOnline,
  783. }
  784. item.DescButton = buttonFrom(card, op.Plat)
  785. item.Base.from(strconv.FormatInt(card.RoomID, 10), card.ShowCover, card.Title, model.GotoLive, strconv.FormatInt(card.RoomID, 10), model.LiveUpHandler(card))
  786. item.Args.fromLiveUp(card)
  787. c.Items = append(c.Items, item)
  788. if len(c.Items) == _limit {
  789. break
  790. }
  791. }
  792. }
  793. c.Right = true
  794. }
  795. func (c *TwoItemV2) Get() *Base {
  796. return c.Base
  797. }
  798. type MultiItem struct {
  799. *Base
  800. MoreURI string `json:"more_uri,omitempty"`
  801. MoreText string `json:"more_text,omitempty"`
  802. Items []Handler `json:"items,omitempty"`
  803. }
  804. func (c *MultiItem) From(main interface{}, op *operate.Card) {
  805. if op == nil {
  806. return
  807. }
  808. switch main.(type) {
  809. case map[model.Gt]interface{}:
  810. intfcm := main.(map[model.Gt]interface{})
  811. switch op.CardGoto {
  812. case model.CardGotoTagRcmd, model.CardGotoContentRcmd:
  813. items := make([]Handler, 0, len(op.Items))
  814. for _, v := range op.Items {
  815. if v == nil {
  816. continue
  817. }
  818. intfc, ok := intfcm[v.Goto]
  819. if !ok {
  820. continue
  821. }
  822. var hander Handler
  823. switch intfc.(type) {
  824. case map[int64]*archive.ArchiveWithPlayer:
  825. am := intfc.(map[int64]*archive.ArchiveWithPlayer)
  826. a, ok := am[v.ID]
  827. if !ok || !model.AvIsNormal(a) {
  828. continue
  829. }
  830. item := &SmallCoverV2{
  831. CoverLeftText1: model.StatString(a.Stat.View, ""),
  832. CoverLeftIcon1: model.IconPlay,
  833. CoverLeftText2: model.StatString(a.Stat.Danmaku, ""),
  834. CoverLeftIcon2: model.IconDanmaku,
  835. CoverRightText: model.DurationString(a.Duration),
  836. Base: &Base{CardType: model.SmallCoverV2},
  837. }
  838. if op.SwitchLike == model.SwitchFeedIndexLike {
  839. item.CoverLeftText1 = model.StatString(a.Stat.Like, "")
  840. item.CoverLeftIcon1 = model.IconLike
  841. item.CoverLeftText2 = model.StatString(a.Stat.View, "")
  842. item.CoverLeftIcon2 = model.IconPlay
  843. }
  844. item.Base.from(v.Param, a.Pic, a.Title, model.GotoAv, strconv.FormatInt(a.Aid, 10), model.AvPlayHandler(a.Archive3, a.PlayerInfo, op.TrackID))
  845. item.Args.fromArchive(a.Archive3, nil)
  846. if op.Switch == model.SwitchFeedIndexTabThreePoint {
  847. item.TabThreePointWatchLater()
  848. }
  849. item.DescButton = buttonFrom(&ButtonStatus{Text: a.TypeName}, op.Plat)
  850. hander = item
  851. case map[int64]*live.Room:
  852. rm := intfc.(map[int64]*live.Room)
  853. r, ok := rm[v.ID]
  854. if !ok || r.LiveStatus != 1 {
  855. continue
  856. }
  857. item := &SmallCoverV2{
  858. CoverLeftText1: model.StatString(r.Online, ""),
  859. CoverLeftIcon1: model.IconOnline,
  860. Badge: "直播",
  861. Base: &Base{CardType: model.SmallCoverV2},
  862. }
  863. item.Base.from(v.Param, r.Cover, r.Title, model.GotoLive, strconv.FormatInt(r.RoomID, 10), model.LiveRoomHandler(r))
  864. item.Args.fromLiveRoom(r)
  865. item.DescButton = buttonFrom(r, op.Plat)
  866. hander = item
  867. case map[int64]*article.Meta:
  868. mm := intfc.(map[int64]*article.Meta)
  869. m, ok := mm[v.ID]
  870. if !ok {
  871. continue
  872. }
  873. if len(m.ImageURLs) == 0 {
  874. continue
  875. }
  876. item := &SmallCoverV2{
  877. Badge: "文章",
  878. Base: &Base{CardType: model.SmallCoverV2},
  879. }
  880. item.Base.from(v.Param, m.ImageURLs[0], m.Title, model.GotoArticle, strconv.FormatInt(m.ID, 10), nil)
  881. if m.Stats != nil {
  882. item.CoverLeftText1 = model.StatString(int32(m.Stats.View), "")
  883. item.CoverLeftIcon1 = model.IconRead
  884. item.CoverLeftText2 = model.StatString(int32(m.Stats.Reply), "")
  885. item.CoverLeftIcon2 = model.IconComment
  886. }
  887. item.Args.fromArticle(m)
  888. item.DescButton = buttonFrom(m.Categories, op.Plat)
  889. hander = item
  890. case map[int64]*operate.Card:
  891. dm := intfc.(map[int64]*operate.Card)
  892. d, ok := dm[v.ID]
  893. if !ok {
  894. continue
  895. }
  896. item := &SmallCoverV2{
  897. CoverLeftText1: model.DownloadString(d.Download),
  898. Base: &Base{CardType: model.SmallCoverV2},
  899. }
  900. item.Base.from(v.Param, d.Coverm[c.Columnm], d.Title, d.Goto, d.URI, nil)
  901. hander = item
  902. case map[int64]*bangumi.Season:
  903. sm := intfc.(map[int64]*bangumi.Season)
  904. s, ok := sm[v.ID]
  905. if !ok {
  906. continue
  907. }
  908. item := &SmallCoverV2{
  909. CoverLeftText1: model.StatString(s.PlayCount, ""),
  910. CoverLeftIcon1: model.IconPlay,
  911. CoverLeftText2: model.StatString(s.Favorites, ""),
  912. CoverLeftIcon2: model.BangumiIcon(s.SeasonType),
  913. Badge: s.TypeBadge,
  914. Desc: s.UpdateDesc,
  915. Base: &Base{CardType: model.SmallCoverV2},
  916. }
  917. item.Base.from(s.EpisodeID, s.Cover, s.Title, model.GotoBangumi, s.EpisodeID, nil)
  918. hander = item
  919. case map[int64]*bplus.Picture:
  920. pm := intfc.(map[int64]*bplus.Picture)
  921. p, ok := pm[v.ID]
  922. if !ok {
  923. continue
  924. }
  925. if len(p.Imgs) < 3 {
  926. hander = &OnePicV2{Base: &Base{CardType: model.OnePicV2}}
  927. } else {
  928. hander = &ThreePicV2{Base: &Base{CardType: model.ThreePicV2}}
  929. }
  930. hander.From(pm, v)
  931. if !hander.Get().Right {
  932. continue
  933. }
  934. default:
  935. log.Warn("MultiItem From: unexpected type %T", intfc)
  936. continue
  937. }
  938. if hander != nil {
  939. items = append(items, hander)
  940. }
  941. }
  942. if len(items) < 2 {
  943. return
  944. }
  945. if len(items)%2 != 0 {
  946. c.Items = items[:len(items)-1]
  947. } else {
  948. c.Items = items
  949. }
  950. var title string
  951. switch op.Goto {
  952. case model.GotoTag:
  953. if t, ok := c.Tagm[op.ID]; ok {
  954. title = t.Name
  955. }
  956. default:
  957. title = op.Title
  958. }
  959. c.Base.from(op.Param, "", title, "", "", nil)
  960. c.MoreURI = model.FillURI(op.Goto, op.URI, nil)
  961. c.MoreText = op.Subtitle
  962. default:
  963. log.Warn("MultiItem From: unexpected card_goto %s", op.CardGoto)
  964. return
  965. }
  966. case nil:
  967. switch op.CardGoto {
  968. case model.CardGotoEntrance:
  969. c.Items = make([]Handler, 0, len(op.Items))
  970. for _, v := range op.Items {
  971. item := &SmallCoverV2{Base: &Base{CardType: model.SmallCoverV2}}
  972. item.Base.from(v.Param, v.Cover, v.Title, v.Goto, v.URI, nil)
  973. c.Items = append(c.Items, item)
  974. }
  975. }
  976. default:
  977. log.Warn("MultiItem From: unexpected type %T", main)
  978. return
  979. }
  980. c.Right = true
  981. }
  982. func (c *MultiItem) Get() *Base {
  983. return c.Base
  984. }
  985. type ThreePicV2 struct {
  986. *Base
  987. LeftCover string `json:"left_cover,omitempty"`
  988. RightCover1 string `json:"right_cover_1,omitempty"`
  989. RightCover2 string `json:"right_cover_2,omitempty"`
  990. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  991. CoverLeftIcon1 model.Icon `json:"cover_left_icon_1,omitempty"`
  992. CoverLeftText2 string `json:"cover_left_text_2,omitempty"`
  993. CoverLeftIcon2 model.Icon `json:"cover_left_icon_2,omitempty"`
  994. CoverRightText string `json:"cover_right_text,omitempty"`
  995. CoverRightIcon model.Icon `json:"cover_right_icon,omitempty"`
  996. CoverRightBackgroundColor string `json:"cover_right_background_color,omitempty"`
  997. Badge string `json:"badge,omitempty"`
  998. RcmdReason string `json:"rcmd_reason,omitempty"`
  999. DescButton *Button `json:"desc_button,omitempty"`
  1000. Desc string `json:"desc,omitempty"`
  1001. Avatar *Avatar `json:"avatar,omitempty"`
  1002. RcmdReasonStyle *ReasonStyle `json:"rcmd_reason_style,omitempty"`
  1003. }
  1004. func (c *ThreePicV2) From(main interface{}, op *operate.Card) {
  1005. var (
  1006. button interface{}
  1007. )
  1008. if op == nil {
  1009. return
  1010. }
  1011. switch main.(type) {
  1012. case map[int64]*bplus.Picture:
  1013. pm := main.(map[int64]*bplus.Picture)
  1014. p, ok := pm[op.ID]
  1015. if !ok || len(p.Imgs) < 3 || p.ViewCount == 0 {
  1016. return
  1017. }
  1018. c.Base.from(op.Param, "", p.DynamicText, model.GotoPicture, strconv.FormatInt(p.DynamicID, 10), nil)
  1019. c.LeftCover = p.Imgs[0]
  1020. c.RightCover1 = p.Imgs[1]
  1021. c.RightCover2 = p.Imgs[2]
  1022. c.CoverLeftText1 = model.StatString(int32(p.ViewCount), "")
  1023. c.CoverLeftIcon1 = model.IconRead
  1024. if p.ImgCount > 3 {
  1025. c.CoverRightText = model.PictureCountString(p.ImgCount)
  1026. c.CoverRightBackgroundColor = "#66666666"
  1027. }
  1028. if c.Rcmd != nil && c.Rcmd.RcmdReason != nil {
  1029. c.RcmdReason, c.Desc = rcmdReason(c.Rcmd.RcmdReason, p.NickName, c.IsAttenm[p.Mid], c.Cardm)
  1030. c.RcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.RcmdReason, c.Base.Goto)
  1031. } else {
  1032. button = p
  1033. c.Badge = "动态"
  1034. }
  1035. c.Avatar = avatarFrom(&AvatarStatus{Cover: p.FaceImg, Text: p.NickName, Goto: model.GotoDynamicMid, Param: strconv.FormatInt(p.Mid, 10), Type: model.AvatarRound})
  1036. default:
  1037. log.Warn("ThreePicV2 From: unexpected type %T", main)
  1038. return
  1039. }
  1040. c.DescButton = buttonFrom(button, op.Plat)
  1041. c.Right = true
  1042. }
  1043. func (c *ThreePicV2) Get() *Base {
  1044. return c.Base
  1045. }
  1046. type OnePicV2 struct {
  1047. *Base
  1048. CoverLeftText1 string `json:"cover_left_text_1,omitempty"`
  1049. CoverLeftIcon1 model.Icon `json:"cover_left_icon_1,omitempty"`
  1050. CoverRightText string `json:"cover_right_text,omitempty"`
  1051. CoverRightIcon model.Icon `json:"cover_right_icon,omitempty"`
  1052. CoverRightBackgroundColor string `json:"cover_right_background_color,omitempty"`
  1053. Badge string `json:"badge,omitempty"`
  1054. RcmdReason string `json:"rcmd_reason,omitempty"`
  1055. Avatar *Avatar `json:"avatar,omitempty"`
  1056. RcmdReasonStyle *ReasonStyle `json:"rcmd_reason_style,omitempty"`
  1057. }
  1058. func (c *OnePicV2) From(main interface{}, op *operate.Card) {
  1059. var (
  1060. button interface{}
  1061. )
  1062. if op == nil {
  1063. return
  1064. }
  1065. switch main.(type) {
  1066. case map[int64]*bplus.Picture:
  1067. pm := main.(map[int64]*bplus.Picture)
  1068. p, ok := pm[op.ID]
  1069. if !ok || len(p.Imgs) == 0 || p.ViewCount == 0 {
  1070. return
  1071. }
  1072. c.Base.from(op.Param, p.Imgs[0], p.DynamicText, model.GotoPicture, strconv.FormatInt(p.DynamicID, 10), nil)
  1073. c.CoverLeftText1 = model.StatString(int32(p.ViewCount), "")
  1074. c.CoverLeftIcon1 = model.IconRead
  1075. if p.ImgCount > 1 {
  1076. c.CoverRightText = model.PictureCountString(p.ImgCount)
  1077. c.CoverRightBackgroundColor = "#66666666"
  1078. }
  1079. if c.Rcmd != nil && c.Rcmd.RcmdReason != nil {
  1080. c.RcmdReason, _ = rcmdReason(c.Rcmd.RcmdReason, p.NickName, c.IsAttenm[p.Mid], c.Cardm)
  1081. c.RcmdReasonStyle = topReasonStyleFrom(c.Rcmd, c.RcmdReason, c.Base.Goto)
  1082. } else {
  1083. button = p
  1084. c.Badge = "动态"
  1085. }
  1086. c.Avatar = avatarFrom(&AvatarStatus{Cover: p.FaceImg, Text: p.NickName, Goto: model.GotoDynamicMid, Param: strconv.FormatInt(p.Mid, 10), Type: model.AvatarRound})
  1087. default:
  1088. log.Warn("OnePicV2 From: unexpected type %T", main)
  1089. return
  1090. }
  1091. c.DescButton = buttonFrom(button, op.Plat)
  1092. c.Right = true
  1093. }
  1094. func (c *OnePicV2) Get() *Base {
  1095. return c.Base
  1096. }