space.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. package http
  2. import (
  3. "context"
  4. "encoding/json"
  5. "strconv"
  6. "time"
  7. "go-common/app/interface/main/app-interface/model"
  8. "go-common/app/interface/main/app-interface/model/space"
  9. "go-common/library/ecode"
  10. "go-common/library/log"
  11. bm "go-common/library/net/http/blademaster"
  12. )
  13. const (
  14. _crop = "@750w_250h_1c"
  15. )
  16. type userAct struct {
  17. Client string `json:"client"`
  18. Buvid string `json:"buvid"`
  19. Mid int64 `json:"mid"`
  20. Time int64 `json:"time"`
  21. From string `json:"from"`
  22. Build string `json:"build"`
  23. ItemID string `json:"item_id"`
  24. ItemType string `json:"item_type"`
  25. Action string `json:"action"`
  26. ActionID string `json:"action_id"`
  27. Extra string `json:"extra"`
  28. }
  29. func spaceAll(c *bm.Context) {
  30. var (
  31. mid int64
  32. vmid int64
  33. build int
  34. pn, ps int
  35. err error
  36. )
  37. params := c.Request.Form
  38. mobiApp := params.Get("mobi_app")
  39. platform := params.Get("platform")
  40. device := params.Get("device")
  41. buildStr := params.Get("build")
  42. name := params.Get("name")
  43. // check params
  44. if vmid, _ = strconv.ParseInt(params.Get("vmid"), 10, 64); vmid < 1 && name == "" {
  45. c.JSON(nil, ecode.RequestErr)
  46. return
  47. }
  48. if midInt, ok := c.Get("mid"); ok {
  49. mid = midInt.(int64)
  50. }
  51. if build, err = strconv.Atoi(buildStr); err != nil {
  52. c.JSON(nil, ecode.RequestErr)
  53. return
  54. }
  55. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  56. pn = 1
  57. }
  58. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  59. ps = 20
  60. }
  61. plat := model.Plat(mobiApp, device)
  62. space, err := spaceSvr.Space(c, mid, vmid, plat, build, pn, ps, platform, device, mobiApp, name, time.Now())
  63. if err != nil {
  64. c.JSON(nil, err)
  65. return
  66. }
  67. if model.IsIPhone(plat) && space.Space != nil && space.Space.ImgURL != "" {
  68. space.Space.ImgURL = space.Space.ImgURL + _crop
  69. }
  70. space.Relation = compRealtion(space.Relation, mobiApp, build, device)
  71. c.JSON(space, nil)
  72. // for ai big data
  73. userActPub.Send(context.TODO(), strconv.FormatInt(mid, 10), &userAct{
  74. Client: mobiApp,
  75. Buvid: c.Request.Header.Get("Buvid"),
  76. Mid: mid,
  77. Time: time.Now().Unix(),
  78. From: params.Get("from"),
  79. Build: buildStr,
  80. ItemID: space.Card.Mid,
  81. ItemType: "mid",
  82. Action: "space",
  83. })
  84. }
  85. func upArchive(c *bm.Context) {
  86. var (
  87. pn, ps int
  88. )
  89. params := c.Request.Form
  90. // check params
  91. vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
  92. if vmid < 1 {
  93. c.JSON(nil, ecode.RequestErr)
  94. return
  95. }
  96. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  97. pn = 1
  98. }
  99. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  100. ps = 20
  101. }
  102. c.JSON(spaceSvr.UpArcs(c, vmid, pn, ps, time.Now()), nil)
  103. }
  104. func myinfo(c *bm.Context) {
  105. mid, err := authSvc.AuthToken(c)
  106. if err != nil {
  107. shouldChangeError := false
  108. params := c.Request.Form
  109. mobiApp := params.Get("mobi_app")
  110. device := params.Get("device")
  111. build, _ := strconv.Atoi(params.Get("build"))
  112. plat := model.Plat(mobiApp, device)
  113. if model.IsIPhone(plat) && build > config.LoginBuild.Iphone {
  114. shouldChangeError = true
  115. }
  116. if shouldChangeError && ecode.Cause(err).Equal(ecode.NoLogin) {
  117. c.JSON(nil, ecode.UserLoginInvalid)
  118. return
  119. }
  120. c.JSON(nil, err)
  121. return
  122. }
  123. c.JSON(accSvr.Myinfo(c, mid))
  124. }
  125. func mine(c *bm.Context) {
  126. params := &space.MineParam{}
  127. if err := c.Bind(params); err != nil {
  128. return
  129. }
  130. if midInter, ok := c.Get("mid"); ok {
  131. params.Mid = midInter.(int64)
  132. }
  133. plat := model.Plat(params.MobiApp, params.Device)
  134. c.JSON(accSvr.Mine(c, params.Mid, params.Platform, params.Filtered, params.Build, plat))
  135. }
  136. func mineIpad(c *bm.Context) {
  137. params := &space.MineParam{}
  138. if err := c.Bind(params); err != nil {
  139. return
  140. }
  141. if midInter, ok := c.Get("mid"); ok {
  142. params.Mid = midInter.(int64)
  143. }
  144. plat := model.Plat(params.MobiApp, params.Device)
  145. if model.IsIPad(plat) {
  146. plat = model.PlatIPad
  147. }
  148. c.JSON(accSvr.MineIpad(c, params.Mid, params.Platform, params.Filtered, params.Build, plat))
  149. }
  150. func upArticle(c *bm.Context) {
  151. var (
  152. pn, ps int
  153. )
  154. params := c.Request.Form
  155. // check params
  156. vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
  157. if vmid < 1 {
  158. c.JSON(nil, ecode.RequestErr)
  159. return
  160. }
  161. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  162. pn = 1
  163. }
  164. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  165. ps = 20
  166. }
  167. c.JSON(spaceSvr.UpArticles(c, vmid, pn, ps), nil)
  168. }
  169. func contribute(c *bm.Context) {
  170. var (
  171. vmid int64
  172. build int
  173. pn, ps int
  174. err error
  175. )
  176. params := c.Request.Form
  177. mobiApp := params.Get("mobi_app")
  178. device := params.Get("device")
  179. // check params
  180. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  181. c.JSON(nil, ecode.RequestErr)
  182. return
  183. }
  184. if vmid, _ = strconv.ParseInt(params.Get("vmid"), 10, 64); vmid < 1 {
  185. c.JSON(nil, ecode.RequestErr)
  186. return
  187. }
  188. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  189. pn = 1
  190. }
  191. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  192. ps = 20
  193. }
  194. plat := model.Plat(mobiApp, device)
  195. c.JSON(spaceSvr.Contribute(c, plat, build, vmid, pn, ps, time.Now()))
  196. }
  197. func contribution(c *bm.Context) {
  198. var (
  199. vmid int64
  200. build int
  201. maxID, minID int64
  202. size int
  203. err error
  204. )
  205. params := c.Request.Form
  206. mobiApp := params.Get("mobi_app")
  207. device := params.Get("device")
  208. maxIDStr := params.Get("max_id")
  209. minIDStr := params.Get("min_id")
  210. // check params
  211. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  212. c.JSON(nil, ecode.RequestErr)
  213. return
  214. }
  215. if vmid, _ = strconv.ParseInt(params.Get("vmid"), 10, 64); vmid < 1 {
  216. c.JSON(nil, ecode.RequestErr)
  217. return
  218. }
  219. if maxIDStr != "" {
  220. if maxID, err = strconv.ParseInt(maxIDStr, 10, 64); err != nil {
  221. c.JSON(nil, ecode.RequestErr)
  222. return
  223. }
  224. }
  225. if minIDStr != "" {
  226. if minID, err = strconv.ParseInt(minIDStr, 10, 64); err != nil {
  227. c.JSON(nil, ecode.RequestErr)
  228. return
  229. }
  230. }
  231. if size, _ = strconv.Atoi(params.Get("size")); size < 1 || size > 20 {
  232. size = 20
  233. }
  234. cursor, err := model.NewCursor(maxID, minID, size)
  235. if err != nil {
  236. c.JSON(nil, ecode.RequestErr)
  237. log.Error("%+v", err)
  238. return
  239. }
  240. plat := model.Plat(mobiApp, device)
  241. c.JSON(spaceSvr.Contribution(c, plat, build, vmid, cursor, time.Now()))
  242. }
  243. func upContribute(c *bm.Context) {
  244. var (
  245. vmid int64
  246. attrs *space.Attrs
  247. items []*space.Item
  248. err error
  249. )
  250. params := c.Request.Form
  251. vmidStr := params.Get("vmid")
  252. attrsStr := params.Get("attrs")
  253. itemsStr := params.Get("items")
  254. // check params
  255. if vmid, _ = strconv.ParseInt(vmidStr, 10, 64); vmid < 1 {
  256. c.JSON(nil, ecode.RequestErr)
  257. return
  258. }
  259. if err = json.Unmarshal([]byte(attrsStr), &attrs); err != nil {
  260. c.JSON(nil, ecode.RequestErr)
  261. log.Error("json.Unmarshal(%s) error(%v)", attrsStr, err)
  262. return
  263. }
  264. if err = json.Unmarshal([]byte(itemsStr), &items); err != nil {
  265. c.JSON(nil, ecode.RequestErr)
  266. log.Error("json.Unmarshal(%s) error(%v)", itemsStr, err)
  267. return
  268. }
  269. c.JSON(spaceSvr.AddContribute(c, vmid, attrs, items), nil)
  270. }
  271. func bangumi(c *bm.Context) {
  272. var (
  273. mid int64
  274. pn, ps int
  275. )
  276. params := c.Request.Form
  277. if midInt, ok := c.Get("mid"); ok {
  278. mid = midInt.(int64)
  279. }
  280. // check params
  281. vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
  282. if vmid < 1 {
  283. c.JSON(nil, ecode.RequestErr)
  284. return
  285. }
  286. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  287. pn = 1
  288. }
  289. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  290. ps = 20
  291. }
  292. c.JSON(spaceSvr.Bangumi(c, mid, vmid, nil, pn, ps), nil)
  293. }
  294. func community(c *bm.Context) {
  295. var (
  296. pn, ps int
  297. )
  298. params := c.Request.Form
  299. ak := params.Get("access_key")
  300. platform := params.Get("platform")
  301. // check params
  302. vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
  303. if vmid < 1 {
  304. c.JSON(nil, ecode.RequestErr)
  305. return
  306. }
  307. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  308. pn = 1
  309. }
  310. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  311. ps = 20
  312. }
  313. c.JSON(spaceSvr.Community(c, vmid, pn, ps, ak, platform), nil)
  314. }
  315. func coinArc(c *bm.Context) {
  316. var (
  317. mid int64
  318. pn, ps int
  319. )
  320. params := c.Request.Form
  321. if midInt, ok := c.Get("mid"); ok {
  322. mid = midInt.(int64)
  323. }
  324. // check params
  325. vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
  326. if vmid < 1 {
  327. c.JSON(nil, ecode.RequestErr)
  328. return
  329. }
  330. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  331. pn = 1
  332. }
  333. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  334. ps = 20
  335. }
  336. c.JSON(spaceSvr.CoinArcs(c, mid, vmid, nil, pn, ps), nil)
  337. }
  338. func likeArc(c *bm.Context) {
  339. var (
  340. mid int64
  341. pn, ps int
  342. )
  343. params := c.Request.Form
  344. if midInt, ok := c.Get("mid"); ok {
  345. mid = midInt.(int64)
  346. }
  347. // check params
  348. vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
  349. if vmid < 1 {
  350. c.JSON(nil, ecode.RequestErr)
  351. return
  352. }
  353. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  354. pn = 1
  355. }
  356. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  357. ps = 20
  358. }
  359. c.JSON(spaceSvr.LikeArcs(c, mid, vmid, nil, pn, ps), nil)
  360. }
  361. func report(c *bm.Context) {
  362. params := c.Request.Form
  363. ak := params.Get("access_key")
  364. reason := params.Get("reason")
  365. mid, _ := strconv.ParseInt(params.Get("mid"), 10, 64)
  366. if mid < 1 {
  367. c.JSON(nil, ecode.RequestErr)
  368. return
  369. }
  370. c.JSON(nil, spaceSvr.Report(c, mid, reason, ak))
  371. }
  372. func clips(c *bm.Context) {
  373. var (
  374. pos, ps int
  375. )
  376. params := c.Request.Form
  377. // check params
  378. vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
  379. if vmid < 1 {
  380. c.JSON(nil, ecode.RequestErr)
  381. return
  382. }
  383. if pos, _ = strconv.Atoi(params.Get("offset")); pos < 0 {
  384. pos = 0
  385. }
  386. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  387. ps = 20
  388. }
  389. c.JSON(spaceSvr.Clip(c, vmid, pos, ps), nil)
  390. }
  391. func albums(c *bm.Context) {
  392. var (
  393. pos, ps int
  394. )
  395. params := c.Request.Form
  396. // check params
  397. vmid, _ := strconv.ParseInt(params.Get("vmid"), 10, 64)
  398. if vmid < 1 {
  399. c.JSON(nil, ecode.RequestErr)
  400. return
  401. }
  402. if pos, _ = strconv.Atoi(params.Get("offset")); pos < 0 {
  403. pos = 0
  404. }
  405. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  406. ps = 20
  407. }
  408. c.JSON(spaceSvr.Album(c, vmid, pos, ps), nil)
  409. }
  410. // checkPay pay movie or bangumi
  411. func compRealtion(rel int, mobiApp string, build int, device string) (r int) {
  412. const (
  413. _upAndroid = 505000
  414. _banIphone = 5550
  415. _banIPad = 10450
  416. )
  417. switch mobiApp {
  418. case "android", "android_G":
  419. if build < _upAndroid && rel == -1 {
  420. return -999
  421. }
  422. case "iphone", "iphone_G":
  423. if build < _banIphone && rel == -1 {
  424. return -999
  425. }
  426. case "ipad", "ipad_G":
  427. if build <= _banIPad && rel == -1 {
  428. return -999
  429. }
  430. }
  431. return rel
  432. }