const.go 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. package model
  2. import (
  3. "fmt"
  4. "go-common/app/service/main/archive/api"
  5. "strconv"
  6. "strings"
  7. )
  8. const (
  9. // PlatAndroid is int8 for android.
  10. PlatAndroid = int8(0)
  11. // PlatIPhone is int8 for iphone.
  12. PlatIPhone = int8(1)
  13. // PlatIPad is int8 for ipad.
  14. PlatIPad = int8(2)
  15. // PlatWPhone is int8 for wphone.
  16. PlatWPhone = int8(3)
  17. // PlatAndroidG is int8 for Android Global.
  18. PlatAndroidG = int8(4)
  19. // PlatIPhoneI is int8 for Iphone Global.
  20. PlatIPhoneI = int8(5)
  21. // PlatIPadI is int8 for IPAD Global.
  22. PlatIPadI = int8(6)
  23. // PlatAndroidTV is int8 for AndroidTV Global.
  24. PlatAndroidTV = int8(7)
  25. // PlatAndroidI is int8 for Android Global.
  26. PlatAndroidI = int8(8)
  27. // PlatAndroidB is int8 for Android Bule.
  28. PlatAndroidB = int8(9)
  29. GotoAv = "av"
  30. GotoWeb = "web"
  31. GotoBangumi = "bangumi"
  32. GotoBangumiWeb = "bangumi_web"
  33. GotoSp = "sp"
  34. GotoLive = "live"
  35. GotoGame = "game"
  36. GotoArticle = "article"
  37. GotoActivity = "activity_new"
  38. GotoTopic = "topic_new"
  39. GotoDaily = "daily"
  40. GotoRank = "rank"
  41. GotoCard = "card"
  42. GotoVeidoCard = "video_card"
  43. GotoSpecialCard = "special_card"
  44. GotoTagCard = "tag_card"
  45. GotoColumn = "column"
  46. GotoColumnStage = "column_stage"
  47. GotoTagID = "tag_id"
  48. GotoHotTopic = "hottopic"
  49. GotoUpRcmdNew = "up_rcmd_new"
  50. GotoUpRcmdNewV2 = "up_rcmd_new_v2"
  51. GotoHotDynamic = "hot_dynamic"
  52. GotoEventTopic = "event_topic"
  53. CardGotoAv = int8(1)
  54. CardGotoTopic = int8(2)
  55. CardGotoActivity = int8(3)
  56. // EnvPro is pro.
  57. EnvPro = "pro"
  58. // EnvTest is env.
  59. EnvTest = "test"
  60. // EnvDev is env.
  61. EnvDev = "dev"
  62. // movie copywriting
  63. CoverIng = "即将上映"
  64. CoverPay = "付费观看"
  65. CoverFree = "免费观看"
  66. CoverVipFree = "付费观看"
  67. CoverVipOnly = "专享"
  68. CoverVipFirst = "抢先"
  69. )
  70. var (
  71. AvHandler = func(a *api.Arc) func(uri string) string {
  72. return func(uri string) string {
  73. if a == nil {
  74. return uri
  75. }
  76. if a.Dimension.Height != 0 || a.Dimension.Width != 0 {
  77. return fmt.Sprintf("%s?player_width=%d&player_height=%d&player_rotate=%d", uri, a.Dimension.Width, a.Dimension.Height, a.Dimension.Rotate)
  78. }
  79. return uri
  80. }
  81. }
  82. )
  83. // IsAndroid check plat is android or ipad.
  84. func IsAndroid(plat int8) bool {
  85. return plat == PlatAndroid || plat == PlatAndroidG || plat == PlatAndroidB || plat == PlatAndroidI
  86. }
  87. // IsIOS check plat is iphone or ipad.
  88. func IsIOS(plat int8) bool {
  89. return plat == PlatIPad || plat == PlatIPhone || plat == PlatIPadI || plat == PlatIPhoneI
  90. }
  91. // IsIPad check plat is pad.
  92. func IsIPad(plat int8) bool {
  93. return plat == PlatIPad || plat == PlatIPadI
  94. }
  95. // FillURI deal app schema.
  96. func FillURI(gt, param string, f func(uri string) string) (uri string) {
  97. if param == "" {
  98. return
  99. }
  100. switch gt {
  101. case GotoAv, "":
  102. uri = "bilibili://video/" + param
  103. case GotoLive:
  104. uri = "bilibili://live/" + param
  105. case GotoBangumi:
  106. uri = "bilibili://bangumi/season/" + param
  107. case GotoBangumiWeb:
  108. uri = "http://bangumi.bilibili.com/anime/" + param
  109. case GotoGame:
  110. uri = "bilibili://game/" + param
  111. case GotoSp:
  112. uri = "bilibili://splist/" + param
  113. case GotoWeb:
  114. uri = param
  115. case GotoDaily:
  116. uri = "bilibili://daily/" + param
  117. case GotoColumn:
  118. uri = "bilibili://pegasus/list/column/" + param
  119. case GotoArticle:
  120. uri = "bilibili://article/" + param
  121. }
  122. if f != nil {
  123. uri = f(uri)
  124. }
  125. return
  126. }
  127. func FillURIHotTopic(tagID, tagName string) (uri string) {
  128. return "bilibili://tag/" + tagID + "?name=" + tagName + "&show=dynamic"
  129. }
  130. func FillURIBangumi(gt, seasonID, episodeID string, episodeType int) (uri string) {
  131. var typeStr string
  132. switch episodeType {
  133. case 1, 4:
  134. typeStr = "anime"
  135. }
  136. switch gt {
  137. case GotoBangumi:
  138. uri = "http://bangumi.bilibili.com/" + typeStr + "/" + seasonID + "/play#" + episodeID
  139. }
  140. return
  141. }
  142. // FillURICategory deal app schema.
  143. func FillURICategory(gt, columnID, sectionID string) (uri string) {
  144. if columnID == "" || sectionID == "" {
  145. return
  146. }
  147. switch gt {
  148. case GotoColumnStage:
  149. uri = "bilibili://pegasus/list/column/" + columnID + "/?sectionId=" + sectionID
  150. }
  151. return
  152. }
  153. func CoverURLHTTPS(uri string) (cover string) {
  154. if strings.HasPrefix(uri, "http://") {
  155. cover = "https://" + uri[7:]
  156. } else {
  157. cover = uri
  158. }
  159. return
  160. }
  161. // CoverURL convert cover url to full url.
  162. func CoverURL(uri string) (cover string) {
  163. if uri == "" {
  164. cover = "http://static.hdslb.com/images/transparent.gif"
  165. return
  166. }
  167. if strings.HasPrefix(uri, "http://i0.hdslb.com") || strings.HasPrefix(uri, "http://i1.hdslb.com") || strings.HasPrefix(uri, "http://i2.hdslb.com") {
  168. uri = uri[19:]
  169. } else if strings.HasPrefix(uri, "https://i0.hdslb.com") || strings.HasPrefix(uri, "https://i1.hdslb.com") || strings.HasPrefix(uri, "https://i2.hdslb.com") {
  170. uri = uri[20:]
  171. }
  172. cover = uri
  173. if strings.HasPrefix(uri, "/bfs") {
  174. cover = "http://i0.hdslb.com" + uri
  175. return
  176. }
  177. if strings.Index(uri, "http://") == 0 {
  178. return
  179. }
  180. if len(uri) >= 10 && uri[:10] == "/templets/" {
  181. return
  182. }
  183. if strings.HasPrefix(uri, "group1") || strings.HasPrefix(uri, "/group1") {
  184. cover = "http://i0.hdslb.com/" + uri
  185. return
  186. }
  187. if pos := strings.Index(uri, "/uploads/"); pos != -1 && (pos == 0 || pos == 3) {
  188. cover = uri[pos+8:]
  189. }
  190. cover = strings.Replace(cover, "{IMG}", "", -1)
  191. cover = "http://i0.hdslb.com" + cover
  192. return
  193. }
  194. // InvalidBuild check source build is not allow by config build and condition.
  195. // eg: when condition is gt, means srcBuild must gt cfgBuild, otherwise is invalid srcBuild.
  196. func InvalidBuild(srcBuild, cfgBuild int, cfgCond string) bool {
  197. if cfgBuild != 0 && cfgCond != "" {
  198. switch cfgCond {
  199. case "gt":
  200. if cfgBuild >= srcBuild {
  201. return true
  202. }
  203. case "lt":
  204. if cfgBuild <= srcBuild {
  205. return true
  206. }
  207. case "eq":
  208. if cfgBuild != srcBuild {
  209. return true
  210. }
  211. case "ne":
  212. if cfgBuild == srcBuild {
  213. return true
  214. }
  215. }
  216. }
  217. return false
  218. }
  219. // InvalidChannel check source channel is not allow by config channel.
  220. func InvalidChannel(plat int8, srcCh, cfgCh string) bool {
  221. return plat == PlatAndroid && cfgCh != "*" && cfgCh != srcCh
  222. }
  223. // Plat return plat by platStr or mobiApp
  224. func Plat(mobiApp, device string) int8 {
  225. switch mobiApp {
  226. case "iphone", "iphone_b":
  227. if device == "pad" {
  228. return PlatIPad
  229. }
  230. return PlatIPhone
  231. case "white":
  232. return PlatIPhone
  233. case "ipad":
  234. return PlatIPad
  235. case "android":
  236. return PlatAndroid
  237. case "win":
  238. return PlatWPhone
  239. case "android_G":
  240. return PlatAndroidG
  241. case "android_i":
  242. return PlatAndroidI
  243. case "android_b":
  244. return PlatAndroid
  245. case "iphone_i":
  246. if device == "pad" {
  247. return PlatIPadI
  248. }
  249. return PlatIPhoneI
  250. case "ipad_i":
  251. return PlatIPadI
  252. case "android_tv":
  253. return PlatAndroidTV
  254. }
  255. return PlatIPhone
  256. }
  257. // MobiApp plat by mobi_app
  258. func MobiApp(plat int8) string {
  259. switch plat {
  260. case PlatAndroid:
  261. return "android"
  262. case PlatIPhone:
  263. return "iphone"
  264. case PlatIPad:
  265. return "ipad"
  266. case PlatAndroidI:
  267. return "android_i"
  268. case PlatIPhoneI:
  269. return "iphone_i"
  270. case PlatIPadI:
  271. return "ipad_i"
  272. case PlatAndroidG:
  273. return "android_G"
  274. }
  275. return "iphone"
  276. }
  277. func StatusMark(status int8) string {
  278. if status == 0 {
  279. return CoverIng
  280. } else if status == 1 {
  281. return CoverPay
  282. } else if status == 2 {
  283. return CoverFree
  284. } else if status == 3 {
  285. return CoverVipFree
  286. } else if status == 4 {
  287. return CoverVipOnly
  288. } else if status == 5 {
  289. return CoverVipFirst
  290. }
  291. return ""
  292. }
  293. // IsOverseas is overseas
  294. func IsOverseas(plat int8) bool {
  295. return plat == PlatAndroidI || plat == PlatIPhoneI || plat == PlatIPadI
  296. }
  297. func IsGoto(gt string) bool {
  298. return gt == GotoAv || gt == GotoWeb || gt == GotoBangumi || gt == GotoSp || gt == GotoLive || gt == GotoGame
  299. }
  300. func MobiAPPBuleChange(mobiApp string) string {
  301. switch mobiApp {
  302. case "android_b":
  303. return "android"
  304. case "iphone_b":
  305. return "iphone"
  306. }
  307. return mobiApp
  308. }
  309. func Rounding(number, divisor int64) string {
  310. if divisor > 0 {
  311. tmp := float64(number) / float64(divisor)
  312. tmpStr := fmt.Sprintf("%0.1f", tmp)
  313. parts := strings.Split(tmpStr, ".")
  314. if len(parts) > 1 && parts[1] == "0" {
  315. return parts[0]
  316. }
  317. return tmpStr
  318. }
  319. return strconv.FormatInt(number, 10)
  320. }