const.go 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. package model
  2. import (
  3. "fmt"
  4. livemdl "go-common/app/interface/main/app-interface/model/live"
  5. "go-common/app/service/main/archive/model/archive"
  6. "go-common/library/conf/env"
  7. )
  8. // app-interface const
  9. const (
  10. // PlatAndroid is int8 for android.
  11. PlatAndroid = int8(0)
  12. // PlatIPhone is int8 for iphone.
  13. PlatIPhone = int8(1)
  14. // PlatIPad is int8 for ipad.
  15. PlatIPad = int8(2)
  16. // PlatWPhone is int8 for wphone.
  17. PlatWPhone = int8(3)
  18. // PlatAndroidG is int8 for Android Googleplay.
  19. PlatAndroidG = int8(4)
  20. // PlatIPhoneI is int8 for Iphone Global.
  21. PlatIPhoneI = int8(5)
  22. // PlatIPadI is int8 for IPAD Global.
  23. PlatIPadI = int8(6)
  24. // PlatAndroidTV is int8 for AndroidTV Global.
  25. PlatAndroidTV = int8(7)
  26. // PlatAndroidI is int8 for Android Global.
  27. PlatAndroidI = int8(8)
  28. // PlatIpadHD is int8 for IpadHD
  29. PlatIpadHD = int8(9)
  30. // PlatAndroidB is int8 for Android Blue.
  31. PlatAndroidB = int8(10)
  32. // PlatIPhoneB is int8 for Android Blue.
  33. PlatIPhoneB = int8(11)
  34. GotoAv = "av"
  35. GotoWeb = "web"
  36. GotoBangumi = "bangumi"
  37. GotoMovie = "movie"
  38. GotoBangumiWeb = "bangumi_web"
  39. GotoSp = "sp"
  40. GotoLive = "live"
  41. GotoGame = "game"
  42. GotoAuthor = "author"
  43. GotoClip = "clip"
  44. GotoAlbum = "album"
  45. GotoArticle = "article"
  46. GotoAudio = "audio"
  47. GotoSpecial = "special"
  48. GotoBanner = "banner"
  49. GotoSpecialS = "special_s"
  50. GotoConverge = "converge"
  51. GOtoRecommendWord = "recommend_word"
  52. GotoPGC = "pgc"
  53. GotoSuggestKeyWord = "suggest_keyword"
  54. GotoComic = "comic"
  55. GotoChannel = "channel"
  56. GotoEP = "ep"
  57. GotoTwitter = "twitter"
  58. GotoStar = "star"
  59. GotoTicket = "ticket"
  60. GotoProduct = "product"
  61. GotoSpace = "space"
  62. GotoSpecialerGuide = "special_guide"
  63. GotoDynamic = "dynamic"
  64. // EnvPro is pro.
  65. EnvPro = "pro"
  66. EnvHK = "hk"
  67. // EnvTest is env.
  68. EnvTest = "test"
  69. // EnvDev is env.
  70. EnvDev = "dev"
  71. // ForbidCode is forbid by law
  72. ForbidCode = -110
  73. NoResultCode = -111
  74. CoverIng = "即将上映"
  75. CoverPay = "付费观看"
  76. CoverFree = "免费观看"
  77. CoverVipFree = "付费观看"
  78. CoverVipOnly = "专享"
  79. CoverVipFirst = "抢先"
  80. Hans = "hans"
  81. Hant = "hant"
  82. // AttrNo attribute no
  83. AttrNo = int32(0)
  84. // AttrYes attribute yes
  85. AttrYes = int32(1)
  86. AttrBitArchive = uint32(0)
  87. AttrBitArticle = uint32(1)
  88. AttrBitClip = uint32(2)
  89. AttrBitAlbum = uint32(3)
  90. AttrBitAudio = uint32(34)
  91. )
  92. // for FillURI
  93. var (
  94. AvHandler = func(a *archive.Archive3) func(uri string) string {
  95. return func(uri string) string {
  96. if a == nil {
  97. return uri
  98. }
  99. if a.Dimension.Height != 0 || a.Dimension.Width != 0 {
  100. return fmt.Sprintf("%s?player_width=%d&player_height=%d&player_rotate=%d", uri, a.Dimension.Width, a.Dimension.Height, a.Dimension.Rotate)
  101. }
  102. return uri
  103. }
  104. }
  105. LiveHandler = func(l *livemdl.RoomInfo) func(uri string) string {
  106. return func(uri string) string {
  107. if l == nil {
  108. return uri
  109. }
  110. if l.BroadcastType == 0 || l.BroadcastType == 1 {
  111. return fmt.Sprintf("%s?broadcast_type=%d", uri, l.BroadcastType)
  112. }
  113. return uri
  114. }
  115. }
  116. )
  117. // IsAndroid check plat is android or ipad.
  118. func IsAndroid(plat int8) bool {
  119. return plat == PlatAndroid || plat == PlatAndroidG || plat == PlatAndroidI || plat == PlatAndroidB
  120. }
  121. // IsIOS check plat is iphone or ipad.
  122. func IsIOS(plat int8) bool {
  123. return plat == PlatIPad || plat == PlatIPhone || plat == PlatIPadI || plat == PlatIPhoneI
  124. }
  125. // IsIPhone check plat is iphone.
  126. func IsIPhone(plat int8) bool {
  127. return plat == PlatIPhone || plat == PlatIPhoneI
  128. }
  129. // IsIPad check plat is pad.
  130. func IsIPad(plat int8) bool {
  131. return plat == PlatIPad || plat == PlatIPadI || plat == PlatIpadHD
  132. }
  133. // IsIPhoneB check plat is iphone_b.
  134. func IsIPhoneB(plat int8) bool {
  135. return plat == PlatIPhoneB
  136. }
  137. // Plat return plat by platStr or mobiApp
  138. func Plat(mobiApp, device string) int8 {
  139. switch mobiApp {
  140. case "iphone":
  141. if device == "pad" {
  142. return PlatIPad
  143. }
  144. return PlatIPhone
  145. case "white":
  146. return PlatIPhone
  147. case "ipad":
  148. return PlatIpadHD
  149. case "android":
  150. return PlatAndroid
  151. case "win", "winphone":
  152. return PlatWPhone
  153. case "android_G":
  154. return PlatAndroidG
  155. case "android_i":
  156. return PlatAndroidI
  157. case "iphone_i":
  158. if device == "pad" {
  159. return PlatIPadI
  160. }
  161. return PlatIPhoneI
  162. case "ipad_i":
  163. return PlatIPadI
  164. case "android_tv":
  165. return PlatAndroidTV
  166. case "android_b":
  167. return PlatAndroidB
  168. case "iphone_b":
  169. return PlatIPhoneB
  170. }
  171. return PlatIPhone
  172. }
  173. // IsOverseas is overseas
  174. func IsOverseas(plat int8) bool {
  175. return plat == PlatAndroidI || plat == PlatIPhoneI || plat == PlatIPadI
  176. }
  177. // FillURI deal app schema.
  178. func FillURI(gt, param string, f func(uri string) string) (uri string) {
  179. switch gt {
  180. case GotoAv, "":
  181. uri = "bilibili://video/" + param
  182. case GotoLive:
  183. uri = "bilibili://live/" + param
  184. case GotoBangumi:
  185. uri = "bilibili://bangumi/season/" + param
  186. case GotoBangumiWeb:
  187. uri = "http://bangumi.bilibili.com/anime/" + param
  188. case GotoGame:
  189. uri = "bilibili://game_center/detail?id=" + param + "&sourceType=adPut"
  190. case GotoSp:
  191. uri = "bilibili://splist/" + param
  192. case GotoAuthor:
  193. uri = "bilibili://author/" + param
  194. case GotoClip:
  195. uri = "bilibili://clip/" + param
  196. case GotoAlbum:
  197. uri = "bilibili://album/" + param
  198. case GotoArticle:
  199. uri = "bilibili://article/" + param
  200. case GotoWeb:
  201. uri = param
  202. case GotoPGC:
  203. uri = "https://www.bilibili.com/bangumi/play/ss" + param
  204. case GotoChannel:
  205. uri = "bilibili://pegasus/channel/" + param + "/"
  206. case GotoEP:
  207. uri = "https://www.bilibili.com/bangumi/play/ep" + param
  208. case GotoTwitter:
  209. uri = "bilibili://pictureshow/detail/" + param
  210. case GotoSpace:
  211. uri = "bilibili://space/" + param
  212. case GotoDynamic:
  213. uri = "bilibili://following/detail/" + param
  214. }
  215. if f != nil {
  216. uri = f(uri)
  217. }
  218. return
  219. }
  220. // StatusMark cover status mark
  221. func StatusMark(status int) string {
  222. if status == 0 {
  223. return CoverIng
  224. } else if status == 1 {
  225. return CoverPay
  226. } else if status == 2 {
  227. return CoverFree
  228. } else if status == 3 {
  229. return CoverVipFree
  230. } else if status == 4 {
  231. return CoverVipOnly
  232. } else if status == 5 {
  233. return CoverVipFirst
  234. }
  235. return ""
  236. }
  237. // AttrVal get attribute value
  238. func AttrVal(attr int32, bit uint32) (v int32) {
  239. v = (attr >> bit) & int32(1)
  240. return
  241. }
  242. // AttrSet set attribute value
  243. func AttrSet(attr int32, v int32, bit uint32) int32 {
  244. return attr&(^(1 << bit)) | (v << bit)
  245. }
  246. // Direction define
  247. type Direction int
  248. // app-interface const
  249. const (
  250. Upward Direction = 1
  251. Downward Direction = 2
  252. )
  253. // Cursor struct
  254. type Cursor struct {
  255. Current int64
  256. Direction Direction
  257. Size int
  258. }
  259. // Latest judge cursor Current
  260. func (c *Cursor) Latest() bool {
  261. return c.Current == 0
  262. }
  263. // MoveUpward judge cursor Direction
  264. func (c *Cursor) MoveUpward() bool {
  265. return c.Direction == Upward
  266. }
  267. // MoveDownward judge cursor Direction
  268. func (c *Cursor) MoveDownward() bool {
  269. return c.Direction == Downward
  270. }
  271. // NewCursor judge cuser
  272. func NewCursor(maxID int64, minID int64, size int) (cuser *Cursor, err error) {
  273. if maxID < 0 || minID < 0 {
  274. err = fmt.Errorf("either max_id(%d) or min_id(%d) < 0", maxID, minID)
  275. return
  276. }
  277. if (minID * maxID) != 0 {
  278. err = fmt.Errorf("both max_id(%d) and max_id(%d) > 0", maxID, minID)
  279. return
  280. }
  281. if minID == 0 && maxID == 0 {
  282. cuser = &Cursor{Current: 0, Direction: Downward, Size: size}
  283. } else if maxID > 0 {
  284. cuser = &Cursor{Current: maxID, Direction: Downward, Size: size}
  285. } else {
  286. cuser = &Cursor{Current: minID, Direction: Upward, Size: size}
  287. }
  288. return
  289. }
  290. // InvalidBuild invalid build
  291. func InvalidBuild(srcBuild, cfgBuild int, cfgCond string) bool {
  292. if cfgBuild != 0 && cfgCond != "" {
  293. switch cfgCond {
  294. case "gt":
  295. if cfgBuild >= srcBuild {
  296. return true
  297. }
  298. case "lt":
  299. if cfgBuild <= srcBuild {
  300. return true
  301. }
  302. case "eq":
  303. if cfgBuild != srcBuild {
  304. return true
  305. }
  306. case "ne":
  307. if cfgBuild == srcBuild {
  308. return true
  309. }
  310. }
  311. }
  312. return false
  313. }
  314. // env sh001 run
  315. func EnvRun() (res bool) {
  316. var _zone = "sh001"
  317. if env.Zone == _zone {
  318. return true
  319. }
  320. return false
  321. }
  322. // FormMediaType media type
  323. func FormMediaType(mediaType int) (mediaName string) {
  324. switch mediaType {
  325. case 1:
  326. mediaName = "番剧"
  327. case 2:
  328. mediaName = "电影"
  329. case 3:
  330. mediaName = "纪录片"
  331. case 4:
  332. mediaName = "国创"
  333. case 5:
  334. mediaName = "电视剧"
  335. case 6:
  336. mediaName = "漫画"
  337. case 7:
  338. mediaName = "综艺"
  339. case 123:
  340. mediaName = "电视剧"
  341. case 124:
  342. mediaName = "电视剧"
  343. case 125:
  344. mediaName = "纪录片"
  345. case 126:
  346. mediaName = "电影"
  347. case 127:
  348. mediaName = "动漫"
  349. }
  350. return
  351. }
  352. // ReasonStyle reason style
  353. type ReasonStyle struct {
  354. Text string `json:"text,omitempty"`
  355. TextColor string `json:"text_color,omitempty"`
  356. TextColorNight string `json:"text_color_night,omitempty"`
  357. BgColor string `json:"bg_color,omitempty"`
  358. BgColorNight string `json:"bg_color_night,omitempty"`
  359. BorderColor string `json:"border_color,omitempty"`
  360. BorderColorNight string `json:"border_color_night,omitempty"`
  361. BgStyle int8 `json:"bg_style,omitempty"`
  362. }