history.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. package http
  2. import (
  3. "strconv"
  4. "strings"
  5. "go-common/app/interface/main/app-interface/model"
  6. "go-common/app/interface/main/app-interface/model/history"
  7. hismodle "go-common/app/interface/main/history/model"
  8. "go-common/library/ecode"
  9. "go-common/library/log"
  10. bm "go-common/library/net/http/blademaster"
  11. "go-common/library/xstr"
  12. )
  13. var (
  14. busMap = map[string][]string{
  15. "": {},
  16. "all": {},
  17. "archive": {"archive", "pgc"},
  18. "article": {"article", "article-list"},
  19. "live": {"live"},
  20. }
  21. )
  22. //history list
  23. func historyList(c *bm.Context) {
  24. param := &history.HisParam{}
  25. if err := c.Bind(param); err != nil {
  26. return
  27. }
  28. if param.Pn < 1 {
  29. param.Pn = 1
  30. }
  31. if param.Ps > 20 || param.Ps <= 0 {
  32. param.Ps = 20
  33. }
  34. if midInter, ok := c.Get("mid"); ok {
  35. param.Mid = midInter.(int64)
  36. }
  37. plat := model.Plat(param.MobiApp, param.Device)
  38. c.JSON(historySvr.List(c, param.Mid, param.Build, param.Pn, param.Ps, param.Platform, plat))
  39. }
  40. // shortAll get shorturl list
  41. func live(c *bm.Context) {
  42. param := &history.LiveParam{}
  43. if err := c.Bind(param); err != nil {
  44. return
  45. }
  46. roomIDs, err := xstr.SplitInts(param.RoomIDs)
  47. if err != nil {
  48. c.JSON(nil, ecode.RequestErr)
  49. return
  50. }
  51. c.JSON(historySvr.Live(c, roomIDs))
  52. }
  53. //history list
  54. func liveList(c *bm.Context) {
  55. param := &history.HisParam{}
  56. if err := c.Bind(param); err != nil {
  57. return
  58. }
  59. if param.Pn < 1 {
  60. param.Pn = 1
  61. }
  62. if param.Ps > 20 || param.Ps <= 0 {
  63. param.Ps = 20
  64. }
  65. if midInter, ok := c.Get("mid"); ok {
  66. param.Mid = midInter.(int64)
  67. }
  68. plat := model.Plat(param.MobiApp, param.Device)
  69. c.JSON(historySvr.LiveList(c, param.Mid, param.Build, param.Pn, param.Ps, param.Platform, plat))
  70. }
  71. //history cursor
  72. func historyCursor(c *bm.Context) {
  73. param := &history.HisParam{}
  74. if err := c.Bind(param); err != nil {
  75. return
  76. }
  77. if param.Ps > 20 || param.Ps <= 0 {
  78. param.Ps = 20
  79. }
  80. if midInter, ok := c.Get("mid"); ok {
  81. param.Mid = midInter.(int64)
  82. }
  83. businesses, ok := busMap[param.Business]
  84. if !ok {
  85. log.Error("historyCursor invalid business(%s)", param.Business)
  86. c.JSON(nil, ecode.RequestErr)
  87. return
  88. }
  89. plat := model.Plat(param.MobiApp, param.Device)
  90. c.JSON(historySvr.Cursor(c, param.Mid, param.Build, param.Max, param.Ps, param.Platform, param.MaxTP, plat, businesses))
  91. }
  92. //history del
  93. func historyDel(c *bm.Context) {
  94. param := &history.DelParam{}
  95. if err := c.Bind(param); err != nil {
  96. return
  97. }
  98. if midInter, ok := c.Get("mid"); ok {
  99. param.Mid = midInter.(int64)
  100. }
  101. var hisRes []*hismodle.Resource
  102. for _, boid := range param.Boids {
  103. bo := strings.Split(boid, "_")
  104. if len(bo) != 2 {
  105. log.Error("historyDel invalid param(%+v)", param)
  106. c.JSON(nil, ecode.RequestErr)
  107. return
  108. }
  109. oid, _ := strconv.ParseInt(bo[1], 10, 0)
  110. if oid == 0 {
  111. log.Error("historyDel invalid param(%+v)", param)
  112. c.JSON(nil, ecode.RequestErr)
  113. return
  114. }
  115. hisRes = append(hisRes, &hismodle.Resource{
  116. Oid: oid,
  117. Business: bo[0],
  118. })
  119. }
  120. c.JSON(nil, historySvr.Del(c, param.Mid, hisRes))
  121. }
  122. //history clear
  123. func historyClear(c *bm.Context) {
  124. param := &history.HisParam{}
  125. if err := c.Bind(param); err != nil {
  126. return
  127. }
  128. if midInter, ok := c.Get("mid"); ok {
  129. param.Mid = midInter.(int64)
  130. }
  131. businesses, ok := busMap[param.Business]
  132. if !ok {
  133. log.Error("historyCursor invalid business(%s)", param.Business)
  134. c.JSON(nil, ecode.RequestErr)
  135. return
  136. }
  137. c.JSON(nil, historySvr.Clear(c, param.Mid, businesses))
  138. }