music.go 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. package music
  2. import (
  3. "encoding/json"
  4. "go-common/app/interface/main/creative/model/activity"
  5. "go-common/app/interface/main/creative/model/app"
  6. accMdl "go-common/app/service/main/account/model"
  7. "go-common/app/service/main/archive/api"
  8. "go-common/library/time"
  9. )
  10. var (
  11. platMap = map[string][]int{
  12. "android": {0, 1},
  13. "ios": {0, 2},
  14. }
  15. // ViewTpMap map
  16. ViewTpMap = map[int8]string{
  17. 0: "subtitle",
  18. 1: "font",
  19. 2: "filter",
  20. 5: "sticker",
  21. 7: "videoup_sticker",
  22. 8: "transition",
  23. 9: "cooperate",
  24. 10: "theme",
  25. }
  26. )
  27. // BuildComp str
  28. type BuildComp struct {
  29. Condition int8 `json:"conditions"`
  30. Build int `json:"build"`
  31. }
  32. // AllowMaterial fn
  33. // 1:platform first; 2:build alg; 3:user whitelist
  34. func (v *Material) AllowMaterial(m Material, platStr string, buildParam int, white bool) (ret bool) {
  35. if v.White == 1 && !white {
  36. return false
  37. }
  38. if v.Platform == 0 {
  39. return true
  40. }
  41. platOK := false
  42. for _, num := range platMap[platStr] {
  43. if m.Platform == num {
  44. platOK = true
  45. }
  46. }
  47. buildOK := true
  48. for _, v := range m.BuildComps {
  49. if !app.AllowBuild(buildParam, v.Condition, v.Build) {
  50. buildOK = false
  51. }
  52. }
  53. return buildOK && platOK
  54. }
  55. // Music str
  56. type Music struct {
  57. ID int64 `json:"id"`
  58. TID int `json:"tid"`
  59. Index int `json:"index"`
  60. SID int64 `json:"sid"`
  61. Name string `json:"name"`
  62. Musicians string `json:"musicians"`
  63. UpMID int64 `json:"mid"`
  64. Cover string `json:"cover"`
  65. Stat string `json:"stat"`
  66. Playurl string `json:"playurl"`
  67. State int `json:"state"`
  68. Duration int `json:"duration"`
  69. FileSize int `json:"filesize"`
  70. CTime time.Time `json:"ctime"`
  71. Pubtime time.Time `json:"pubtime"`
  72. MTime time.Time `json:"mtime"`
  73. TagsStr string `json:"-"`
  74. Tags []string `json:"tags"`
  75. Timeline json.RawMessage `json:"-"`
  76. Tl []*TimePoint `json:"timeline"`
  77. RecommendPoint int64 `json:"recommend_point"`
  78. Cooperate int8 `json:"cooperate"`
  79. CooperateURL string `json:"cooperate_url"`
  80. New int8 `json:"new"`
  81. Hotval int `json:"hotval"`
  82. }
  83. // BgmExt str
  84. type BgmExt struct {
  85. Msc *Music `json:"msc"`
  86. ExtMscs []*Music `json:"ext_mscs"`
  87. ExtArcs []*api.Arc `json:"ext_arcs"`
  88. UpProfile *accMdl.Profile `json:"up_profile"`
  89. ShouldFollow bool `json:"show_follow"`
  90. }
  91. // TimePoint str
  92. type TimePoint struct {
  93. Point int64 `json:"point"`
  94. Comment string `json:"comment"`
  95. Recommend int `json:"recommend"`
  96. }
  97. // Category str
  98. type Category struct {
  99. ID int `json:"id"`
  100. PID int `json:"pid"`
  101. Name string `json:"name"`
  102. Index int `json:"index"`
  103. CameraIndex int `json:"camera_index"`
  104. Children []*Music `json:"children"`
  105. }
  106. // Mcategory str
  107. type Mcategory struct {
  108. ID int64 `json:"id"`
  109. SID int64 `json:"sid"`
  110. Tid int `json:"tid"`
  111. Index int `json:"index"`
  112. CTime time.Time `json:"ctime"`
  113. New int8 `json:"new"`
  114. }
  115. // Audio str
  116. type Audio struct {
  117. Title string `json:"title"`
  118. Cover string `json:"cover_url"`
  119. }
  120. // Material str
  121. type Material struct {
  122. Type int8 `json:"type"`
  123. Platform int `json:"platform"`
  124. Build json.RawMessage `json:"build"`
  125. BuildComps []*BuildComp `json:"build_comps"`
  126. White int8 `json:"white"`
  127. New int8 `json:"new"`
  128. }
  129. // Basic str
  130. type Basic struct {
  131. ID int64 `json:"id"`
  132. Name string `json:"name"`
  133. Cover string `json:"cover"`
  134. DownloadURL string `json:"download_url"`
  135. Rank int `json:"rank"`
  136. Max int `json:"max"`
  137. Extra json.RawMessage `json:"-"`
  138. Material `json:"-"`
  139. MTime time.Time `json:"mtime"`
  140. Tags []string `json:"tags"`
  141. }
  142. // Cooperate str db+search+api
  143. type Cooperate struct {
  144. ID int64 `json:"id"`
  145. Name string `json:"name"`
  146. Cover string `json:"cover"`
  147. Rank int `json:"rank"`
  148. Extra json.RawMessage `json:"-"`
  149. Material `json:"-"`
  150. MTime time.Time `json:"mtime"`
  151. New int8 `json:"new"`
  152. Tags []string `json:"tags"`
  153. // special extra column for cooperate
  154. MaterialAID int64 `json:"material_aid"`
  155. MaterialCID int64 `json:"material_cid"`
  156. DemoAID int64 `json:"demo_aid"`
  157. DemoCID int64 `json:"demo_cid"`
  158. MissionID int64 `json:"mission_id"`
  159. SubType int `json:"sub_type"`
  160. Style int `json:"style"`
  161. Mission *activity.Activity `json:"mission_info"`
  162. HotVal int `json:"hotval"`
  163. ArcCnt int `json:"-"`
  164. DownloadURL string `json:"download_url"`
  165. }
  166. // Subtitle str
  167. type Subtitle struct {
  168. ID int64 `json:"id"`
  169. Name string `json:"name"`
  170. Cover string `json:"cover"`
  171. DownloadURL string `json:"download_url"`
  172. Rank int `json:"rank"`
  173. Max int `json:"max"`
  174. Extra json.RawMessage `json:"-"`
  175. Material `json:"-"`
  176. MTime time.Time `json:"mtime"`
  177. New int8 `json:"new"`
  178. Tags []string `json:"tags"`
  179. }
  180. // Font str
  181. type Font struct {
  182. ID int64 `json:"id"`
  183. Name string `json:"name"`
  184. Cover string `json:"cover"`
  185. DownloadURL string `json:"download_url"`
  186. Rank int `json:"rank"`
  187. Extra json.RawMessage `json:"-"`
  188. Material `json:"-"`
  189. MTime time.Time `json:"mtime"`
  190. New int8 `json:"new"`
  191. Tags []string `json:"tags"`
  192. }
  193. // Filter str
  194. type Filter struct {
  195. ID int64 `json:"id"`
  196. Name string `json:"name"`
  197. Cover string `json:"cover"`
  198. DownloadURL string `json:"download_url"`
  199. Rank int `json:"rank"`
  200. Extra json.RawMessage `json:"-"`
  201. Material `json:"-"`
  202. MTime time.Time `json:"mtime"`
  203. New int8 `json:"new"`
  204. Tags []string `json:"tags"`
  205. FilterType int8 `json:"filter_type"`
  206. }
  207. // VSticker str
  208. type VSticker struct {
  209. ID int64 `json:"id"`
  210. Name string `json:"name"`
  211. Cover string `json:"cover"`
  212. DownloadURL string `json:"download_url"`
  213. Rank int `json:"rank"`
  214. Extra json.RawMessage `json:"-"`
  215. Material `json:"-"`
  216. MTime time.Time `json:"mtime"`
  217. New int8 `json:"new"`
  218. Tags []string `json:"tags"`
  219. }
  220. // Transition str
  221. type Transition struct {
  222. ID int64 `json:"id"`
  223. Name string `json:"name"`
  224. Cover string `json:"cover"`
  225. DownloadURL string `json:"download_url"`
  226. Rank int `json:"rank"`
  227. Extra json.RawMessage `json:"-"`
  228. Material `json:"-"`
  229. MTime time.Time `json:"mtime"`
  230. New int8 `json:"new"`
  231. Tags []string `json:"tags"`
  232. }
  233. // Theme str
  234. type Theme struct {
  235. ID int64 `json:"id"`
  236. Name string `json:"name"`
  237. Cover string `json:"cover"`
  238. DownloadURL string `json:"download_url"`
  239. Rank int `json:"rank"`
  240. Extra json.RawMessage `json:"-"`
  241. Material `json:"-"`
  242. MTime time.Time `json:"mtime"`
  243. New int8 `json:"new"`
  244. Tags []string `json:"tags"`
  245. }
  246. // Sticker str
  247. type Sticker struct {
  248. ID int64 `json:"id"`
  249. Name string `json:"name"`
  250. Cover string `json:"cover"`
  251. DownloadURL string `json:"download_url"`
  252. Rank int `json:"rank"`
  253. Extra json.RawMessage `json:"-"`
  254. Material `json:"-"`
  255. SubType int64 `json:"sub_type"`
  256. Tip string `json:"tip"`
  257. MTime time.Time `json:"mtime"`
  258. New int8 `json:"new"`
  259. Tags []string `json:"tags"`
  260. }
  261. // Hotword str
  262. type Hotword struct {
  263. ID int64 `json:"id"`
  264. Name string `json:"name"`
  265. Cover string `json:"cover"`
  266. DownloadURL string `json:"download_url"`
  267. Rank int `json:"rank"`
  268. Extra json.RawMessage `json:"-"`
  269. Material `json:"-"`
  270. MTime time.Time `json:"mtime"`
  271. New int8 `json:"new"`
  272. Tags []string `json:"tags"`
  273. }
  274. // Intro str
  275. type Intro struct {
  276. ID int64 `json:"id"`
  277. Name string `json:"name"`
  278. Cover string `json:"cover"`
  279. DownloadURL string `json:"download_url"`
  280. Rank int `json:"rank"`
  281. Extra json.RawMessage `json:"-"`
  282. Material `json:"-"`
  283. MTime time.Time `json:"mtime"`
  284. New int8 `json:"new"`
  285. Tags []string `json:"tags"`
  286. }
  287. // MaterialBind str
  288. type MaterialBind struct {
  289. CID int64
  290. MID int64
  291. CName string
  292. CRank int
  293. BRank int
  294. Tp int
  295. New int
  296. }
  297. // FilterCategory str
  298. type FilterCategory struct {
  299. ID int64 `json:"id"`
  300. Name string `json:"name"`
  301. Rank int `json:"rank"`
  302. Tp int `json:"type"`
  303. Children []*Filter `json:"children"`
  304. New int `json:"new"`
  305. }
  306. // VstickerCategory str
  307. type VstickerCategory struct {
  308. ID int64 `json:"id"`
  309. Name string `json:"name"`
  310. Rank int `json:"rank"`
  311. Tp int `json:"type"`
  312. Children []*VSticker `json:"children"`
  313. New int `json:"new"`
  314. }