search.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. package http
  2. import (
  3. "strconv"
  4. "time"
  5. "go-common/app/interface/main/app-interface/model"
  6. "go-common/app/interface/main/app-interface/model/search"
  7. "go-common/library/ecode"
  8. bm "go-common/library/net/http/blademaster"
  9. )
  10. const (
  11. _headerBuvid = "Buvid"
  12. _keyWordLen = 50
  13. )
  14. func searchAll(c *bm.Context) {
  15. var (
  16. build int
  17. mid int64
  18. pn, ps int
  19. err error
  20. )
  21. params := c.Request.Form
  22. header := c.Request.Header
  23. // params
  24. mobiApp := params.Get("mobi_app")
  25. device := params.Get("device")
  26. ridStr := params.Get("rid")
  27. keyword := params.Get("keyword")
  28. highlightStr := params.Get("highlight")
  29. lang := params.Get("lang")
  30. duration := params.Get("duration")
  31. order := params.Get("order")
  32. filtered := params.Get("filtered")
  33. platform := params.Get("platform")
  34. zoneidStr := params.Get("zoneid")
  35. fromSource := params.Get("from_source")
  36. recommend := params.Get("recommend")
  37. parent := params.Get("parent_mode")
  38. // header
  39. buvid := header.Get("Buvid")
  40. // check params
  41. if keyword == "" || len([]rune(keyword)) > _keyWordLen {
  42. c.JSON(nil, ecode.RequestErr)
  43. return
  44. }
  45. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  46. c.JSON(nil, ecode.RequestErr)
  47. return
  48. }
  49. zoneid, _ := strconv.ParseInt(zoneidStr, 10, 64)
  50. rid, _ := strconv.Atoi(ridStr)
  51. highlight, _ := strconv.Atoi(highlightStr)
  52. // page and size
  53. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  54. pn = 1
  55. }
  56. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  57. ps = 20
  58. }
  59. if midInter, ok := c.Get("mid"); ok {
  60. mid = midInter.(int64)
  61. }
  62. switch order {
  63. case "default", "":
  64. order = "totalrank"
  65. case "view":
  66. order = "click"
  67. case "danmaku":
  68. order = "dm"
  69. }
  70. if duration == "" {
  71. duration = "0"
  72. }
  73. if recommend == "" || recommend != "1" {
  74. recommend = "0"
  75. }
  76. isQuery, _ := strconv.Atoi(params.Get("is_org_query"))
  77. plat := model.Plat(mobiApp, device)
  78. 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()))
  79. }
  80. func searchByType(c *bm.Context) {
  81. var (
  82. build int
  83. mid int64
  84. pn, ps int
  85. typeV string
  86. err error
  87. )
  88. params := c.Request.Form
  89. header := c.Request.Header
  90. // params
  91. mobiApp := params.Get("mobi_app")
  92. device := params.Get("device")
  93. sType := params.Get("type")
  94. keyword := params.Get("keyword")
  95. filtered := params.Get("filtered")
  96. zoneidStr := params.Get("zoneid")
  97. order := params.Get("order")
  98. platform := params.Get("platform")
  99. highlightStr := params.Get("highlight")
  100. categoryIDStr := params.Get("category_id")
  101. userTypeStr := params.Get("user_type")
  102. orderSortStr := params.Get("order_sort")
  103. // header
  104. buvid := header.Get("Buvid")
  105. if keyword == "" || len([]rune(keyword)) > _keyWordLen {
  106. c.JSON(nil, ecode.RequestErr)
  107. return
  108. }
  109. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  110. c.JSON(nil, ecode.RequestErr)
  111. return
  112. }
  113. userType, _ := strconv.Atoi(userTypeStr)
  114. orderSort, _ := strconv.Atoi(orderSortStr)
  115. zoneid, _ := strconv.ParseInt(zoneidStr, 10, 64)
  116. categoryID, _ := strconv.Atoi(categoryIDStr)
  117. highlight, _ := strconv.Atoi(highlightStr)
  118. // page and size
  119. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  120. pn = 1
  121. }
  122. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  123. ps = 20
  124. }
  125. if midInter, ok := c.Get("mid"); ok {
  126. mid = midInter.(int64)
  127. }
  128. switch sType {
  129. case "1":
  130. typeV = "season"
  131. case "2":
  132. typeV = "upper"
  133. case "3":
  134. typeV = "movie"
  135. case "4":
  136. typeV = "live_room"
  137. case "5":
  138. typeV = "live_user"
  139. case "6":
  140. typeV = "article"
  141. case "7":
  142. typeV = "season2"
  143. case "8":
  144. typeV = "movie2"
  145. case "9":
  146. typeV = "tag"
  147. case "10":
  148. typeV = "video"
  149. }
  150. plat := model.Plat(mobiApp, device)
  151. 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()))
  152. }
  153. func searchLive(c *bm.Context) {
  154. var (
  155. build int
  156. mid int64
  157. pn, ps int
  158. typeV string
  159. err error
  160. )
  161. params := c.Request.Form
  162. header := c.Request.Header
  163. // params
  164. mobiApp := params.Get("mobi_app")
  165. device := params.Get("device")
  166. sType := params.Get("type")
  167. keyword := params.Get("keyword")
  168. order := params.Get("order")
  169. platform := params.Get("platform")
  170. // header
  171. buvid := header.Get("Buvid")
  172. if keyword == "" || len([]rune(keyword)) > _keyWordLen {
  173. c.JSON(nil, ecode.RequestErr)
  174. return
  175. }
  176. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  177. c.JSON(nil, ecode.RequestErr)
  178. return
  179. }
  180. // page and size
  181. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  182. pn = 1
  183. }
  184. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  185. ps = 20
  186. }
  187. if midInter, ok := c.Get("mid"); ok {
  188. mid = midInter.(int64)
  189. }
  190. plat := model.Plat(mobiApp, device)
  191. switch sType {
  192. case "4":
  193. if (model.IsAndroid(plat) && build > search.SearchLiveAllAndroid) || (model.IsIPhone(plat) && build > search.SearchLiveAllIOS) || model.IsIPad(plat) || model.IsIPhoneB(plat) {
  194. typeV = "live_all"
  195. } else {
  196. typeV = "live_room"
  197. }
  198. case "5":
  199. typeV = "live_user"
  200. }
  201. if typeV == "live_all" {
  202. c.JSON(srcSvr.SearchLiveAll(c, mid, mobiApp, platform, buvid, device, typeV, keyword, order, build, pn, ps))
  203. } else {
  204. c.JSON(srcSvr.SearchLive(c, mid, mobiApp, platform, buvid, device, typeV, keyword, order, build, pn, ps))
  205. }
  206. }
  207. // ip string, limit int
  208. func hotSearch(c *bm.Context) {
  209. var (
  210. mid int64
  211. build int
  212. limit int
  213. err error
  214. )
  215. params := c.Request.Form
  216. header := c.Request.Header
  217. if midInter, ok := c.Get("mid"); ok {
  218. mid = midInter.(int64)
  219. }
  220. mobiApp := params.Get("mobi_app")
  221. device := params.Get("device")
  222. platform := params.Get("platform")
  223. buvid := header.Get("Buvid")
  224. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  225. c.JSON(nil, ecode.RequestErr)
  226. return
  227. }
  228. if limit, err = strconv.Atoi(params.Get("limit")); err != nil {
  229. c.JSON(nil, ecode.RequestErr)
  230. return
  231. }
  232. c.JSON(srcSvr.HotSearch(c, buvid, mid, build, limit, mobiApp, device, platform, time.Now()), nil)
  233. }
  234. // suggest search suggest data.
  235. func suggest(c *bm.Context) {
  236. var (
  237. build int
  238. mid int64
  239. err error
  240. )
  241. params := c.Request.Form
  242. header := c.Request.Header
  243. mobiApp := params.Get("mobi_app")
  244. device := params.Get("device")
  245. term := params.Get("keyword")
  246. if midInter, ok := c.Get("mid"); ok {
  247. mid = midInter.(int64)
  248. }
  249. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  250. c.JSON(nil, ecode.RequestErr)
  251. return
  252. }
  253. buvid := header.Get(_headerBuvid)
  254. c.JSON(srcSvr.Suggest(c, mid, buvid, term, build, mobiApp, device, time.Now()), nil)
  255. }
  256. // suggest2 search suggest data from new api.
  257. func suggest2(c *bm.Context) {
  258. var (
  259. build int
  260. mid int64
  261. err error
  262. )
  263. params := c.Request.Form
  264. header := c.Request.Header
  265. mobiApp := params.Get("mobi_app")
  266. term := params.Get("keyword")
  267. if midInter, ok := c.Get("mid"); ok {
  268. mid = midInter.(int64)
  269. }
  270. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  271. c.JSON(nil, ecode.RequestErr)
  272. return
  273. }
  274. buvid := header.Get(_headerBuvid)
  275. platform := params.Get("platform")
  276. c.JSON(srcSvr.Suggest2(c, mid, platform, buvid, term, build, mobiApp, time.Now()), nil)
  277. }
  278. // suggest3 search suggest data from newest api.
  279. func suggest3(c *bm.Context) {
  280. var (
  281. build int
  282. mid int64
  283. err error
  284. )
  285. params := c.Request.Form
  286. header := c.Request.Header
  287. mobiApp := params.Get("mobi_app")
  288. term := params.Get("keyword")
  289. device := params.Get("device")
  290. highlight, _ := strconv.Atoi(params.Get("highlight"))
  291. if midInter, ok := c.Get("mid"); ok {
  292. mid = midInter.(int64)
  293. }
  294. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  295. c.JSON(nil, ecode.RequestErr)
  296. return
  297. }
  298. buvid := header.Get(_headerBuvid)
  299. platform := params.Get("platform")
  300. c.JSON(srcSvr.Suggest3(c, mid, platform, buvid, term, device, build, highlight, mobiApp, time.Now()), nil)
  301. }
  302. func checkOld(plat int8, build int) bool {
  303. const (
  304. _oldAndroid = 513000
  305. _oldIphone = 6060
  306. )
  307. return (model.IsIPhone(plat) && build <= _oldIphone) || (model.IsAndroid(plat) && build <= _oldAndroid)
  308. }
  309. func searchUser(c *bm.Context) {
  310. var (
  311. build int
  312. mid int64
  313. err error
  314. )
  315. params := c.Request.Form
  316. header := c.Request.Header
  317. mobiApp := params.Get("mobi_app")
  318. device := params.Get("device")
  319. platform := params.Get("platform")
  320. keyword := params.Get("keyword")
  321. filtered := params.Get("filtered")
  322. order := params.Get("order")
  323. fromSource := params.Get("from_source")
  324. if midInter, ok := c.Get("mid"); ok {
  325. mid = midInter.(int64)
  326. }
  327. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  328. c.JSON(nil, ecode.RequestErr)
  329. return
  330. }
  331. userType, _ := strconv.Atoi(params.Get("user_type"))
  332. highlight, _ := strconv.Atoi(params.Get("highlight"))
  333. if order == "" {
  334. order = "totalrank"
  335. }
  336. if order != "totalrank" && order != "fans" && order != "level" {
  337. c.JSON(nil, ecode.RequestErr)
  338. return
  339. }
  340. orderSort, _ := strconv.Atoi(params.Get("order_sort"))
  341. if orderSort != 1 {
  342. orderSort = 0
  343. }
  344. if fromSource == "" {
  345. fromSource = "dynamic_uname"
  346. }
  347. if fromSource != "dynamic_uname" {
  348. c.JSON(nil, ecode.RequestErr)
  349. return
  350. }
  351. pn, _ := strconv.Atoi(params.Get("pn"))
  352. if pn < 1 {
  353. pn = 1
  354. }
  355. ps, _ := strconv.Atoi(params.Get("ps"))
  356. if ps < 1 || ps > 20 {
  357. ps = 20
  358. }
  359. buvid := header.Get(_headerBuvid)
  360. c.JSON(srcSvr.User(c, mid, buvid, mobiApp, device, platform, keyword, filtered, order, fromSource, highlight, build, userType, orderSort, pn, ps, time.Now()), nil)
  361. }
  362. func recommend(c *bm.Context) {
  363. var (
  364. build int
  365. mid int64
  366. err error
  367. )
  368. params := c.Request.Form
  369. header := c.Request.Header
  370. if midInter, ok := c.Get("mid"); ok {
  371. mid = midInter.(int64)
  372. }
  373. platform := params.Get("platform")
  374. mobiApp := params.Get("mobi_app")
  375. device := params.Get("device")
  376. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  377. c.JSON(nil, ecode.RequestErr)
  378. return
  379. }
  380. from, _ := strconv.Atoi(params.Get("from"))
  381. show, _ := strconv.Atoi(params.Get("show"))
  382. buvid := header.Get("Buvid")
  383. c.JSON(srcSvr.Recommend(c, mid, build, from, show, buvid, platform, mobiApp, device))
  384. }
  385. func defaultWords(c *bm.Context) {
  386. var (
  387. build int
  388. mid int64
  389. err error
  390. )
  391. params := c.Request.Form
  392. header := c.Request.Header
  393. if midInter, ok := c.Get("mid"); ok {
  394. mid = midInter.(int64)
  395. }
  396. platform := params.Get("platform")
  397. mobiApp := params.Get("mobi_app")
  398. device := params.Get("device")
  399. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  400. c.JSON(nil, ecode.RequestErr)
  401. return
  402. }
  403. from, _ := strconv.Atoi(params.Get("from"))
  404. buvid := header.Get("Buvid")
  405. c.JSON(srcSvr.DefaultWords(c, mid, build, from, buvid, platform, mobiApp, device))
  406. }
  407. func recommendNoResult(c *bm.Context) {
  408. var (
  409. params = c.Request.Form
  410. header = c.Request.Header
  411. build int
  412. mid int64
  413. err error
  414. )
  415. platform := params.Get("platform")
  416. mobiApp := params.Get("mobi_app")
  417. device := params.Get("device")
  418. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  419. c.JSON(nil, ecode.RequestErr)
  420. return
  421. }
  422. if midInter, ok := c.Get("mid"); ok {
  423. mid = midInter.(int64)
  424. }
  425. buvid := header.Get("Buvid")
  426. keyword := params.Get("keyword")
  427. if keyword == "" {
  428. c.JSON(nil, ecode.RequestErr)
  429. return
  430. }
  431. pn, _ := strconv.Atoi(params.Get("pn"))
  432. if pn < 1 {
  433. pn = 1
  434. }
  435. ps, _ := strconv.Atoi(params.Get("ps"))
  436. if ps < 1 || ps > 20 {
  437. ps = 20
  438. }
  439. c.JSON(srcSvr.RecommendNoResult(c, platform, mobiApp, device, buvid, keyword, build, pn, ps, mid))
  440. }
  441. func resource(c *bm.Context) {
  442. var (
  443. params = c.Request.Form
  444. header = c.Request.Header
  445. build int
  446. mid int64
  447. err error
  448. )
  449. mobiApp := params.Get("mobi_app")
  450. device := params.Get("device")
  451. network := params.Get("network")
  452. buvid := header.Get("Buvid")
  453. adExtra := params.Get("ad_extra")
  454. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  455. c.JSON(nil, ecode.RequestErr)
  456. return
  457. }
  458. plat := model.Plat(mobiApp, device)
  459. if midInter, ok := c.Get("mid"); ok {
  460. mid = midInter.(int64)
  461. }
  462. c.JSON(srcSvr.Resource(c, mobiApp, device, network, buvid, adExtra, build, plat, mid))
  463. }
  464. func recommendPre(c *bm.Context) {
  465. var (
  466. params = c.Request.Form
  467. header = c.Request.Header
  468. build int
  469. mid int64
  470. err error
  471. )
  472. platform := params.Get("platform")
  473. mobiApp := params.Get("mobi_app")
  474. device := params.Get("device")
  475. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  476. c.JSON(nil, ecode.RequestErr)
  477. return
  478. }
  479. if midInter, ok := c.Get("mid"); ok {
  480. mid = midInter.(int64)
  481. }
  482. buvid := header.Get("Buvid")
  483. ps, _ := strconv.Atoi(params.Get("ps"))
  484. if ps < 1 || ps > 20 {
  485. ps = 20
  486. }
  487. c.JSON(srcSvr.RecommendPre(c, platform, mobiApp, device, buvid, build, ps, mid))
  488. }
  489. func searchEpisodes(c *bm.Context) {
  490. var (
  491. params = c.Request.Form
  492. mid, ssID int64
  493. err error
  494. )
  495. if ssID, err = strconv.ParseInt(params.Get("season_id"), 10, 64); err != nil {
  496. c.JSON(nil, ecode.RequestErr)
  497. return
  498. }
  499. if midInter, ok := c.Get("mid"); ok {
  500. mid = midInter.(int64)
  501. }
  502. if ssID == 0 {
  503. c.JSON(nil, ecode.RequestErr)
  504. return
  505. }
  506. c.JSON(srcSvr.SearchEpisodes(c, mid, ssID))
  507. }