123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 |
- package http
- import (
- "strconv"
- "time"
- "go-common/app/interface/main/app-interface/model"
- "go-common/app/interface/main/app-interface/model/search"
- "go-common/library/ecode"
- bm "go-common/library/net/http/blademaster"
- )
- const (
- _headerBuvid = "Buvid"
- _keyWordLen = 50
- )
- func searchAll(c *bm.Context) {
- var (
- build int
- mid int64
- pn, ps int
- err error
- )
- params := c.Request.Form
- header := c.Request.Header
- // params
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- ridStr := params.Get("rid")
- keyword := params.Get("keyword")
- highlightStr := params.Get("highlight")
- lang := params.Get("lang")
- duration := params.Get("duration")
- order := params.Get("order")
- filtered := params.Get("filtered")
- platform := params.Get("platform")
- zoneidStr := params.Get("zoneid")
- fromSource := params.Get("from_source")
- recommend := params.Get("recommend")
- parent := params.Get("parent_mode")
- // header
- buvid := header.Get("Buvid")
- // check params
- if keyword == "" || len([]rune(keyword)) > _keyWordLen {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- zoneid, _ := strconv.ParseInt(zoneidStr, 10, 64)
- rid, _ := strconv.Atoi(ridStr)
- highlight, _ := strconv.Atoi(highlightStr)
- // page and size
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- switch order {
- case "default", "":
- order = "totalrank"
- case "view":
- order = "click"
- case "danmaku":
- order = "dm"
- }
- if duration == "" {
- duration = "0"
- }
- if recommend == "" || recommend != "1" {
- recommend = "0"
- }
- isQuery, _ := strconv.Atoi(params.Get("is_org_query"))
- plat := model.Plat(mobiApp, device)
- c.JSON(srcSvr.Search(c, mid, zoneid, mobiApp, device, platform, buvid, keyword, duration, order, filtered, lang, fromSource, recommend, parent, plat, rid, highlight, build, pn, ps, isQuery, checkOld(plat, build), time.Now()))
- }
- func searchByType(c *bm.Context) {
- var (
- build int
- mid int64
- pn, ps int
- typeV string
- err error
- )
- params := c.Request.Form
- header := c.Request.Header
- // params
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- sType := params.Get("type")
- keyword := params.Get("keyword")
- filtered := params.Get("filtered")
- zoneidStr := params.Get("zoneid")
- order := params.Get("order")
- platform := params.Get("platform")
- highlightStr := params.Get("highlight")
- categoryIDStr := params.Get("category_id")
- userTypeStr := params.Get("user_type")
- orderSortStr := params.Get("order_sort")
- // header
- buvid := header.Get("Buvid")
- if keyword == "" || len([]rune(keyword)) > _keyWordLen {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- userType, _ := strconv.Atoi(userTypeStr)
- orderSort, _ := strconv.Atoi(orderSortStr)
- zoneid, _ := strconv.ParseInt(zoneidStr, 10, 64)
- categoryID, _ := strconv.Atoi(categoryIDStr)
- highlight, _ := strconv.Atoi(highlightStr)
- // page and size
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- switch sType {
- case "1":
- typeV = "season"
- case "2":
- typeV = "upper"
- case "3":
- typeV = "movie"
- case "4":
- typeV = "live_room"
- case "5":
- typeV = "live_user"
- case "6":
- typeV = "article"
- case "7":
- typeV = "season2"
- case "8":
- typeV = "movie2"
- case "9":
- typeV = "tag"
- case "10":
- typeV = "video"
- }
- plat := model.Plat(mobiApp, device)
- c.JSON(srcSvr.SearchByType(c, mid, zoneid, mobiApp, device, platform, buvid, typeV, keyword, filtered, order, plat, build, highlight, categoryID, userType, orderSort, pn, ps, checkOld(plat, build), time.Now()))
- }
- func searchLive(c *bm.Context) {
- var (
- build int
- mid int64
- pn, ps int
- typeV string
- err error
- )
- params := c.Request.Form
- header := c.Request.Header
- // params
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- sType := params.Get("type")
- keyword := params.Get("keyword")
- order := params.Get("order")
- platform := params.Get("platform")
- // header
- buvid := header.Get("Buvid")
- if keyword == "" || len([]rune(keyword)) > _keyWordLen {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- // page and size
- if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
- pn = 1
- }
- if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
- ps = 20
- }
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- plat := model.Plat(mobiApp, device)
- switch sType {
- case "4":
- if (model.IsAndroid(plat) && build > search.SearchLiveAllAndroid) || (model.IsIPhone(plat) && build > search.SearchLiveAllIOS) || model.IsIPad(plat) || model.IsIPhoneB(plat) {
- typeV = "live_all"
- } else {
- typeV = "live_room"
- }
- case "5":
- typeV = "live_user"
- }
- if typeV == "live_all" {
- c.JSON(srcSvr.SearchLiveAll(c, mid, mobiApp, platform, buvid, device, typeV, keyword, order, build, pn, ps))
- } else {
- c.JSON(srcSvr.SearchLive(c, mid, mobiApp, platform, buvid, device, typeV, keyword, order, build, pn, ps))
- }
- }
- // ip string, limit int
- func hotSearch(c *bm.Context) {
- var (
- mid int64
- build int
- limit int
- err error
- )
- params := c.Request.Form
- header := c.Request.Header
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- platform := params.Get("platform")
- buvid := header.Get("Buvid")
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if limit, err = strconv.Atoi(params.Get("limit")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- c.JSON(srcSvr.HotSearch(c, buvid, mid, build, limit, mobiApp, device, platform, time.Now()), nil)
- }
- // suggest search suggest data.
- func suggest(c *bm.Context) {
- var (
- build int
- mid int64
- err error
- )
- params := c.Request.Form
- header := c.Request.Header
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- term := params.Get("keyword")
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- buvid := header.Get(_headerBuvid)
- c.JSON(srcSvr.Suggest(c, mid, buvid, term, build, mobiApp, device, time.Now()), nil)
- }
- // suggest2 search suggest data from new api.
- func suggest2(c *bm.Context) {
- var (
- build int
- mid int64
- err error
- )
- params := c.Request.Form
- header := c.Request.Header
- mobiApp := params.Get("mobi_app")
- term := params.Get("keyword")
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- buvid := header.Get(_headerBuvid)
- platform := params.Get("platform")
- c.JSON(srcSvr.Suggest2(c, mid, platform, buvid, term, build, mobiApp, time.Now()), nil)
- }
- // suggest3 search suggest data from newest api.
- func suggest3(c *bm.Context) {
- var (
- build int
- mid int64
- err error
- )
- params := c.Request.Form
- header := c.Request.Header
- mobiApp := params.Get("mobi_app")
- term := params.Get("keyword")
- device := params.Get("device")
- highlight, _ := strconv.Atoi(params.Get("highlight"))
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- buvid := header.Get(_headerBuvid)
- platform := params.Get("platform")
- c.JSON(srcSvr.Suggest3(c, mid, platform, buvid, term, device, build, highlight, mobiApp, time.Now()), nil)
- }
- func checkOld(plat int8, build int) bool {
- const (
- _oldAndroid = 513000
- _oldIphone = 6060
- )
- return (model.IsIPhone(plat) && build <= _oldIphone) || (model.IsAndroid(plat) && build <= _oldAndroid)
- }
- func searchUser(c *bm.Context) {
- var (
- build int
- mid int64
- err error
- )
- params := c.Request.Form
- header := c.Request.Header
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- platform := params.Get("platform")
- keyword := params.Get("keyword")
- filtered := params.Get("filtered")
- order := params.Get("order")
- fromSource := params.Get("from_source")
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- userType, _ := strconv.Atoi(params.Get("user_type"))
- highlight, _ := strconv.Atoi(params.Get("highlight"))
- if order == "" {
- order = "totalrank"
- }
- if order != "totalrank" && order != "fans" && order != "level" {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- orderSort, _ := strconv.Atoi(params.Get("order_sort"))
- if orderSort != 1 {
- orderSort = 0
- }
- if fromSource == "" {
- fromSource = "dynamic_uname"
- }
- if fromSource != "dynamic_uname" {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- pn, _ := strconv.Atoi(params.Get("pn"))
- if pn < 1 {
- pn = 1
- }
- ps, _ := strconv.Atoi(params.Get("ps"))
- if ps < 1 || ps > 20 {
- ps = 20
- }
- buvid := header.Get(_headerBuvid)
- c.JSON(srcSvr.User(c, mid, buvid, mobiApp, device, platform, keyword, filtered, order, fromSource, highlight, build, userType, orderSort, pn, ps, time.Now()), nil)
- }
- func recommend(c *bm.Context) {
- var (
- build int
- mid int64
- err error
- )
- params := c.Request.Form
- header := c.Request.Header
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- platform := params.Get("platform")
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- from, _ := strconv.Atoi(params.Get("from"))
- show, _ := strconv.Atoi(params.Get("show"))
- buvid := header.Get("Buvid")
- c.JSON(srcSvr.Recommend(c, mid, build, from, show, buvid, platform, mobiApp, device))
- }
- func defaultWords(c *bm.Context) {
- var (
- build int
- mid int64
- err error
- )
- params := c.Request.Form
- header := c.Request.Header
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- platform := params.Get("platform")
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- from, _ := strconv.Atoi(params.Get("from"))
- buvid := header.Get("Buvid")
- c.JSON(srcSvr.DefaultWords(c, mid, build, from, buvid, platform, mobiApp, device))
- }
- func recommendNoResult(c *bm.Context) {
- var (
- params = c.Request.Form
- header = c.Request.Header
- build int
- mid int64
- err error
- )
- platform := params.Get("platform")
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- buvid := header.Get("Buvid")
- keyword := params.Get("keyword")
- if keyword == "" {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- pn, _ := strconv.Atoi(params.Get("pn"))
- if pn < 1 {
- pn = 1
- }
- ps, _ := strconv.Atoi(params.Get("ps"))
- if ps < 1 || ps > 20 {
- ps = 20
- }
- c.JSON(srcSvr.RecommendNoResult(c, platform, mobiApp, device, buvid, keyword, build, pn, ps, mid))
- }
- func resource(c *bm.Context) {
- var (
- params = c.Request.Form
- header = c.Request.Header
- build int
- mid int64
- err error
- )
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- network := params.Get("network")
- buvid := header.Get("Buvid")
- adExtra := params.Get("ad_extra")
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- plat := model.Plat(mobiApp, device)
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- c.JSON(srcSvr.Resource(c, mobiApp, device, network, buvid, adExtra, build, plat, mid))
- }
- func recommendPre(c *bm.Context) {
- var (
- params = c.Request.Form
- header = c.Request.Header
- build int
- mid int64
- err error
- )
- platform := params.Get("platform")
- mobiApp := params.Get("mobi_app")
- device := params.Get("device")
- if build, err = strconv.Atoi(params.Get("build")); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- buvid := header.Get("Buvid")
- ps, _ := strconv.Atoi(params.Get("ps"))
- if ps < 1 || ps > 20 {
- ps = 20
- }
- c.JSON(srcSvr.RecommendPre(c, platform, mobiApp, device, buvid, build, ps, mid))
- }
- func searchEpisodes(c *bm.Context) {
- var (
- params = c.Request.Form
- mid, ssID int64
- err error
- )
- if ssID, err = strconv.ParseInt(params.Get("season_id"), 10, 64); err != nil {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if midInter, ok := c.Get("mid"); ok {
- mid = midInter.(int64)
- }
- if ssID == 0 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- c.JSON(srcSvr.SearchEpisodes(c, mid, ssID))
- }
|