const.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  1. package model
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "net/url"
  6. "strconv"
  7. "strings"
  8. "time"
  9. "go-common/app/interface/main/app-card/model/card/audio"
  10. "go-common/app/interface/main/app-card/model/card/live"
  11. article "go-common/app/interface/openplatform/article/model"
  12. account "go-common/app/service/main/account/model"
  13. "go-common/app/service/main/archive/model/archive"
  14. "go-common/library/log"
  15. )
  16. // CardGt is
  17. type CardGt string
  18. // CardType is
  19. type CardType string
  20. // ColumnStatus is
  21. type ColumnStatus int8
  22. // Gt is
  23. type Gt string
  24. // Icon is
  25. type Icon int8
  26. // Type is
  27. type Type int8
  28. // BlurStatus is
  29. type BlurStatus int8
  30. // Event is
  31. type Event string
  32. // CoverColor is
  33. type CoverColor string
  34. // Switch is
  35. type Switch string
  36. const (
  37. // PlatAndroid is int8 for android.
  38. PlatAndroid = int8(0)
  39. // PlatIPhone is int8 for iphone.
  40. PlatIPhone = int8(1)
  41. // PlatIPad is int8 for ipad.
  42. PlatIPad = int8(2)
  43. // PlatWPhone is int8 for wphone.
  44. PlatWPhone = int8(3)
  45. // PlatAndroidG is int8 for Android Googleplay.
  46. PlatAndroidG = int8(4)
  47. // PlatIPhoneI is int8 for Iphone Global.
  48. PlatIPhoneI = int8(5)
  49. // PlatIPadI is int8 for IPAD Global.
  50. PlatIPadI = int8(6)
  51. // PlatAndroidTV is int8 for AndroidTV Global.
  52. PlatAndroidTV = int8(7)
  53. // PlatAndroidI is int8 for Android Global.
  54. PlatAndroidI = int8(8)
  55. // PlatIpadHD is int8 for IpadHD
  56. PlatIpadHD = int8(9)
  57. // PlatAndroidTVYST is int8 for AndroidTV_YST Global.
  58. PlatAndroidTVYST = int8(12)
  59. CardGotoAv = CardGt("av")
  60. CardGotoBangumi = CardGt("bangumi")
  61. CardGotoLive = CardGt("live")
  62. CardGotoArticle = CardGt("article")
  63. CardGotoAudio = CardGt("audio")
  64. CardGotoRank = CardGt("rank")
  65. CardGotoConverge = CardGt("converge")
  66. CardGotoDownload = CardGt("download")
  67. CardGotoMoe = CardGt("moe")
  68. CardGotoBanner = CardGt("banner")
  69. CardGotoLogin = CardGt("login")
  70. CardGotoPGC = CardGt("pgc")
  71. CardGotoSpecial = CardGt("special")
  72. CardGotoSubscribe = CardGt("subscribe")
  73. CardGotoBangumiRcmd = CardGt("bangumi_rcmd")
  74. CardGotoUpRcmdAv = CardGt("up_rcmd_av")
  75. CardGotoChannelRcmd = CardGt("channel_rcmd")
  76. CardGotoLiveUpRcmd = CardGt("live_up_rcmd")
  77. CardGotoAdAv = CardGt("ad_av")
  78. CardGotoAdWeb = CardGt("ad_web")
  79. CardGotoAdWebS = CardGt("ad_web_s")
  80. CardGotoPlayer = CardGt("player")
  81. CardGotoPlayerLive = CardGt("player_live")
  82. CardGotoArticleS = CardGt("article_s")
  83. CardGotoSpecialS = CardGt("special_s")
  84. CardGotoShoppingS = CardGt("shopping_s")
  85. CardGotoGameDownloadS = CardGt("game_download_s")
  86. CardGotoHotTopic = CardGt("hottopic")
  87. CardGotoTopstick = CardGt("topstick")
  88. CardGotoSearchSubscribe = CardGt("search_subscribe")
  89. CardGotoPicture = CardGt("picture")
  90. CardGotoInterest = CardGt("interest")
  91. CardGotoFollowMode = CardGt("follow_mode")
  92. // operate tab
  93. CardGotoEntrance = CardGt("entrance")
  94. CardGotoContentRcmd = CardGt("content_rcmd")
  95. CardGotoTagRcmd = CardGt("tag_rcmd")
  96. CardGotoNews = CardGt("news")
  97. CardGotoChannelSquare = CardGt("channel_square")
  98. CardGotoPgcsRcmd = CardGt("pgcs_rcmd")
  99. CardGotoUpRcmdS = CardGt("up_rcmd_s")
  100. CardGotoSearchUpper = CardGt("search_upper")
  101. CardGotoUpRcmdNew = CardGt("up_rcmd_new")
  102. CardGotoDynamicHot = CardGt("hot_dynamic")
  103. CardGotoUpRcmdNewV2 = CardGt("up_rcmd_new_v2")
  104. CardGotoEventTopic = CardGt("event_topic")
  105. // single card
  106. LargeCoverV1 = CardType("large_cover_v1")
  107. SmallCoverV1 = CardType("small_cover_v1")
  108. MiddleCoverV1 = CardType("middle_cover_v1")
  109. ThreeItemV1 = CardType("three_item_v1")
  110. ThreeItemHV1 = CardType("three_item_h_v1")
  111. ThreeItemHV3 = CardType("three_item_h_v3")
  112. TwoItemV1 = CardType("two_item_v1")
  113. CoverOnlyV1 = CardType("cover_only_v1")
  114. BannerV1 = CardType("banner_v1")
  115. CmV1 = CardType("cm_v1")
  116. HotTopic = CardType("hot_topic")
  117. TopStick = CardType("top_stick")
  118. ChannelSquare = CardType("channel_square")
  119. ThreeItemHV4 = CardType("three_item_h_v4")
  120. UpRcmdCover = CardType("up_rcmd_cover")
  121. ThreeItemAll = CardType("three_item_all")
  122. TwoItemHV1 = CardType("two_item_h_v1")
  123. OnePicV1 = CardType("one_pic_v1")
  124. ThreePicV1 = CardType("three_pic_v1")
  125. SmallCoverV5 = CardType("small_cover_v5")
  126. OptionsV1 = CardType("options_v1")
  127. HotDynamic = CardType("hot_dynamic")
  128. ThreeItemAllV2 = CardType("three_item_all_v2")
  129. ThreeItemHV5 = CardType("three_item_h_v5")
  130. MiddleCoverV3 = CardType("middle_cover_v3")
  131. Select = CardType("select")
  132. // double card
  133. SmallCoverV2 = CardType("small_cover_v2")
  134. SmallCoverV3 = CardType("small_cover_v3")
  135. MiddleCoverV2 = CardType("middle_cover_v2")
  136. LargeCoverV2 = CardType("large_cover_v2")
  137. ThreeItemHV2 = CardType("three_item_h_v2")
  138. ThreeItemV2 = CardType("three_item_v2")
  139. TwoItemV2 = CardType("two_item_v2")
  140. SmallCoverV4 = CardType("small_cover_v4")
  141. CoverOnlyV2 = CardType("cover_only_v2")
  142. BannerV2 = CardType("banner_v2")
  143. CmV2 = CardType("cm_v2")
  144. News = CardType("news")
  145. MultiItem = CardType("multi_item")
  146. MultiItemH = CardType("multi_item_h")
  147. ThreePicV2 = CardType("three_pic_v2")
  148. OptionsV2 = CardType("options_v2")
  149. OnePicV2 = CardType("one_pic_v2")
  150. // ipad card
  151. BannerV3 = CardType("banner_v3")
  152. CoverOnlyV3 = CardType("cover_only_v3")
  153. FourItemHV3 = CardType("four_item_h_v3")
  154. ColumnDefault = ColumnStatus(0)
  155. ColumnSvrSingle = ColumnStatus(1)
  156. ColumnSvrDouble = ColumnStatus(2)
  157. ColumnUserSingle = ColumnStatus(3)
  158. ColumnUserDouble = ColumnStatus(4)
  159. GotoWeb = Gt("web")
  160. GotoAv = Gt("av")
  161. GotoBangumi = Gt("bangumi")
  162. GotoLive = Gt("live")
  163. GotoGame = Gt("game")
  164. GotoArticle = Gt("article")
  165. GotoArticleTag = Gt("article_tag")
  166. GotoAudio = Gt("audio")
  167. GotoAudioTag = Gt("audio_tag")
  168. GotoSong = Gt("song")
  169. GotoAlbum = Gt("album")
  170. GotoClip = Gt("clip")
  171. GotoDaily = Gt("daily")
  172. GotoTag = Gt("tag")
  173. GotoMid = Gt("mid")
  174. GotoDynamicMid = Gt("dynamic_mid")
  175. GotoConverge = Gt("converge")
  176. GotoRank = Gt("rank")
  177. GotoLiveTag = Gt("live_tag")
  178. GotoPGC = Gt("pgc")
  179. GotoHotTopic = Gt("hottopic")
  180. GotoTopstick = Gt("topstick")
  181. GotoSpecial = Gt("special")
  182. GotoSubscribe = Gt("subscribe")
  183. GotoPicture = Gt("picture")
  184. GotoPictureTag = Gt("picture_tag")
  185. GotoHotDynamic = Gt("hot_dynamic")
  186. IconPlay = Icon(1)
  187. IconOnline = Icon(2)
  188. IconDanmaku = Icon(3)
  189. IconFavorite = Icon(4)
  190. IconStar = Icon(5)
  191. IconRead = Icon(6)
  192. IconComment = Icon(7)
  193. IconLocation = Icon(8)
  194. IconHeadphone = Icon(9)
  195. IconRank = Icon(10)
  196. IconGoldMedal = Icon(11)
  197. IconSilverMedal = Icon(12)
  198. IconBronzeMedal = Icon(13)
  199. IconTV = Icon(14)
  200. IconBomb = Icon(15)
  201. IconRoleYellow = Icon(16)
  202. IconRoleBlue = Icon(17)
  203. IconRoleVipRed = Icon(18)
  204. IconRoleYearVipRed = Icon(19)
  205. IconLike = Icon(20)
  206. AvatarRound = Type(0)
  207. AvatarSquare = Type(1)
  208. ButtonGrey = Type(1)
  209. ButtonTheme = Type(2)
  210. BlurNo = BlurStatus(0)
  211. BlurYes = BlurStatus(1)
  212. EventUpFollow = Event("up_follow")
  213. EventChannelSubscribe = Event("channel_subscribe")
  214. EventUpClick = Event("up_click")
  215. EventChannelClick = Event("channel_click")
  216. EventButtonClick = Event("button_click")
  217. EventGameClick = Event("game_click")
  218. PurpleCoverBadge = CoverColor("purple")
  219. BgColorOrange = int8(0)
  220. BgColorTransparentOrange = int8(1)
  221. BgColorBlue = int8(2)
  222. BgColorRed = int8(3)
  223. BgTransparentTextOrange = int8(4)
  224. BgColorPurple = int8(5)
  225. BgStyleFill = int8(1)
  226. BgStyleStroke = int8(2)
  227. BgStyleFillAndStroke = int8(3)
  228. BgStyleNoFillAndNoStroke = int8(4)
  229. SwitchFeedIndexLike = Switch("天马卡片好评数替换弹幕数")
  230. SwitchFeedIndexTabThreePoint = Switch("运营tab稿件卡片三点稍后再看")
  231. SwitchCooperationHide = Switch("cooperation_hide")
  232. SwitchCooperationShow = Switch("cooperation_show")
  233. // 热门显示up主信息abtest
  234. HotCardStyleOld = int8(0)
  235. HotCardStyleShowUp = int8(1)
  236. HotCardStyleHideUp = int8(2)
  237. )
  238. var (
  239. OperateType = map[int]Gt{
  240. 0: GotoWeb,
  241. 1: GotoGame,
  242. 2: GotoAv,
  243. 3: GotoBangumi,
  244. 4: GotoLive,
  245. 6: GotoArticle,
  246. 7: GotoDaily,
  247. 8: GotoAudio,
  248. 9: GotoSong,
  249. 10: GotoAlbum,
  250. 11: GotoClip,
  251. 12: GotoSpecial,
  252. 13: GotoPicture,
  253. }
  254. Columnm = map[ColumnStatus]ColumnStatus{
  255. ColumnDefault: ColumnSvrDouble,
  256. ColumnSvrSingle: ColumnSvrSingle,
  257. ColumnSvrDouble: ColumnSvrDouble,
  258. ColumnUserSingle: ColumnSvrSingle,
  259. ColumnUserDouble: ColumnSvrDouble,
  260. }
  261. AvatarEvent = map[Gt]Event{
  262. GotoMid: EventUpClick,
  263. GotoTag: EventChannelClick,
  264. GotoDynamicMid: EventUpClick,
  265. }
  266. ButtonEvent = map[Gt]Event{
  267. GotoMid: EventUpFollow,
  268. GotoTag: EventChannelSubscribe,
  269. }
  270. ButtonText = map[Gt]string{
  271. GotoMid: "+ 关注",
  272. GotoTag: "订阅",
  273. }
  274. LiveRoomTagHandler = func(r *live.Room) func(uri string) string {
  275. return func(uri string) string {
  276. if r == nil {
  277. return ""
  278. }
  279. return fmt.Sprintf("%s?parent_area_id=%d&parent_area_name=%s&area_id=%d&area_name=%s", uri, r.AreaV2ParentID, url.QueryEscape(r.AreaV2ParentName), r.AreaV2ID, url.QueryEscape(r.AreaV2Name))
  280. }
  281. }
  282. AudioTagHandler = func(c []*audio.Ctg) func(uri string) string {
  283. return func(uri string) string {
  284. var schema string
  285. if len(c) != 0 {
  286. schema = c[0].Schema
  287. if len(c) > 1 {
  288. schema = c[1].Schema
  289. }
  290. }
  291. return schema
  292. }
  293. }
  294. LiveUpHandler = func(card *live.Card) func(uri string) string {
  295. return func(uri string) string {
  296. if card == nil {
  297. return uri
  298. }
  299. return fmt.Sprintf("%s?broadcast_type=%d", uri, card.BroadcastType)
  300. }
  301. }
  302. LiveRoomHandler = func(r *live.Room) func(uri string) string {
  303. return func(uri string) string {
  304. if r == nil {
  305. return uri
  306. }
  307. return fmt.Sprintf("%s?broadcast_type=%d", uri, r.BroadcastType)
  308. }
  309. }
  310. AvPlayHandler = func(a *archive.Archive3, ap *archive.PlayerInfo, trackID string) func(uri string) string {
  311. var player string
  312. if ap != nil {
  313. bs, _ := json.Marshal(ap)
  314. player = url.QueryEscape(string(bs))
  315. if strings.IndexByte(player, '+') > -1 {
  316. player = strings.Replace(player, "+", "%20", -1)
  317. }
  318. }
  319. return func(uri string) string {
  320. var uriStr string
  321. if player != "" && (a.Dimension.Height != 0 || a.Dimension.Width != 0) {
  322. uriStr = fmt.Sprintf("%s?page=1&player_preload=%s&player_width=%d&player_height=%d&player_rotate=%d", uri, player, a.Dimension.Width, a.Dimension.Height, a.Dimension.Rotate)
  323. } else if player != "" {
  324. uriStr = fmt.Sprintf("%s?page=1&player_preload=%s", uri, player)
  325. } else if a.Dimension.Height != 0 || a.Dimension.Width != 0 {
  326. uriStr = fmt.Sprintf("%s?player_width=%d&player_height=%d&player_rotate=%d", uri, a.Dimension.Width, a.Dimension.Height, a.Dimension.Rotate)
  327. }
  328. if trackID != "" {
  329. if uriStr == "" {
  330. uriStr = fmt.Sprintf("%s?trackid=%s", uri, trackID)
  331. } else {
  332. uriStr = fmt.Sprintf("%s&trackid=%s", uriStr, trackID)
  333. }
  334. }
  335. if uriStr != "" {
  336. return uriStr
  337. }
  338. return uri
  339. }
  340. }
  341. HottopicHandler = func(l *live.TopicHot) func(uri string) string {
  342. return func(uri string) string {
  343. return fmt.Sprintf("%s?type=topic", uri)
  344. }
  345. }
  346. ArticleTagHandler = func(c []*article.Category, plat int8) func(uri string) string {
  347. return func(uri string) string {
  348. var (
  349. rid int64
  350. tid int64
  351. )
  352. if len(c) > 1 {
  353. if c[0] != nil {
  354. rid = c[0].ID
  355. }
  356. if c[1] != nil {
  357. tid = c[1].ID
  358. }
  359. }
  360. if rid != 0 && tid != 0 {
  361. return fmt.Sprintf("bilibili://article/category/%d?sec_cid=%d", rid, tid)
  362. }
  363. return ""
  364. }
  365. }
  366. )
  367. // IsAndroid check plat is android or ipad.
  368. func IsAndroid(plat int8) bool {
  369. return plat == PlatAndroid || plat == PlatAndroidG || plat == PlatAndroidI
  370. }
  371. // IsIOS check plat is iphone or ipad.
  372. func IsIOS(plat int8) bool {
  373. return plat == PlatIPad || plat == PlatIPhone || plat == PlatIPadI || plat == PlatIPhoneI
  374. }
  375. // IsIPhone check plat is iphone.
  376. func IsIPhone(plat int8) bool {
  377. return plat == PlatIPhone || plat == PlatIPhoneI
  378. }
  379. // IsIPad check plat is pad.
  380. func IsIPad(plat int8) bool {
  381. return plat == PlatIPad || plat == PlatIPadI || plat == PlatIpadHD
  382. }
  383. // AdAvIsNormal check advert archive normal.
  384. func AdAvIsNormal(a *archive.ArchiveWithPlayer) bool {
  385. if a == nil || a.Archive3 == nil {
  386. return false
  387. }
  388. return a.State >= 0 || a.State == -6 || a.State == -40
  389. }
  390. func AvIsNormal(a *archive.ArchiveWithPlayer) bool {
  391. if a == nil || a.Archive3 == nil {
  392. return false
  393. }
  394. return a.IsNormal()
  395. }
  396. // FillURI deal app schema.
  397. func FillURI(gt Gt, param string, f func(uri string) string) (uri string) {
  398. switch gt {
  399. case GotoAv:
  400. if param != "" {
  401. uri = "bilibili://video/" + param
  402. }
  403. case GotoLive:
  404. if param != "" {
  405. uri = "bilibili://live/" + param
  406. }
  407. case GotoBangumi:
  408. if param != "" {
  409. uri = "https://www.bilibili.com/bangumi/play/ep" + param
  410. }
  411. case GotoPGC:
  412. if param != "" {
  413. uri = "https://www.bilibili.com/bangumi/play/ss" + param
  414. }
  415. case GotoArticle:
  416. if param != "" {
  417. uri = "bilibili://article/" + param
  418. }
  419. case GotoArticleTag:
  420. // TODO fuck article
  421. case GotoGame:
  422. // TODO fuck game
  423. if param != "" {
  424. uri = "bilibili://game_center/detail?id=" + param + "&sourceType=adPut"
  425. }
  426. case GotoAudio:
  427. if param != "" {
  428. uri = "bilibili://music/menu/detail/" + param
  429. }
  430. case GotoSong:
  431. if param != "" {
  432. uri = "bilibili://music/detail/" + param
  433. }
  434. case GotoAudioTag:
  435. // uri = "bilibili://music/menus/menu?itemId=(请求所需参数)&cateId=(请求所需参数)&itemVal=(分类的标题value)"
  436. case GotoDaily:
  437. if param != "" {
  438. uri = "bilibili://pegasus/list/daily/" + param
  439. }
  440. case GotoAlbum:
  441. if param != "" {
  442. uri = "bilibili://album/" + param
  443. }
  444. case GotoClip:
  445. if param != "" {
  446. uri = "bilibili://clip/" + param
  447. }
  448. case GotoTag:
  449. if param != "" {
  450. uri = "bilibili://pegasus/channel/" + param
  451. }
  452. case GotoMid:
  453. if param != "" {
  454. uri = "bilibili://space/" + param
  455. }
  456. case GotoDynamicMid:
  457. if param != "" {
  458. uri = "bilibili://space/" + param + "?defaultTab=dynamic"
  459. }
  460. case GotoRank:
  461. uri = "bilibili://rank/"
  462. case GotoConverge:
  463. if param != "" {
  464. uri = "bilibili://pegasus/converge/" + param
  465. }
  466. case GotoLiveTag:
  467. uri = "https://live.bilibili.com/app/area"
  468. case GotoHotTopic:
  469. uri = "bilibili://pegasus/channel/" + param
  470. case GotoWeb:
  471. uri = param
  472. case GotoPicture:
  473. uri = "bilibili://following/detail/" + param
  474. case GotoPictureTag:
  475. uri = "bilibili://pegasus/channel/0/?name=" + param + "&type=topic"
  476. case GotoHotDynamic:
  477. uri = "bilibili://following/detail/" + param
  478. default:
  479. uri = param
  480. }
  481. if f != nil {
  482. uri = f(uri)
  483. }
  484. return
  485. }
  486. // DurationString duration to string
  487. func DurationString(second int64) (s string) {
  488. var hour, min, sec int
  489. if second < 1 {
  490. return
  491. }
  492. d, err := time.ParseDuration(strconv.FormatInt(second, 10) + "s")
  493. if err != nil {
  494. log.Error("%+v", err)
  495. return
  496. }
  497. r := strings.NewReplacer("h", ":", "m", ":", "s", ":")
  498. ts := strings.Split(strings.TrimSuffix(r.Replace(d.String()), ":"), ":")
  499. if len(ts) == 1 {
  500. sec, _ = strconv.Atoi(ts[0])
  501. } else if len(ts) == 2 {
  502. min, _ = strconv.Atoi(ts[0])
  503. sec, _ = strconv.Atoi(ts[1])
  504. } else if len(ts) == 3 {
  505. hour, _ = strconv.Atoi(ts[0])
  506. min, _ = strconv.Atoi(ts[1])
  507. sec, _ = strconv.Atoi(ts[2])
  508. }
  509. if hour == 0 {
  510. s = fmt.Sprintf("%d:%02d", min, sec)
  511. return
  512. }
  513. s = fmt.Sprintf("%d:%02d:%02d", hour, min, sec)
  514. return
  515. }
  516. // StatString Stat to string
  517. func StatString(number int32, suffix string) (s string) {
  518. if number == 0 {
  519. s = "-" + suffix
  520. return
  521. }
  522. if number < 10000 {
  523. s = strconv.FormatInt(int64(number), 10) + suffix
  524. return
  525. }
  526. if number < 100000000 {
  527. s = strconv.FormatFloat(float64(number)/10000, 'f', 1, 64)
  528. return strings.TrimSuffix(s, ".0") + "万" + suffix
  529. }
  530. s = strconv.FormatFloat(float64(number)/100000000, 'f', 1, 64)
  531. return strings.TrimSuffix(s, ".0") + "亿" + suffix
  532. }
  533. // ArchiveViewString ArchiveView to string
  534. func ArchiveViewString(number int32) string {
  535. const _suffix = "观看"
  536. return StatString(number, _suffix)
  537. }
  538. // DanmakuString Danmaku to string
  539. func DanmakuString(number int32) string {
  540. const _suffix = "弹幕"
  541. return StatString(number, _suffix)
  542. }
  543. // LikeString Danmaku to string
  544. func LikeString(number int32) string {
  545. const _suffix = "点赞"
  546. return StatString(number, _suffix)
  547. }
  548. // BangumiFavString BangumiFav to string
  549. func BangumiFavString(number int32) string {
  550. const _suffix = "追番"
  551. return StatString(number, _suffix)
  552. }
  553. // LiveOnlineString online to string
  554. func LiveOnlineString(number int32) string {
  555. const _suffix = "人气"
  556. return StatString(number, _suffix)
  557. }
  558. // FanString fan to string
  559. func FanString(number int32) string {
  560. const _suffix = "粉丝"
  561. return StatString(number, _suffix)
  562. }
  563. // AttentionString fan to string
  564. func AttentionString(number int32) string {
  565. const _suffix = "人关注"
  566. return StatString(number, _suffix)
  567. }
  568. // AudioDescString audio to string
  569. func AudioDescString(firstSong string, total int) (desc1, desc2 string) {
  570. desc1 = firstSong
  571. if total == 1 {
  572. desc2 = "共1首歌曲"
  573. return
  574. }
  575. desc2 = "...共" + strconv.Itoa(total) + "首歌曲"
  576. return
  577. }
  578. // AudioTotalStirng audioTotal to string
  579. func AudioTotalStirng(total int) string {
  580. if total == 0 {
  581. return ""
  582. }
  583. return strconv.Itoa(total) + "首歌曲"
  584. }
  585. // AudioBadgeString audioBadge to string
  586. func AudioBadgeString(number int8) string {
  587. if number == 5 {
  588. return "专辑"
  589. }
  590. return "歌单"
  591. }
  592. // AudioPlayString audioPlay to string
  593. func AudioPlayString(number int32) string {
  594. const _suffix = "收听"
  595. return StatString(number, _suffix)
  596. }
  597. // AudioFavString audioFav to string
  598. func AudioFavString(numbber int32) string {
  599. const _suffix = "收藏"
  600. return StatString(numbber, _suffix)
  601. }
  602. // DownloadString download to string
  603. func DownloadString(number int32) string {
  604. if number == 0 {
  605. return ""
  606. }
  607. const _suffix = "下载"
  608. return StatString(number, _suffix)
  609. }
  610. // ArticleViewString articleView to string
  611. func ArticleViewString(number int64) string {
  612. const _suffix = "阅读"
  613. return StatString(int32(number), _suffix)
  614. }
  615. // PictureViewString pictureView to string
  616. func PictureViewString(number int64) string {
  617. const _suffix = "浏览"
  618. return StatString(int32(number), _suffix)
  619. }
  620. // ArticleReplyString articleReply to string
  621. func ArticleReplyString(number int64) string {
  622. const _suffix = "评论"
  623. return StatString(int32(number), _suffix)
  624. }
  625. // SubscribeString subscribe to string
  626. func SubscribeString(number int32) string {
  627. const _suffix = "人已订阅"
  628. return StatString(number, _suffix)
  629. }
  630. // RecommendString recommend to string
  631. func RecommendString(like, dislike int32) string {
  632. rcmd := like / (like + dislike) * 100
  633. if rcmd != 0 {
  634. return strconv.Itoa(int(rcmd)) + "%的人推荐"
  635. }
  636. return ""
  637. }
  638. // ShoppingDuration shopping duration
  639. func ShoppingDuration(stime, etime string) string {
  640. if stime == "" && etime == "" {
  641. return ""
  642. }
  643. return stime + " - " + etime
  644. }
  645. // ScoreString is
  646. func ScoreString(number int32) string {
  647. const _prefix = "综合评分:"
  648. score := StatString(number, "")
  649. if score != "" {
  650. return _prefix + score
  651. }
  652. return _prefix + "-"
  653. }
  654. // ShoppingCover is
  655. func ShoppingCover(cover string) string {
  656. if strings.HasPrefix(cover, "http:") || strings.HasPrefix(cover, "https:") {
  657. return cover
  658. }
  659. return "http:" + cover
  660. }
  661. // BangumiIcon is.
  662. func BangumiIcon(typ int8) (icon Icon) {
  663. switch typ {
  664. case 1, 4:
  665. icon = IconFavorite
  666. case 2, 3, 5:
  667. icon = IconStar
  668. }
  669. return icon
  670. }
  671. // PubDataString is.
  672. func PubDataString(t time.Time) (s string) {
  673. if t.IsZero() {
  674. return
  675. }
  676. now := time.Now()
  677. sub := now.Sub(t)
  678. if sub < time.Minute {
  679. s = "刚刚"
  680. return
  681. }
  682. if sub < time.Hour {
  683. s = strconv.FormatFloat(sub.Minutes(), 'f', 0, 64) + "分钟前"
  684. return
  685. }
  686. if sub < 24*time.Hour {
  687. s = strconv.FormatFloat(sub.Hours(), 'f', 0, 64) + "小时前"
  688. return
  689. }
  690. if now.Year() == t.Year() {
  691. if now.YearDay()-t.YearDay() == 1 {
  692. s = "昨天"
  693. return
  694. }
  695. s = t.Format("01-02")
  696. return
  697. }
  698. s = t.Format("2006-01-02")
  699. return
  700. }
  701. // PictureCountString is.
  702. func PictureCountString(count int) string {
  703. return strconv.Itoa(count) + "P"
  704. }
  705. // OfficialIcon return 认证图标(1 UP 主认证,2 身份认证)黄标,(3 企业认证,4 政府认证,5 媒体认证,6 其他认证)蓝标
  706. func OfficialIcon(cd *account.Card) (icon Icon) {
  707. if cd == nil {
  708. return
  709. }
  710. switch cd.Official.Role {
  711. case 1, 2:
  712. icon = IconRoleYellow
  713. case 3, 4, 5, 6:
  714. icon = IconRoleBlue
  715. }
  716. return
  717. }