toview.go 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. package http
  2. import (
  3. "strconv"
  4. "go-common/library/ecode"
  5. "go-common/library/log/infoc"
  6. bm "go-common/library/net/http/blademaster"
  7. "go-common/library/net/metadata"
  8. "go-common/library/xstr"
  9. )
  10. // toView return the user toview list
  11. func toView(c *bm.Context) {
  12. var (
  13. err error
  14. mid int64
  15. v = new(Page)
  16. )
  17. if err = c.Bind(v); err != nil {
  18. return
  19. }
  20. if midInter, ok := c.Get("mid"); ok {
  21. mid = midInter.(int64)
  22. }
  23. if mid <= 0 {
  24. c.JSON(nil, ecode.RequestErr)
  25. return
  26. }
  27. if v.Pn < 1 {
  28. v.Pn = 1
  29. }
  30. if v.Ps > cnf.History.Max || v.Ps <= 0 {
  31. v.Ps = cnf.History.Max
  32. }
  33. list, count, err := hisSvc.ToView(c, mid, v.Pn, v.Ps, metadata.String(c, metadata.RemoteIP))
  34. if err != nil {
  35. c.JSON(nil, err)
  36. return
  37. }
  38. data := map[string]interface{}{
  39. "list": list,
  40. "count": count,
  41. }
  42. c.JSON(data, nil)
  43. }
  44. // toView return the user toview list
  45. func webToView(c *bm.Context) {
  46. var (
  47. err error
  48. mid int64
  49. v = new(Page)
  50. )
  51. if err = c.Bind(v); err != nil {
  52. return
  53. }
  54. if midInter, ok := c.Get("mid"); ok {
  55. mid = midInter.(int64)
  56. }
  57. if mid <= 0 {
  58. c.JSON(nil, ecode.RequestErr)
  59. return
  60. }
  61. if v.Pn < 1 {
  62. v.Pn = 1
  63. }
  64. if v.Ps > cnf.History.Max || v.Ps <= 0 {
  65. v.Ps = cnf.History.Max
  66. }
  67. list, count, err := hisSvc.WebToView(c, mid, v.Pn, v.Ps, metadata.String(c, metadata.RemoteIP))
  68. if err != nil {
  69. c.JSON(nil, err)
  70. return
  71. }
  72. data := map[string]interface{}{
  73. "list": list,
  74. "count": count,
  75. }
  76. c.JSON(data, nil)
  77. }
  78. // delToView delete the user video of toview.
  79. func delToView(c *bm.Context) {
  80. var (
  81. err error
  82. mid int64
  83. v = new(struct {
  84. Aids []int64 `form:"aid,split"`
  85. Viewed bool `form:"viewed"`
  86. })
  87. )
  88. if err = c.Bind(v); err != nil {
  89. return
  90. }
  91. if midInter, ok := c.Get("mid"); ok {
  92. mid = midInter.(int64)
  93. }
  94. if mid <= 0 {
  95. c.JSON(nil, ecode.RequestErr)
  96. return
  97. }
  98. c.JSON(nil, hisSvc.DelToView(c, mid, v.Aids, v.Viewed, metadata.String(c, metadata.RemoteIP)))
  99. }
  100. // addToView add video to the user toview list.
  101. func addToView(c *bm.Context) {
  102. var (
  103. err error
  104. mid int64
  105. v = new(struct {
  106. Aid int64 `form:"aid" validate:"required,gt=0"`
  107. })
  108. )
  109. if err = c.Bind(v); err != nil {
  110. return
  111. }
  112. if midInter, ok := c.Get("mid"); ok {
  113. mid = midInter.(int64)
  114. }
  115. if mid <= 0 {
  116. c.JSON(nil, ecode.RequestErr)
  117. return
  118. }
  119. if collector != nil {
  120. collector.InfoAntiCheat2(c, "", strconv.FormatInt(v.Aid, 10), strconv.FormatInt(mid, 10), strconv.FormatInt(v.Aid, 10), infoc.ItemTypeAv, infoc.ActionToView, strconv.FormatInt(v.Aid, 10))
  121. }
  122. c.JSON(nil, hisSvc.AddToView(c, mid, v.Aid, metadata.String(c, metadata.RemoteIP)))
  123. }
  124. // addToViews add videos to the user toview list.
  125. func addMultiToView(c *bm.Context) {
  126. var (
  127. err error
  128. mid int64
  129. v = new(struct {
  130. Aids []int64 `form:"aids,split"`
  131. })
  132. )
  133. if err = c.Bind(v); err != nil {
  134. return
  135. }
  136. if midInter, ok := c.Get("mid"); ok {
  137. mid = midInter.(int64)
  138. }
  139. if mid <= 0 {
  140. c.JSON(nil, ecode.RequestErr)
  141. return
  142. }
  143. if collector != nil {
  144. collector.InfoAntiCheat2(c, "", xstr.JoinInts(v.Aids), strconv.FormatInt(mid, 10), xstr.JoinInts(v.Aids), infoc.ItemTypeAv, infoc.ActionToView, xstr.JoinInts(v.Aids))
  145. }
  146. c.JSON(nil, hisSvc.AddMultiToView(c, mid, v.Aids, metadata.String(c, metadata.RemoteIP)))
  147. }
  148. func managerToView(c *bm.Context) {
  149. var (
  150. err error
  151. v = new(struct {
  152. Mid int64 `form:"mid" validate:"required,gt=0"`
  153. })
  154. )
  155. if err = c.Bind(v); err != nil {
  156. return
  157. }
  158. list, err := hisSvc.ManagerToView(c, v.Mid, metadata.String(c, metadata.RemoteIP))
  159. if err != nil {
  160. c.JSON(nil, err)
  161. return
  162. }
  163. data := map[string]interface{}{
  164. "list": list,
  165. }
  166. c.JSON(data, nil)
  167. }
  168. // remainingToView get the quantity of user's remaining toview.
  169. func remainingToView(c *bm.Context) {
  170. var (
  171. mid int64
  172. )
  173. if midInter, ok := c.Get("mid"); ok {
  174. mid = midInter.(int64)
  175. }
  176. if mid <= 0 {
  177. c.JSON(nil, ecode.RequestErr)
  178. return
  179. }
  180. remaining, err := hisSvc.RemainingToView(c, mid, metadata.String(c, metadata.RemoteIP))
  181. if err != nil {
  182. c.JSON(nil, err)
  183. return
  184. }
  185. data := map[string]interface{}{
  186. "count": remaining,
  187. }
  188. c.JSON(data, nil)
  189. }
  190. // clearToView clear the user toview list.
  191. func clearToView(c *bm.Context) {
  192. var (
  193. mid int64
  194. )
  195. if midInter, ok := c.Get("mid"); ok {
  196. mid = midInter.(int64)
  197. }
  198. if mid <= 0 {
  199. c.JSON(nil, ecode.RequestErr)
  200. return
  201. }
  202. c.JSON(nil, hisSvc.ClearToView(c, mid))
  203. }