favorite.go 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. package http
  2. import (
  3. "strconv"
  4. "go-common/app/interface/main/app-interface/model/favorite"
  5. "go-common/library/ecode"
  6. bm "go-common/library/net/http/blademaster"
  7. )
  8. // folder get folder.
  9. func folder(c *bm.Context) {
  10. var (
  11. aid, vmid, mid int64
  12. build int
  13. err error
  14. )
  15. params := c.Request.Form
  16. accessKey := params.Get("access_key")
  17. actionKey := params.Get("actionKey")
  18. device := params.Get("device")
  19. mobiApp := params.Get("mobi_app")
  20. platform := params.Get("platform")
  21. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  22. c.JSON(nil, ecode.RequestErr)
  23. return
  24. }
  25. aid, _ = strconv.ParseInt(params.Get("aid"), 10, 64)
  26. vmid, _ = strconv.ParseInt(params.Get("vmid"), 10, 64)
  27. if midInter, ok := c.Get("mid"); ok {
  28. mid = midInter.(int64)
  29. }
  30. c.JSON(favSvr.Folder(c, accessKey, actionKey, device, mobiApp, platform, build, aid, vmid, mid))
  31. }
  32. func favoriteVideo(c *bm.Context) {
  33. var (
  34. mid, vmid, fid int64
  35. build, tid int
  36. pn, ps int
  37. err error
  38. )
  39. params := c.Request.Form
  40. accessKey := params.Get("access_key")
  41. actionKey := params.Get("actionKey")
  42. device := params.Get("device")
  43. mobiApp := params.Get("mobi_app")
  44. platform := params.Get("platform")
  45. keyword := params.Get("keyword")
  46. order := params.Get("order")
  47. if build, _ = strconv.Atoi(params.Get("build")); err != nil {
  48. c.JSON(nil, ecode.RequestErr)
  49. return
  50. }
  51. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  52. pn = 1
  53. }
  54. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  55. ps = 20
  56. }
  57. tid, _ = strconv.Atoi(params.Get("tid"))
  58. fid, _ = strconv.ParseInt(params.Get("fid"), 10, 64)
  59. vmid, _ = strconv.ParseInt(params.Get("vmid"), 10, 64)
  60. if midInter, ok := c.Get("mid"); ok {
  61. mid = midInter.(int64)
  62. }
  63. c.JSON(favSvr.FolderVideo(c, accessKey, actionKey, device, mobiApp, platform, keyword, order, build, tid, pn, ps, mid, fid, vmid), nil)
  64. }
  65. func topic(c *bm.Context) {
  66. var (
  67. mid int64
  68. build int
  69. pn, ps int
  70. err error
  71. )
  72. params := c.Request.Form
  73. accessKey := params.Get("access_key")
  74. actionKey := params.Get("actionKey")
  75. device := params.Get("device")
  76. mobiApp := params.Get("mobi_app")
  77. platform := params.Get("platform")
  78. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  79. c.JSON(nil, ecode.RequestErr)
  80. return
  81. }
  82. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  83. pn = 1
  84. }
  85. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  86. ps = 20
  87. }
  88. if midInter, ok := c.Get("mid"); ok {
  89. mid = midInter.(int64)
  90. }
  91. c.JSON(favSvr.Topic(c, accessKey, actionKey, device, mobiApp, platform, build, ps, pn, mid), nil)
  92. }
  93. func article(c *bm.Context) {
  94. var (
  95. mid int64
  96. pn, ps int
  97. )
  98. params := c.Request.Form
  99. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  100. pn = 1
  101. }
  102. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  103. ps = 20
  104. }
  105. if midInter, ok := c.Get("mid"); ok {
  106. mid = midInter.(int64)
  107. }
  108. c.JSON(favSvr.Article(c, mid, pn, ps), nil)
  109. }
  110. func favClips(c *bm.Context) {
  111. var (
  112. mid int64
  113. build int
  114. pn, ps int
  115. err error
  116. )
  117. params := c.Request.Form
  118. accessKey := params.Get("access_key")
  119. actionKey := params.Get("actionKey")
  120. device := params.Get("device")
  121. mobiApp := params.Get("mobi_app")
  122. platform := params.Get("platform")
  123. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  124. c.JSON(nil, ecode.RequestErr)
  125. return
  126. }
  127. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  128. pn = 1
  129. }
  130. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  131. ps = 20
  132. }
  133. if midInter, ok := c.Get("mid"); ok {
  134. mid = midInter.(int64)
  135. }
  136. c.JSON(favSvr.Clips(c, mid, accessKey, actionKey, device, mobiApp, platform, build, pn, ps), nil)
  137. }
  138. func favAlbums(c *bm.Context) {
  139. var (
  140. mid int64
  141. build int
  142. pn, ps int
  143. err error
  144. )
  145. params := c.Request.Form
  146. accessKey := params.Get("access_key")
  147. actionKey := params.Get("actionKey")
  148. device := params.Get("device")
  149. mobiApp := params.Get("mobi_app")
  150. platform := params.Get("platform")
  151. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  152. c.JSON(nil, ecode.RequestErr)
  153. return
  154. }
  155. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  156. pn = 1
  157. }
  158. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  159. ps = 20
  160. }
  161. if midInter, ok := c.Get("mid"); ok {
  162. mid = midInter.(int64)
  163. }
  164. c.JSON(favSvr.Albums(c, mid, accessKey, actionKey, device, mobiApp, platform, build, pn, ps), nil)
  165. }
  166. func specil(c *bm.Context) {
  167. var (
  168. build int
  169. pn, ps int
  170. err error
  171. )
  172. params := c.Request.Form
  173. accessKey := params.Get("access_key")
  174. actionKey := params.Get("actionKey")
  175. device := params.Get("device")
  176. mobiApp := params.Get("mobi_app")
  177. platform := params.Get("platform")
  178. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  179. c.JSON(nil, ecode.RequestErr)
  180. return
  181. }
  182. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  183. pn = 1
  184. }
  185. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  186. ps = 20
  187. }
  188. c.JSON(favSvr.Specil(c, accessKey, actionKey, device, mobiApp, platform, build, pn, ps), nil)
  189. }
  190. func audio(c *bm.Context) {
  191. var (
  192. mid int64
  193. pn, ps int
  194. )
  195. params := c.Request.Form
  196. accessKey := params.Get("access_key")
  197. if pn, _ = strconv.Atoi(params.Get("pn")); pn < 1 {
  198. pn = 1
  199. }
  200. if ps, _ = strconv.Atoi(params.Get("ps")); ps < 1 || ps > 20 {
  201. ps = 20
  202. }
  203. if midInter, ok := c.Get("mid"); ok {
  204. mid = midInter.(int64)
  205. }
  206. c.JSON(favSvr.Audio(c, accessKey, mid, pn, ps), nil)
  207. }
  208. func tab(c *bm.Context) {
  209. param := &favorite.TabParam{}
  210. if err := c.Bind(param); err != nil {
  211. return
  212. }
  213. if midInter, ok := c.Get("mid"); ok {
  214. param.Mid = midInter.(int64)
  215. }
  216. c.JSON(favSvr.Tab(c, param.AccessKey, param.ActionKey, param.Device, param.MobiApp, param.Platform, param.Filtered, param.Build, param.Mid))
  217. }