123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452 |
- package http
- import (
- "context"
- "encoding/json"
- "strconv"
- "time"
- "go-common/app/interface/main/app-interface/model"
- "go-common/app/interface/main/app-interface/model/space"
- "go-common/library/ecode"
- "go-common/library/log"
- bm "go-common/library/net/http/blademaster"
- )
- const (
- _crop = "@750w_250h_1c"
- )
- type userAct struct {
- Client string `json:"client"`
- Buvid string `json:"buvid"`
- Mid int64 `json:"mid"`
- Time int64 `json:"time"`
- From string `json:"from"`
- Build string `json:"build"`
- ItemID string `json:"item_id"`
- ItemType string `json:"item_type"`
- Action string `json:"action"`
- ActionID string `json:"action_id"`
- Extra string `json:"extra"`
- }
- func spaceAll(c *bm.Context) {
- var (
- mid int64
- vmid int64
- build int
- pn, ps int
- err error
- )
- params := c.Request.Form
- mobiApp := params.Get("mobi_app")
- platform := params.Get("platform")
- device := params.Get("device")
- buildStr := params.Get("build")
- name := params.Get("name")
- // check params
- if vmid, _ = strconv.ParseInt(params.Get("vmid"), 10, 64); vmid < 1 && name == "" {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if midInt, ok := c.Get("mid"); ok {
- mid = midInt.(int64)
- }
- if build, err = strconv.Atoi(buildStr); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- plat := model.Plat(mobiApp, device)
- space, err := spaceSvr.Space(c, mid, vmid, plat, build, pn, ps, platform, device, mobiApp, name, time.Now())
- if err != nil {
- c.JSON(nil, err)
- return
- }
- if model.IsIPhone(plat) && space.Space != nil && space.Space.ImgURL != "" {
- space.Space.ImgURL = space.Space.ImgURL + _crop
- }
- space.Relation = compRealtion(space.Relation, mobiApp, build, device)
- c.JSON(space, nil)
- // for ai big data
- userActPub.Send(context.TODO(), strconv.FormatInt(mid, 10), &userAct{
- Client: mobiApp,
- Buvid: c.Request.Header.Get("Buvid"),
- Mid: mid,
- Time: time.Now().Unix(),
- From: params.Get("from"),
- Build: buildStr,
- ItemID: space.Card.Mid,
- ItemType: "mid",
- Action: "space",
- })
- }
- func upArchive(c *bm.Context) {
- var (
- pn, ps int
- )
- params := c.Request.Form
- // check params
- vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
- if vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- c.JSON(spaceSvr.UpArcs(c, vmid, pn, ps, time.Now()), nil)
- }
- func myinfo(c *bm.Context) {
- mid, err := authSvc.AuthToken(c)
- if err != nil {
- shouldChangeError := false
- params := c.Request.Form
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- build, _ := strconv.Atoi(params.Get("build"))
- plat := model.Plat(mobiApp, device)
- if model.IsIPhone(plat) && build > config.LoginBuild.Iphone {
- shouldChangeError = true
- }
- if shouldChangeError && ecode.Cause(err).Equal(ecode.NoLogin) {
- c.JSON(nil, ecode.UserLoginInvalid)
- return
- }
- c.JSON(nil, err)
- return
- }
- c.JSON(accSvr.Myinfo(c, mid))
- }
- func mine(c *bm.Context) {
- params := &space.MineParam{}
- if err := c.Bind(params); err != nil {
- return
- }
- if midInter, ok := c.Get("mid"); ok {
- params.Mid = midInter.(int64)
- }
- plat := model.Plat(params.MobiApp, params.Device)
- c.JSON(accSvr.Mine(c, params.Mid, params.Platform, params.Filtered, params.Build, plat))
- }
- func mineIpad(c *bm.Context) {
- params := &space.MineParam{}
- if err := c.Bind(params); err != nil {
- return
- }
- if midInter, ok := c.Get("mid"); ok {
- params.Mid = midInter.(int64)
- }
- plat := model.Plat(params.MobiApp, params.Device)
- if model.IsIPad(plat) {
- plat = model.PlatIPad
- }
- c.JSON(accSvr.MineIpad(c, params.Mid, params.Platform, params.Filtered, params.Build, plat))
- }
- func upArticle(c *bm.Context) {
- var (
- pn, ps int
- )
- params := c.Request.Form
- // check params
- vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
- if vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- c.JSON(spaceSvr.UpArticles(c, vmid, pn, ps), nil)
- }
- func contribute(c *bm.Context) {
- var (
- vmid int64
- build int
- pn, ps int
- err error
- )
- params := c.Request.Form
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- // check params
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if vmid, _ = strconv.ParseInt(params.Get("vmid"), 10, 64); vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- plat := model.Plat(mobiApp, device)
- c.JSON(spaceSvr.Contribute(c, plat, build, vmid, pn, ps, time.Now()))
- }
- func contribution(c *bm.Context) {
- var (
- vmid int64
- build int
- maxID, minID int64
- size int
- err error
- )
- params := c.Request.Form
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- maxIDStr := params.Get("max_id")
- minIDStr := params.Get("min_id")
- // check params
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if vmid, _ = strconv.ParseInt(params.Get("vmid"), 10, 64); vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if maxIDStr != "" {
- if maxID, err = strconv.ParseInt(maxIDStr, 10, 64); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- }
- if minIDStr != "" {
- if minID, err = strconv.ParseInt(minIDStr, 10, 64); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- }
- if size, _ = strconv.Atoi(params.Get("size")); size < 1 || size > 20 {
- size = 20
- }
- cursor, err := model.NewCursor(maxID, minID, size)
- if err != nil {
- c.JSON(nil, ecode.RequestErr)
- log.Error("%+v", err)
- return
- }
- plat := model.Plat(mobiApp, device)
- c.JSON(spaceSvr.Contribution(c, plat, build, vmid, cursor, time.Now()))
- }
- func upContribute(c *bm.Context) {
- var (
- vmid int64
- attrs *space.Attrs
- items []*space.Item
- err error
- )
- params := c.Request.Form
- vmidStr := params.Get("vmid")
- attrsStr := params.Get("attrs")
- itemsStr := params.Get("items")
- // check params
- if vmid, _ = strconv.ParseInt(vmidStr, 10, 64); vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if err = json.Unmarshal([]byte(attrsStr), &attrs); err != nil {
- c.JSON(nil, ecode.RequestErr)
- log.Error("json.Unmarshal(%s) error(%v)", attrsStr, err)
- return
- }
- if err = json.Unmarshal([]byte(itemsStr), &items); err != nil {
- c.JSON(nil, ecode.RequestErr)
- log.Error("json.Unmarshal(%s) error(%v)", itemsStr, err)
- return
- }
- c.JSON(spaceSvr.AddContribute(c, vmid, attrs, items), nil)
- }
- func bangumi(c *bm.Context) {
- var (
- mid int64
- pn, ps int
- )
- params := c.Request.Form
- if midInt, ok := c.Get("mid"); ok {
- mid = midInt.(int64)
- }
- // check params
- vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
- if vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- c.JSON(spaceSvr.Bangumi(c, mid, vmid, nil, pn, ps), nil)
- }
- func community(c *bm.Context) {
- var (
- pn, ps int
- )
- params := c.Request.Form
- ak := params.Get("access_key")
- platform := params.Get("platform")
- // check params
- vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
- if vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- c.JSON(spaceSvr.Community(c, vmid, pn, ps, ak, platform), nil)
- }
- func coinArc(c *bm.Context) {
- var (
- mid int64
- pn, ps int
- )
- params := c.Request.Form
- if midInt, ok := c.Get("mid"); ok {
- mid = midInt.(int64)
- }
- // check params
- vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
- if vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- c.JSON(spaceSvr.CoinArcs(c, mid, vmid, nil, pn, ps), nil)
- }
- func likeArc(c *bm.Context) {
- var (
- mid int64
- pn, ps int
- )
- params := c.Request.Form
- if midInt, ok := c.Get("mid"); ok {
- mid = midInt.(int64)
- }
- // check params
- vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
- if vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- c.JSON(spaceSvr.LikeArcs(c, mid, vmid, nil, pn, ps), nil)
- }
- func report(c *bm.Context) {
- params := c.Request.Form
- ak := params.Get("access_key")
- reason := params.Get("reason")
- mid, _ := strconv.ParseInt(params.Get("mid"), 10, 64)
- if mid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- c.JSON(nil, spaceSvr.Report(c, mid, reason, ak))
- }
- func clips(c *bm.Context) {
- var (
- pos, ps int
- )
- params := c.Request.Form
- // check params
- vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
- if vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pos, _ = strconv.Atoi(params.Get("offset")); pos < 0 {
- pos = 0
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- c.JSON(spaceSvr.Clip(c, vmid, pos, ps), nil)
- }
- func albums(c *bm.Context) {
- var (
- pos, ps int
- )
- params := c.Request.Form
- // check params
- vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
- if vmid < 1 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pos, _ = strconv.Atoi(params.Get("offset")); pos < 0 {
- pos = 0
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- c.JSON(spaceSvr.Album(c, vmid, pos, ps), nil)
- }
- // checkPay pay movie or bangumi
- func compRealtion(rel int, mobiApp string, build int, device string) (r int) {
- const (
- _upAndroid = 505000
- _banIphone = 5550
- _banIPad = 10450
- )
- switch mobiApp {
- case "android", "android_G":
- if build < _upAndroid && rel == -1 {
- return -999
- }
- case "iphone", "iphone_G":
- if build < _banIphone && rel == -1 {
- return -999
- }
- case "ipad", "ipad_G":
- if build <= _banIPad && rel == -1 {
- return -999
- }
- }
- return rel
- }
|