123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- package music
- import (
- "encoding/json"
- "go-common/app/interface/main/creative/model/activity"
- "go-common/app/interface/main/creative/model/app"
- accMdl "go-common/app/service/main/account/model"
- "go-common/app/service/main/archive/api"
- "go-common/library/time"
- )
- var (
- platMap = map[string][]int{
- "android": {0, 1},
- "ios": {0, 2},
- }
- // ViewTpMap map
- ViewTpMap = map[int8]string{
- 0: "subtitle",
- 1: "font",
- 2: "filter",
- 5: "sticker",
- 7: "videoup_sticker",
- 8: "transition",
- 9: "cooperate",
- 10: "theme",
- }
- )
- // BuildComp str
- type BuildComp struct {
- Condition int8 `json:"conditions"`
- Build int `json:"build"`
- }
- // AllowMaterial fn
- // 1:platform first; 2:build alg; 3:user whitelist
- func (v *Material) AllowMaterial(m Material, platStr string, buildParam int, white bool) (ret bool) {
- if v.White == 1 && !white {
- return false
- }
- if v.Platform == 0 {
- return true
- }
- platOK := false
- for _, num := range platMap[platStr] {
- if m.Platform == num {
- platOK = true
- }
- }
- buildOK := true
- for _, v := range m.BuildComps {
- if !app.AllowBuild(buildParam, v.Condition, v.Build) {
- buildOK = false
- }
- }
- return buildOK && platOK
- }
- // Music str
- type Music struct {
- ID int64 `json:"id"`
- TID int `json:"tid"`
- Index int `json:"index"`
- SID int64 `json:"sid"`
- Name string `json:"name"`
- Musicians string `json:"musicians"`
- UpMID int64 `json:"mid"`
- Cover string `json:"cover"`
- Stat string `json:"stat"`
- Playurl string `json:"playurl"`
- State int `json:"state"`
- Duration int `json:"duration"`
- FileSize int `json:"filesize"`
- CTime time.Time `json:"ctime"`
- Pubtime time.Time `json:"pubtime"`
- MTime time.Time `json:"mtime"`
- TagsStr string `json:"-"`
- Tags []string `json:"tags"`
- Timeline json.RawMessage `json:"-"`
- Tl []*TimePoint `json:"timeline"`
- RecommendPoint int64 `json:"recommend_point"`
- Cooperate int8 `json:"cooperate"`
- CooperateURL string `json:"cooperate_url"`
- New int8 `json:"new"`
- Hotval int `json:"hotval"`
- }
- // BgmExt str
- type BgmExt struct {
- Msc *Music `json:"msc"`
- ExtMscs []*Music `json:"ext_mscs"`
- ExtArcs []*api.Arc `json:"ext_arcs"`
- UpProfile *accMdl.Profile `json:"up_profile"`
- ShouldFollow bool `json:"show_follow"`
- }
- // TimePoint str
- type TimePoint struct {
- Point int64 `json:"point"`
- Comment string `json:"comment"`
- Recommend int `json:"recommend"`
- }
- // Category str
- type Category struct {
- ID int `json:"id"`
- PID int `json:"pid"`
- Name string `json:"name"`
- Index int `json:"index"`
- CameraIndex int `json:"camera_index"`
- Children []*Music `json:"children"`
- }
- // Mcategory str
- type Mcategory struct {
- ID int64 `json:"id"`
- SID int64 `json:"sid"`
- Tid int `json:"tid"`
- Index int `json:"index"`
- CTime time.Time `json:"ctime"`
- New int8 `json:"new"`
- }
- // Audio str
- type Audio struct {
- Title string `json:"title"`
- Cover string `json:"cover_url"`
- }
- // Material str
- type Material struct {
- Type int8 `json:"type"`
- Platform int `json:"platform"`
- Build json.RawMessage `json:"build"`
- BuildComps []*BuildComp `json:"build_comps"`
- White int8 `json:"white"`
- New int8 `json:"new"`
- }
- // Basic str
- type Basic struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- DownloadURL string `json:"download_url"`
- Rank int `json:"rank"`
- Max int `json:"max"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- MTime time.Time `json:"mtime"`
- Tags []string `json:"tags"`
- }
- // Cooperate str db+search+api
- type Cooperate struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- Rank int `json:"rank"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- MTime time.Time `json:"mtime"`
- New int8 `json:"new"`
- Tags []string `json:"tags"`
- // special extra column for cooperate
- MaterialAID int64 `json:"material_aid"`
- MaterialCID int64 `json:"material_cid"`
- DemoAID int64 `json:"demo_aid"`
- DemoCID int64 `json:"demo_cid"`
- MissionID int64 `json:"mission_id"`
- SubType int `json:"sub_type"`
- Style int `json:"style"`
- Mission *activity.Activity `json:"mission_info"`
- HotVal int `json:"hotval"`
- ArcCnt int `json:"-"`
- DownloadURL string `json:"download_url"`
- }
- // Subtitle str
- type Subtitle struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- DownloadURL string `json:"download_url"`
- Rank int `json:"rank"`
- Max int `json:"max"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- MTime time.Time `json:"mtime"`
- New int8 `json:"new"`
- Tags []string `json:"tags"`
- }
- // Font str
- type Font struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- DownloadURL string `json:"download_url"`
- Rank int `json:"rank"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- MTime time.Time `json:"mtime"`
- New int8 `json:"new"`
- Tags []string `json:"tags"`
- }
- // Filter str
- type Filter struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- DownloadURL string `json:"download_url"`
- Rank int `json:"rank"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- MTime time.Time `json:"mtime"`
- New int8 `json:"new"`
- Tags []string `json:"tags"`
- FilterType int8 `json:"filter_type"`
- }
- // VSticker str
- type VSticker struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- DownloadURL string `json:"download_url"`
- Rank int `json:"rank"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- MTime time.Time `json:"mtime"`
- New int8 `json:"new"`
- Tags []string `json:"tags"`
- }
- // Transition str
- type Transition struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- DownloadURL string `json:"download_url"`
- Rank int `json:"rank"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- MTime time.Time `json:"mtime"`
- New int8 `json:"new"`
- Tags []string `json:"tags"`
- }
- // Theme str
- type Theme struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- DownloadURL string `json:"download_url"`
- Rank int `json:"rank"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- MTime time.Time `json:"mtime"`
- New int8 `json:"new"`
- Tags []string `json:"tags"`
- }
- // Sticker str
- type Sticker struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- DownloadURL string `json:"download_url"`
- Rank int `json:"rank"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- SubType int64 `json:"sub_type"`
- Tip string `json:"tip"`
- MTime time.Time `json:"mtime"`
- New int8 `json:"new"`
- Tags []string `json:"tags"`
- }
- // Hotword str
- type Hotword struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- DownloadURL string `json:"download_url"`
- Rank int `json:"rank"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- MTime time.Time `json:"mtime"`
- New int8 `json:"new"`
- Tags []string `json:"tags"`
- }
- // Intro str
- type Intro struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Cover string `json:"cover"`
- DownloadURL string `json:"download_url"`
- Rank int `json:"rank"`
- Extra json.RawMessage `json:"-"`
- Material `json:"-"`
- MTime time.Time `json:"mtime"`
- New int8 `json:"new"`
- Tags []string `json:"tags"`
- }
- // MaterialBind str
- type MaterialBind struct {
- CID int64
- MID int64
- CName string
- CRank int
- BRank int
- Tp int
- New int
- }
- // FilterCategory str
- type FilterCategory struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Rank int `json:"rank"`
- Tp int `json:"type"`
- Children []*Filter `json:"children"`
- New int `json:"new"`
- }
- // VstickerCategory str
- type VstickerCategory struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
- Rank int `json:"rank"`
- Tp int `json:"type"`
- Children []*VSticker `json:"children"`
- New int `json:"new"`
- }
|