card.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  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/cm"
  9. "go-common/app/interface/main/app-card/model/card/live"
  10. "go-common/app/interface/main/app-card/model/card/operate"
  11. "go-common/app/interface/main/app-card/model/card/show"
  12. tag "go-common/app/interface/main/tag/model"
  13. article "go-common/app/interface/openplatform/article/model"
  14. account "go-common/app/service/main/account/model"
  15. "go-common/app/service/main/archive/model/archive"
  16. relation "go-common/app/service/main/relation/model"
  17. "go-common/library/log"
  18. )
  19. // ButtonStatus is
  20. type ButtonStatus struct {
  21. Text string
  22. Goto model.Gt
  23. Param string
  24. IsAtten int8
  25. Type model.Type
  26. Event model.Event
  27. }
  28. // AvatarStatus is
  29. type AvatarStatus struct {
  30. Cover string
  31. Text string
  32. Goto model.Gt
  33. Param string
  34. Type model.Type
  35. }
  36. // Base is
  37. type Base struct {
  38. CardType model.CardType `json:"card_type,omitempty"`
  39. CardGoto model.CardGt `json:"card_goto,omitempty"`
  40. Goto model.Gt `json:"goto,omitempty"`
  41. Param string `json:"param,omitempty"`
  42. Cover string `json:"cover,omitempty"`
  43. Title string `json:"title,omitempty"`
  44. URI string `json:"uri,omitempty"`
  45. DescButton *Button `json:"desc_button,omitempty"`
  46. ThreePoint *ThreePoint `json:"three_point,omitempty"`
  47. Args Args `json:"args,omitempty"`
  48. PlayerArgs *PlayerArgs `json:"player_args,omitempty"`
  49. Idx int64 `json:"idx,omitempty"`
  50. AdInfo *cm.AdInfo `json:"ad_info,omitempty"`
  51. Right bool `json:"-"`
  52. Rcmd *ai.Item `json:"-"`
  53. Tagm map[int64]*tag.Tag `json:"-"`
  54. IsAttenm map[int64]int8 `json:"-"`
  55. Statm map[int64]*relation.Stat `json:"-"`
  56. Cardm map[int64]*account.Card `json:"-"`
  57. CardLen int `json:"-"`
  58. Columnm model.ColumnStatus `json:"-"`
  59. FromType string `json:"from_type,omitempty"`
  60. }
  61. // ThreePoint is
  62. type ThreePoint struct {
  63. DislikeReasons []*DislikeReason `json:"dislike_reasons,omitempty"`
  64. Feedbacks []*Feedback `json:"feedbacks,omitempty"`
  65. WatchLater int8 `json:"watch_later,omitempty"`
  66. }
  67. func (c *Base) from(param, cover, title string, gt model.Gt, uri string, f func(uri string) string) {
  68. c.URI = model.FillURI(gt, uri, f)
  69. c.Cover = cover
  70. c.Title = title
  71. if gt != "" {
  72. c.Goto = gt
  73. } else {
  74. c.Goto = model.Gt(c.CardGoto)
  75. }
  76. c.Param = param
  77. }
  78. // Handler is
  79. type Handler interface {
  80. From(main interface{}, op *operate.Card)
  81. Get() *Base
  82. }
  83. // Handle is
  84. func Handle(plat int8, cardGoto model.CardGt, cardType model.CardType, column model.ColumnStatus, rcmd *ai.Item, tagm map[int64]*tag.Tag, isAttenm map[int64]int8, statm map[int64]*relation.Stat, cardm map[int64]*account.Card) (hander Handler) {
  85. if model.IsIPad(plat) {
  86. return ipadHandle(cardGoto, cardType, rcmd, nil, isAttenm, statm, cardm)
  87. }
  88. switch model.Columnm[column] {
  89. case model.ColumnSvrSingle:
  90. return singleHandle(cardGoto, cardType, rcmd, tagm, isAttenm, statm, cardm)
  91. case model.ColumnSvrDouble:
  92. return doubleHandle(cardGoto, cardType, rcmd, tagm, isAttenm, statm, cardm)
  93. }
  94. return
  95. }
  96. // SwapTwoItem is
  97. func SwapTwoItem(rs []Handler, i Handler) (is []Handler) {
  98. is = append(rs, rs[len(rs)-1])
  99. is[len(is)-2] = i
  100. return
  101. }
  102. func SwapThreeItem(rs []Handler, i Handler) (is []Handler) {
  103. is = append(rs, rs[len(rs)-1])
  104. is[len(is)-2] = i
  105. is[len(is)-3], is[len(is)-2] = is[len(is)-2], is[len(is)-3]
  106. return
  107. }
  108. func SwapFourItem(rs []Handler, i Handler) (is []Handler) {
  109. is = append(rs, rs[len(rs)-1])
  110. is[len(is)-2] = i
  111. is[len(is)-3], is[len(is)-2] = is[len(is)-2], is[len(is)-3]
  112. is[len(is)-4], is[len(is)-3] = is[len(is)-3], is[len(is)-4]
  113. return
  114. }
  115. // TopBottomRcmdReason is
  116. func TopBottomRcmdReason(r *ai.RcmdReason, isAtten int8, cardm map[int64]*account.Card) (topRcmdReason, bottomRcomdReason string) {
  117. if r == nil {
  118. if isAtten == 1 {
  119. bottomRcomdReason = "已关注"
  120. }
  121. return
  122. }
  123. switch r.Style {
  124. case 3:
  125. if isAtten != 1 {
  126. return
  127. }
  128. bottomRcomdReason = r.Content
  129. case 4:
  130. _, ok := cardm[r.FollowedMid]
  131. if !ok {
  132. return
  133. }
  134. topRcmdReason = "关注的人赞过"
  135. default:
  136. topRcmdReason = r.Content
  137. }
  138. return
  139. }
  140. // Button is
  141. type Button struct {
  142. Text string `json:"text,omitempty"`
  143. Param string `json:"param,omitempty"`
  144. URI string `json:"uri,omitempty"`
  145. Event model.Event `json:"event,omitempty"`
  146. Selected int8 `json:"selected,omitempty"`
  147. Type model.Type `json:"type,omitempty"`
  148. }
  149. func buttonFrom(v interface{}, plat int8) (button *Button) {
  150. switch v.(type) {
  151. case *tag.Tag:
  152. t := v.(*tag.Tag)
  153. if t != nil {
  154. button = &Button{
  155. Type: model.ButtonGrey,
  156. Text: t.Name,
  157. URI: model.FillURI(model.GotoTag, strconv.FormatInt(t.ID, 10), nil),
  158. Event: model.EventChannelClick,
  159. }
  160. }
  161. case []*audio.Ctg:
  162. ctgs := v.([]*audio.Ctg)
  163. if len(ctgs) > 1 {
  164. var name string
  165. if ctgs[0] != nil {
  166. name = ctgs[0].ItemVal
  167. if ctgs[1] != nil {
  168. name += " · " + ctgs[1].ItemVal
  169. }
  170. }
  171. button = &Button{
  172. Type: model.ButtonGrey,
  173. Text: name,
  174. URI: model.FillURI(model.GotoAudioTag, "", model.AudioTagHandler(ctgs)),
  175. Event: model.EventChannelClick,
  176. }
  177. }
  178. case []*article.Category:
  179. ctgs := v.([]*article.Category)
  180. if len(ctgs) > 1 {
  181. var name string
  182. if ctgs[0] != nil {
  183. name = ctgs[0].Name
  184. if ctgs[1] != nil {
  185. name += " · " + ctgs[1].Name
  186. }
  187. }
  188. button = &Button{
  189. Type: model.ButtonGrey,
  190. Text: name,
  191. URI: model.FillURI(model.GotoArticleTag, "", model.ArticleTagHandler(ctgs, plat)),
  192. Event: model.EventChannelClick,
  193. }
  194. }
  195. case *live.Room:
  196. r := v.(*live.Room)
  197. if r != nil {
  198. button = &Button{
  199. Type: model.ButtonGrey,
  200. Text: r.AreaV2Name,
  201. URI: model.FillURI(model.GotoLiveTag, strconv.FormatInt(r.AreaV2ParentID, 10), model.LiveRoomTagHandler(r)),
  202. Event: model.EventChannelClick,
  203. }
  204. }
  205. case *live.Card:
  206. card := v.(*live.Card)
  207. if card != nil {
  208. button = &Button{
  209. Type: model.ButtonGrey,
  210. Text: card.Uname,
  211. URI: model.FillURI(model.GotoMid, strconv.FormatInt(card.UID, 10), nil),
  212. Event: model.EventUpClick,
  213. }
  214. }
  215. case *bplus.Picture:
  216. p := v.(*bplus.Picture)
  217. if p != nil {
  218. if len(p.Topics) == 0 {
  219. return
  220. }
  221. button = &Button{
  222. Type: model.ButtonGrey,
  223. Text: p.Topics[0],
  224. URI: model.FillURI(model.GotoPictureTag, p.Topics[0], nil),
  225. Event: model.EventChannelClick,
  226. }
  227. }
  228. case *ButtonStatus:
  229. b := v.(*ButtonStatus)
  230. if b != nil {
  231. event, ok := model.ButtonEvent[b.Goto]
  232. if ok {
  233. button = &Button{
  234. Text: model.ButtonText[b.Goto],
  235. Event: event,
  236. Selected: b.IsAtten,
  237. Type: model.ButtonTheme,
  238. }
  239. } else {
  240. button = &Button{
  241. Text: b.Text,
  242. Param: b.Param,
  243. URI: model.FillURI(b.Goto, b.Param, nil),
  244. }
  245. if b.Event != "" {
  246. button.Event = b.Event
  247. } else {
  248. button.Event = model.EventChannelClick
  249. }
  250. if b.Type != 0 {
  251. button.Type = b.Type
  252. } else {
  253. button.Type = model.ButtonGrey
  254. }
  255. }
  256. }
  257. case nil:
  258. default:
  259. log.Warn("buttonFrom: unexpected type %T", v)
  260. }
  261. return
  262. }
  263. // Avatar is
  264. type Avatar struct {
  265. Cover string `json:"cover,omitempty"`
  266. Text string `json:"text,omitempty"`
  267. URI string `json:"uri,omitempty"`
  268. Type model.Type `json:"type,omitempty"`
  269. Event model.Event `json:"event,omitempty"`
  270. }
  271. func avatarFrom(status *AvatarStatus) (avatar *Avatar) {
  272. if status == nil {
  273. return
  274. }
  275. avatar = &Avatar{
  276. Cover: status.Cover,
  277. Text: status.Text,
  278. URI: model.FillURI(status.Goto, status.Param, nil),
  279. Type: status.Type,
  280. Event: model.AvatarEvent[status.Goto],
  281. }
  282. return
  283. }
  284. // DislikeReason is
  285. type DislikeReason struct {
  286. ID int64 `json:"id,omitempty"`
  287. Name string `json:"name,omitempty"`
  288. }
  289. // Feedback is
  290. type Feedback struct {
  291. ID int64 `json:"id,omitempty"`
  292. Name string `json:"name,omitempty"`
  293. }
  294. // ThreePointFrom is
  295. func (c *Base) ThreePointFrom() {
  296. const (
  297. _noSeason = 1
  298. _region = 2
  299. _channel = 3
  300. _upper = 4
  301. )
  302. if c.CardGoto == model.CardGotoLogin || c.CardGoto == model.CardGotoBanner || c.CardGoto == model.CardGotoRank || c.CardGoto == model.CardGotoConverge || c.CardGoto == model.CardGotoBangumiRcmd || c.CardGoto == model.CardGotoInterest || c.CardGoto == model.CardGotoFollowMode {
  303. return
  304. }
  305. c.ThreePoint = &ThreePoint{}
  306. if c.CardGoto == model.CardGotoAv || c.CardGoto == model.CardGotoPlayer || c.CardGoto == model.CardGotoUpRcmdAv || c.CardGoto == model.CardGotoChannelRcmd {
  307. dislikeReasons := make([]*DislikeReason, 0, 4)
  308. if c.Args.UpName != "" {
  309. dislikeReasons = append(dislikeReasons, &DislikeReason{ID: _upper, Name: "UP主:" + c.Args.UpName})
  310. }
  311. if c.Args.Rname != "" {
  312. dislikeReasons = append(dislikeReasons, &DislikeReason{ID: _region, Name: "分区:" + c.Args.Rname})
  313. }
  314. if c.Args.Tname != "" {
  315. dislikeReasons = append(dislikeReasons, &DislikeReason{ID: _channel, Name: "频道:" + c.Args.Tname})
  316. }
  317. c.ThreePoint.DislikeReasons = append(dislikeReasons, &DislikeReason{ID: _noSeason, Name: "不感兴趣"})
  318. c.ThreePoint.Feedbacks = []*Feedback{{ID: 1, Name: "恐怖血腥"}, {ID: 2, Name: "色情低俗"}, {ID: 3, Name: "封面恶心"}, {ID: 4, Name: "标题党/封面党"}}
  319. c.ThreePoint.WatchLater = 1
  320. } else {
  321. c.ThreePoint.DislikeReasons = []*DislikeReason{{ID: _noSeason, Name: "不感兴趣"}}
  322. }
  323. }
  324. // ThreePointChannel is
  325. func (c *Base) ThreePointChannel() {
  326. const (
  327. _noSeason = 1
  328. _upper = 4
  329. )
  330. if c.CardGoto == model.CardGotoAv || c.CardGoto == model.CardGotoPlayer || c.CardGoto == model.CardGotoUpRcmdAv {
  331. c.ThreePoint = &ThreePoint{}
  332. if c.Args.UpName != "" {
  333. c.ThreePoint.DislikeReasons = append(c.ThreePoint.DislikeReasons, &DislikeReason{ID: _upper, Name: "UP主:" + c.Args.UpName})
  334. }
  335. c.ThreePoint.DislikeReasons = append(c.ThreePoint.DislikeReasons, &DislikeReason{ID: _noSeason, Name: "不感兴趣"})
  336. c.ThreePoint.WatchLater = 1
  337. }
  338. }
  339. // ThreePointWatchLater is
  340. func (c *Base) ThreePointWatchLater() {
  341. if c.CardGoto == model.CardGotoAv || c.CardGoto == model.CardGotoPlayer || c.CardGoto == model.CardGotoUpRcmdAv || c.Goto == model.GotoAv {
  342. c.ThreePoint = &ThreePoint{}
  343. c.ThreePoint.WatchLater = 1
  344. }
  345. }
  346. // TabThreePointWatchLater is
  347. func (c *Base) TabThreePointWatchLater() {
  348. if c.Goto == model.GotoAv && c.CardGoto != model.CardGotoPlayer {
  349. c.ThreePoint = &ThreePoint{}
  350. c.ThreePoint.WatchLater = 1
  351. }
  352. }
  353. // Args is
  354. type Args struct {
  355. Type int8 `json:"type,omitempty"`
  356. UpID int64 `json:"up_id,omitempty"`
  357. UpName string `json:"up_name,omitempty"`
  358. Rid int32 `json:"rid,omitempty"`
  359. Rname string `json:"rname,omitempty"`
  360. Tid int64 `json:"tid,omitempty"`
  361. Tname string `json:"tname,omitempty"`
  362. }
  363. func (c *Args) fromShopping(s *show.Shopping) {
  364. c.Type = s.Type
  365. }
  366. func (c *Args) fromArchive(a *archive.Archive3, t *tag.Tag) {
  367. if a != nil {
  368. c.UpID = a.Author.Mid
  369. c.UpName = a.Author.Name
  370. c.Rid = a.TypeID
  371. c.Rname = a.TypeName
  372. }
  373. if t != nil {
  374. c.Tid = t.ID
  375. c.Tname = t.Name
  376. }
  377. }
  378. func (c *Args) fromLiveRoom(r *live.Room) {
  379. if r == nil {
  380. return
  381. }
  382. c.UpID = r.UID
  383. c.UpName = r.Uname
  384. c.Rid = int32(r.AreaV2ParentID)
  385. c.Rname = r.AreaV2ParentName
  386. c.Tid = r.AreaV2ID
  387. c.Tname = r.AreaV2Name
  388. }
  389. func (c *Args) fromLiveUp(card *live.Card) {
  390. if card == nil {
  391. return
  392. }
  393. c.UpID = card.UID
  394. c.UpName = card.Uname
  395. }
  396. func (c *Args) fromAudio(a *audio.Audio) {
  397. if a == nil {
  398. return
  399. }
  400. c.Type = a.Type
  401. if len(a.Ctgs) != 0 {
  402. c.Rid = int32(a.Ctgs[0].ItemID)
  403. c.Rname = a.Ctgs[0].ItemVal
  404. if len(a.Ctgs) > 1 {
  405. c.Tid = a.Ctgs[1].ItemID
  406. c.Tname = a.Ctgs[1].ItemVal
  407. }
  408. }
  409. }
  410. func (c *Args) fromArticle(m *article.Meta) {
  411. if m == nil {
  412. return
  413. }
  414. if m.Author != nil {
  415. c.UpID = m.Author.Mid
  416. c.UpName = m.Author.Name
  417. }
  418. if len(m.Categories) != 0 {
  419. if m.Categories[0] != nil {
  420. c.Rid = int32(m.Categories[0].ID)
  421. c.Rname = m.Categories[0].Name
  422. }
  423. if len(m.Categories) > 1 {
  424. if m.Categories[1] != nil {
  425. c.Tid = m.Categories[1].ID
  426. c.Tname = m.Categories[1].Name
  427. }
  428. }
  429. }
  430. }
  431. // PlayerArgs is
  432. type PlayerArgs struct {
  433. IsLive int8 `json:"is_live,omitempty"`
  434. Aid int64 `json:"aid,omitempty"`
  435. Cid int64 `json:"cid,omitempty"`
  436. RoomID int64 `json:"room_id,omitempty"`
  437. }
  438. func playerArgsFrom(v interface{}) (playerArgs *PlayerArgs) {
  439. switch v.(type) {
  440. case *archive.Archive3:
  441. a := v.(*archive.Archive3)
  442. if a == nil || (a.AttrVal(archive.AttrBitIsPGC) == archive.AttrNo && a.Rights.Autoplay != 1) || (a.AttrVal(archive.AttrBitIsPGC) == archive.AttrYes && a.AttrVal(archive.AttrBitBadgepay) == archive.AttrYes) {
  443. return
  444. }
  445. playerArgs = &PlayerArgs{Aid: a.Aid, Cid: a.FirstCid}
  446. case *live.Room:
  447. r := v.(*live.Room)
  448. if r == nil || r.LiveStatus != 1 {
  449. return
  450. }
  451. playerArgs = &PlayerArgs{RoomID: r.RoomID, IsLive: 1}
  452. case nil:
  453. default:
  454. log.Warn("playerArgsFrom: unexpected type %T", v)
  455. }
  456. return
  457. }
  458. // rcmdReason
  459. func rcmdReason(r *ai.RcmdReason, name string, isAtten int8, cardm map[int64]*account.Card) (rcmdReason, desc string) {
  460. // "rcmd_reason":{"content":"已关注","font":1,"grounding":"yellow","id":3,"position":"bottom","style":3}
  461. if r == nil {
  462. if isAtten == 1 {
  463. rcmdReason = "已关注"
  464. desc = name
  465. }
  466. return
  467. }
  468. switch r.Style {
  469. case 3:
  470. if isAtten != 1 {
  471. return
  472. }
  473. rcmdReason = r.Content
  474. desc = name
  475. case 4:
  476. _, ok := cardm[r.FollowedMid]
  477. if !ok {
  478. return
  479. }
  480. if r.Content == "" {
  481. r.Content = "关注的人赞过"
  482. }
  483. rcmdReason = r.Content
  484. default:
  485. rcmdReason = r.Content
  486. }
  487. return
  488. }
  489. // ReasonStyle reason style
  490. type ReasonStyle struct {
  491. Text string `json:"text,omitempty"`
  492. TextColor string `json:"text_color,omitempty"`
  493. BgColor string `json:"bg_color,omitempty"`
  494. BorderColor string `json:"border_color,omitempty"`
  495. BgStyle int8 `json:"bg_style,omitempty"`
  496. NightAlphaPercent int `json:"night_alpha_percent,omitempty"`
  497. }
  498. func topReasonStyleFrom(rcmd *ai.Item, text string, gt model.Gt) (res *ReasonStyle) {
  499. if text == "" || rcmd == nil {
  500. return
  501. }
  502. var (
  503. style, bgstyle int8
  504. )
  505. if style = rcmd.CornerMark; style == 0 {
  506. if rcmd.RcmdReason != nil {
  507. if rcmd.RcmdReason.Content == "" {
  508. style = 0
  509. } else {
  510. style = rcmd.RcmdReason.CornerMark
  511. }
  512. }
  513. }
  514. switch style {
  515. case 0, 2:
  516. bgstyle = model.BgColorOrange
  517. case 1:
  518. bgstyle = model.BgColorTransparentOrange
  519. case 3:
  520. bgstyle = model.BgTransparentTextOrange
  521. case 4:
  522. bgstyle = model.BgColorRed
  523. default:
  524. bgstyle = model.BgColorOrange
  525. }
  526. res = reasonStyleFrom(bgstyle, text)
  527. return
  528. }
  529. func bottomReasonStyleFrom(rcmd *ai.Item, text string, gt model.Gt) (res *ReasonStyle) {
  530. if text == "" || rcmd == nil {
  531. return
  532. }
  533. var (
  534. style, bgstyle int8
  535. )
  536. if style = rcmd.CornerMark; style == 0 {
  537. if rcmd.RcmdReason != nil {
  538. if rcmd.RcmdReason.Content == "" {
  539. style = 0
  540. } else {
  541. style = rcmd.RcmdReason.CornerMark
  542. }
  543. }
  544. }
  545. switch style {
  546. case 1:
  547. bgstyle = model.BgColorTransparentOrange
  548. case 3:
  549. bgstyle = model.BgTransparentTextOrange
  550. default:
  551. bgstyle = model.BgColorOrange
  552. }
  553. res = reasonStyleFrom(bgstyle, text)
  554. return
  555. }
  556. func reasonStyleFrom(style int8, text string) (res *ReasonStyle) {
  557. res = &ReasonStyle{
  558. Text: text,
  559. }
  560. switch style {
  561. case model.BgColorOrange: //defalut
  562. res.TextColor = "#FFFFFFFF"
  563. res.BgColor = "#FFFB9E60"
  564. res.BorderColor = "#FFFB9E60"
  565. res.BgStyle = model.BgStyleFill
  566. case model.BgColorTransparentOrange:
  567. res.TextColor = "#FFFB9E60"
  568. res.BorderColor = "#FFFB9E60"
  569. res.BgStyle = model.BgStyleStroke
  570. case model.BgColorBlue:
  571. res.TextColor = "#FF23ADE5"
  572. res.BgColor = "#3323ADE5"
  573. res.BorderColor = "#3323ADE5"
  574. res.BgStyle = model.BgStyleFill
  575. case model.BgColorRed:
  576. res.TextColor = "#FFFFFFFF"
  577. res.BgColor = "#FFFB7299"
  578. res.BorderColor = "#FFFB7299"
  579. res.BgStyle = model.BgStyleFill
  580. case model.BgTransparentTextOrange:
  581. res.TextColor = "#FFFB9E60"
  582. res.BgStyle = model.BgStyleNoFillAndNoStroke
  583. case model.BgColorPurple:
  584. res.TextColor = "#FFFFFFFF"
  585. res.BgColor = "#FF7D75F2"
  586. res.BorderColor = "#FF7D75F2"
  587. res.BgStyle = model.BgStyleFill
  588. }
  589. return
  590. }
  591. func unionAuthor(a *archive.ArchiveWithPlayer) (name string) {
  592. if a.Rights.IsCooperation == 1 {
  593. name = a.Author.Name + " 等联合创作"
  594. return
  595. }
  596. name = a.Author.Name
  597. return
  598. }