operate.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. package operate
  2. import (
  3. "encoding/json"
  4. "go-common/app/interface/main/app-card/model"
  5. "go-common/app/interface/main/app-card/model/card/banner"
  6. "go-common/app/interface/main/app-card/model/card/cm"
  7. "go-common/app/interface/main/app-card/model/card/rank"
  8. "go-common/library/log"
  9. "sort"
  10. "strconv"
  11. )
  12. type Card struct {
  13. Plat int8 `json:"plat,omitempty"`
  14. Build int `json:"build,omitempty"`
  15. ID int64 `json:"id,omitempty"`
  16. Param string `json:"param,omitempty"`
  17. CardGoto model.CardGt `json:"card_goto,omitempty"`
  18. Goto model.Gt `json:"goto,omitempty"`
  19. URI string `json:"uri,omitempty"`
  20. Title string `json:"title,omitempty"`
  21. Desc string `json:"desc,omitempty"`
  22. Cover string `json:"cover,omitempty"`
  23. Coverm map[model.ColumnStatus]string `json:"coverm,omitempty"`
  24. Avatar string `json:"avatar,omitempty"`
  25. Download int32 `json:"download,omitempty"`
  26. Badge string `json:"badge,omitempty"`
  27. Ratio int `json:"ratio,omitempty"`
  28. Score int32 `json:"score,omitempty"`
  29. Tid int64 `json:"tid,omitempty"`
  30. Subtitle string `json:"subtitle,omitempty"`
  31. Limit int `json:"limit,omitempty"`
  32. Items []*Card `json:"items,omitempty"`
  33. AdInfo *cm.AdInfo `json:"ad_info,omitempty"`
  34. Banner []*banner.Banner `json:"banner,omitempty"`
  35. Hash string `json:"verson,omitempty"`
  36. TrackID string `json:"trackid,omitempty"`
  37. FromType string `json:"from_type,omitempty"`
  38. ShowUGCPay bool `json:"show_ucg_pay,omitempty"`
  39. Switch model.Switch `json:"switch,omitempty"`
  40. SwitchLike model.Switch `json:"switch_like,omitempty"`
  41. Buttons []*Button `json:"buttons,omitempty"`
  42. }
  43. type Button struct {
  44. Text string `json:"text,omitempty"`
  45. Event string `json:"event,omitempty"`
  46. }
  47. func (c *Card) From(cardGoto model.CardGt, id int64, tid int64, plat int8, build int) {
  48. c.CardGoto = cardGoto
  49. c.ID = id
  50. c.Tid = tid
  51. c.Goto = model.Gt(cardGoto)
  52. c.Param = strconv.FormatInt(id, 10)
  53. c.URI = strconv.FormatInt(id, 10)
  54. c.Plat = plat
  55. c.Build = build
  56. }
  57. func (c *Card) FromSwitch(sw model.Switch) {
  58. c.SwitchLike = sw
  59. }
  60. func (c *Card) FromDownload(o *Download) {
  61. c.CardGoto = model.CardGotoDownload
  62. c.Param = strconv.FormatInt(o.ID, 10)
  63. c.Coverm = map[model.ColumnStatus]string{model.ColumnSvrSingle: o.Cover, model.ColumnSvrDouble: o.DoubleCover}
  64. c.Title = o.Title
  65. c.Goto = model.OperateType[o.URLType]
  66. c.URI = o.URLValue
  67. c.Avatar = o.Icon
  68. c.Download = o.Number
  69. c.Desc = o.Desc
  70. }
  71. func (c *Card) FromSpecial(o *Special) {
  72. c.CardGoto = model.CardGotoSpecial
  73. c.Param = strconv.FormatInt(o.ID, 10)
  74. c.Coverm = map[model.ColumnStatus]string{model.ColumnSvrSingle: o.SingleCover, model.ColumnSvrDouble: o.Cover}
  75. c.Title = o.Title
  76. c.Goto = model.OperateType[o.ReType]
  77. c.URI = o.ReValue
  78. c.Desc = o.Desc
  79. c.Badge = o.Badge
  80. if o.Size == "1020x300" {
  81. c.Ratio = 34
  82. } else if o.Size == "1020x378" {
  83. c.Ratio = 27
  84. }
  85. }
  86. func (c *Card) FromTopstick(o *Special) {
  87. c.CardGoto = model.CardGotoTopstick
  88. c.Param = strconv.FormatInt(o.ID, 10)
  89. c.Title = o.Title
  90. c.Goto = model.OperateType[o.ReType]
  91. c.URI = o.ReValue
  92. c.Desc = o.Desc
  93. c.Badge = o.Badge
  94. }
  95. func (c *Card) FromFollow(o *Follow) {
  96. switch o.Type {
  97. case "upper", "channel_three":
  98. var contents []*struct {
  99. Ctype string `json:"ctype,omitempty"`
  100. Cvalue int64 `json:"cvalue,omitempty"`
  101. }
  102. if err := json.Unmarshal(o.Content, &contents); err != nil {
  103. log.Error("%+v", err)
  104. return
  105. }
  106. items := make([]*Card, 0, len(contents))
  107. for _, content := range contents {
  108. var gt model.Gt
  109. switch content.Ctype {
  110. case "mid":
  111. gt = model.GotoMid
  112. case "channel_id":
  113. gt = model.GotoTag
  114. default:
  115. continue
  116. }
  117. items = append(items, &Card{ID: content.Cvalue, Goto: gt, Param: strconv.FormatInt(content.Cvalue, 10), URI: strconv.FormatInt(content.Cvalue, 10)})
  118. }
  119. if len(items) < 3 {
  120. return
  121. }
  122. c.Items = items
  123. c.CardGoto = model.CardGotoSubscribe
  124. c.Title = o.Title
  125. c.Param = strconv.FormatInt(o.ID, 10)
  126. case "channel_single":
  127. var content struct {
  128. Aid int64 `json:"aid"`
  129. ChannelID int64 `json:"channel_id"`
  130. }
  131. if err := json.Unmarshal(o.Content, &content); err != nil {
  132. log.Error("%+v", err)
  133. return
  134. }
  135. c.CardGoto = model.CardGotoChannelRcmd
  136. c.Title = o.Title
  137. c.ID = content.Aid
  138. c.Tid = content.ChannelID
  139. c.Goto = model.GotoAv
  140. c.Param = strconv.FormatInt(o.ID, 10)
  141. c.URI = strconv.FormatInt(content.Aid, 10)
  142. }
  143. }
  144. func (c *Card) FromConverge(o *Converge) {
  145. c.CardGoto = model.CardGotoConverge
  146. c.Param = strconv.FormatInt(o.ID, 10)
  147. c.Coverm = map[model.ColumnStatus]string{model.ColumnSvrSingle: o.Cover, model.ColumnSvrDouble: o.Cover}
  148. c.Title = o.Title
  149. c.Goto = model.OperateType[o.ReType]
  150. c.URI = o.ReValue
  151. var contents []*struct {
  152. Ctype string `json:"ctype,omitempty"`
  153. Cvalue string `json:"cvalue,omitempty"`
  154. }
  155. if err := json.Unmarshal(o.Content, &contents); err != nil {
  156. log.Error("%+v", err)
  157. return
  158. }
  159. c.Items = make([]*Card, 0, len(contents))
  160. for _, content := range contents {
  161. var (
  162. gt model.Gt
  163. cardGt model.CardGt
  164. )
  165. id, _ := strconv.ParseInt(content.Cvalue, 10, 64)
  166. if id == 0 {
  167. continue
  168. }
  169. switch content.Ctype {
  170. case "0":
  171. gt = model.GotoAv
  172. cardGt = model.CardGotoAv
  173. case "1":
  174. gt = model.GotoLive
  175. cardGt = model.CardGotoLive
  176. case "2":
  177. gt = model.GotoArticle
  178. cardGt = model.CardGotoArticleS
  179. default:
  180. continue
  181. }
  182. c.Items = append(c.Items, &Card{ID: id, CardGoto: cardGt, Goto: gt, Param: content.Cvalue, URI: content.Cvalue})
  183. }
  184. }
  185. func (c *Card) FromRank(os []*rank.Rank) {
  186. c.CardGoto = model.CardGotoRank
  187. c.Goto = model.GotoRank
  188. c.Items = make([]*Card, 0, len(os))
  189. for _, o := range os {
  190. c.Items = append(c.Items, &Card{Goto: model.GotoAv, ID: o.Aid, Param: strconv.FormatInt(o.Aid, 10), URI: strconv.FormatInt(o.Aid, 10), Score: o.Score})
  191. }
  192. }
  193. func (c *Card) FromActive(o *Active) {
  194. switch o.Type {
  195. case "live", "player_live", "converge", "special", "archive", "player":
  196. var id int64
  197. if err := json.Unmarshal(o.Content, &id); err != nil {
  198. log.Error("%+v", err)
  199. return
  200. }
  201. if id < 1 {
  202. return
  203. }
  204. c.ID = id
  205. c.Param = strconv.FormatInt(id, 10)
  206. switch o.Type {
  207. case "live":
  208. c.CardGoto = model.CardGotoPlayerLive
  209. case "converge":
  210. c.CardGoto = model.CardGotoConverge
  211. case "special":
  212. c.CardGoto = model.CardGotoSpecial
  213. case "archive":
  214. c.CardGoto = model.CardGotoPlayer
  215. }
  216. case "basic", "content_rcmd":
  217. var basic struct {
  218. Type string `json:"type,omitempty"`
  219. Title string `json:"title,omitempty"`
  220. Subtitle string `json:"subtitle,omitempty"`
  221. Sublink string `json:"sublink,omitempty"`
  222. Content []*struct {
  223. LinkType string `json:"link_type,omitempty"`
  224. LinkValue string `json:"link_value,omitempty"`
  225. } `json:"content,omitempty"`
  226. }
  227. if err := json.Unmarshal(o.Content, &basic); err != nil {
  228. log.Error("%+v", err)
  229. return
  230. }
  231. items := make([]*Card, 0, len(basic.Content))
  232. for _, c := range basic.Content {
  233. typ, _ := strconv.Atoi(c.LinkType)
  234. id, _ := strconv.ParseInt(c.LinkValue, 10, 64)
  235. ri := &Card{Goto: model.OperateType[typ], ID: id, Param: c.LinkValue}
  236. if ri.Goto != "" {
  237. items = append(items, ri)
  238. }
  239. }
  240. if len(items) == 0 {
  241. return
  242. }
  243. c.Items = items
  244. c.Title = basic.Title
  245. c.Subtitle = basic.Subtitle
  246. c.URI = basic.Sublink
  247. c.CardGoto = model.CardGotoContentRcmd
  248. case "shortcut", "entrance", "banner":
  249. var card struct {
  250. Type string `json:"type,omitempty"`
  251. CardItem []*CardItem `json:"card_item,omitempty"`
  252. }
  253. if err := json.Unmarshal(o.Content, &card); err != nil {
  254. log.Error("%+v", err)
  255. return
  256. }
  257. items := make([]*Card, 0, len(card.CardItem))
  258. sort.Sort(CardItems(card.CardItem))
  259. for _, v := range card.CardItem {
  260. typ, _ := strconv.Atoi(v.LinkType)
  261. id, _ := strconv.ParseInt(v.LinkValue, 10, 64)
  262. item := &Card{Goto: model.OperateType[typ], ID: id, Param: v.LinkValue, URI: v.LinkValue, Title: v.Title, Cover: v.Cover}
  263. if item.Goto != "" {
  264. items = append(items, item)
  265. }
  266. }
  267. if len(items) == 0 {
  268. return
  269. }
  270. c.Items = items
  271. switch o.Type {
  272. case "shortcut", "entrance":
  273. c.CardGoto = model.CardGotoEntrance
  274. case "banner":
  275. c.CardGoto = model.CardGotoBanner
  276. }
  277. case "common", "background":
  278. c.Title = o.Name
  279. c.Cover = o.Background
  280. case "tag", "tag_rcmd":
  281. var tag struct {
  282. AidStr string `json:"aid,omitempty"`
  283. Type string `json:"type,omitempty"`
  284. NumberStr string `json:"number,omitempty"`
  285. Tid int64 `json:"-"`
  286. Number int `json:"-"`
  287. }
  288. if err := json.Unmarshal(o.Content, &tag); err != nil {
  289. log.Error("%+v", err)
  290. return
  291. }
  292. tag.Tid, _ = strconv.ParseInt(tag.AidStr, 10, 64)
  293. tag.Number, _ = strconv.Atoi(tag.NumberStr)
  294. if tag.Tid == 0 {
  295. return
  296. }
  297. c.ID = tag.Tid
  298. c.Limit = tag.Number
  299. c.Goto = model.GotoTag
  300. c.CardGoto = model.CardGotoTagRcmd
  301. c.Subtitle = "查看更多"
  302. case "news":
  303. var news struct {
  304. Title string `json:"title,omitempty"`
  305. Body string `json:"body,omitempty"`
  306. Link string `json:"link,omitempty"`
  307. }
  308. if err := json.Unmarshal(o.Content, &news); err != nil {
  309. log.Error("%+v", err)
  310. return
  311. }
  312. if news.Body == "" {
  313. return
  314. }
  315. c.Title = news.Title
  316. c.Desc = news.Body
  317. c.URI = news.Link
  318. c.Goto = model.GotoWeb
  319. c.CardGoto = model.CardGotoNews
  320. }
  321. c.Title = o.Title
  322. c.Param = strconv.FormatInt(o.ID, 10)
  323. }
  324. func (c *Card) FromAdAv(o *cm.AdInfo) {
  325. c.CardGoto = model.CardGotoAdAv
  326. c.AdInfo = o
  327. }
  328. func (c *Card) FromActiveBanner(os []*Active, hash string) {
  329. c.Banner = make([]*banner.Banner, 0, len(os))
  330. for _, o := range os {
  331. banner := &banner.Banner{ID: o.Pid, Title: o.Title, Image: o.Cover, URI: model.FillURI(o.Goto, o.Param, nil)}
  332. c.Banner = append(c.Banner, banner)
  333. }
  334. c.CardGoto = model.CardGotoBanner
  335. c.Hash = hash
  336. }
  337. func (c *Card) FromBanner(os []*banner.Banner, hash string) {
  338. if len(os) == 0 {
  339. return
  340. }
  341. c.Banner = os
  342. c.CardGoto = model.CardGotoBanner
  343. c.Hash = hash
  344. }
  345. func (c *Card) FromLogin(o int64) {
  346. if !model.IsIPad(c.Plat) {
  347. if o != 0 {
  348. c.Param = strconv.FormatInt(o, 10)
  349. } else {
  350. c.Param = "1"
  351. }
  352. } else {
  353. c.Param = "5"
  354. }
  355. c.CardGoto = model.CardGotoLogin
  356. }
  357. func (c *Card) FromCardSet(o *CardSet) {
  358. switch o.Type {
  359. case "pgcs_rcmd":
  360. var contents []*struct {
  361. ID interface{} `json:"id,omitempty"`
  362. }
  363. if err := json.Unmarshal(o.Content, &contents); err != nil {
  364. log.Error("%+v", err)
  365. return
  366. }
  367. for _, content := range contents {
  368. var cid int64
  369. switch v := content.ID.(type) {
  370. case string:
  371. cid, _ = strconv.ParseInt(v, 10, 64)
  372. case float64:
  373. cid = int64(v)
  374. }
  375. item := &Card{ID: cid, Goto: model.GotoPGC}
  376. c.Items = append(c.Items, item)
  377. }
  378. c.Title = o.Title
  379. c.Param = strconv.FormatInt(o.ID, 10)
  380. c.CardGoto = model.CardGotoPgcsRcmd
  381. case "up_rcmd_new":
  382. var contents []*struct {
  383. ID interface{} `json:"id,omitempty"`
  384. }
  385. if err := json.Unmarshal(o.Content, &contents); err != nil {
  386. log.Error("%+v", err)
  387. return
  388. }
  389. for _, content := range contents {
  390. var aid int64
  391. switch v := content.ID.(type) {
  392. case string:
  393. aid, _ = strconv.ParseInt(v, 10, 64)
  394. case float64:
  395. aid = int64(v)
  396. }
  397. item := &Card{ID: aid, Goto: model.GotoAv}
  398. c.Items = append(c.Items, item)
  399. }
  400. c.Title = "新星卡片"
  401. c.Desc = o.Title
  402. c.Param = strconv.FormatInt(o.Value, 10)
  403. c.ID = o.Value
  404. c.CardGoto = model.CardGotoUpRcmdNew
  405. }
  406. }
  407. func (c *Card) FromFollowMode(title, desc string, button []string) {
  408. c.Title = title
  409. if c.Title == "" {
  410. c.Title = "启用首页推荐 - 关注模式(内测版)"
  411. }
  412. c.Desc = desc
  413. if c.Desc == "" {
  414. c.Desc = "我们根据你对bilibili推荐的反馈,为你定制了关注模式。开启后,仅为你显示关注UP主更新的视频哦。尝试体验一下?"
  415. }
  416. if len(button) == 2 {
  417. c.Buttons = []*Button{
  418. {Text: button[0], Event: "close"},
  419. {Text: button[1], Event: "follow_mode"},
  420. }
  421. } else {
  422. c.Buttons = []*Button{
  423. {Text: "暂不需要", Event: "close"},
  424. {Text: "立即开启", Event: "follow_mode"},
  425. }
  426. }
  427. c.CardGoto = model.CardGotoFollowMode
  428. }
  429. func (c *Card) FromEventTopic(o *EventTopic) {
  430. c.Title = o.Title
  431. c.Desc = o.Desc
  432. c.Cover = o.Cover
  433. switch o.ReType {
  434. case 1:
  435. c.Goto = model.Gt("topic")
  436. case 2:
  437. c.Goto = model.Gt("broadcast")
  438. case 3:
  439. c.Goto = model.Gt("channel")
  440. }
  441. c.Param = strconv.FormatInt(o.ID, 10)
  442. c.URI = o.ReValue
  443. c.Badge = o.Corner
  444. }