web_reply.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package http
  2. import (
  3. "strconv"
  4. "go-common/app/interface/main/creative/model/search"
  5. "go-common/library/ecode"
  6. "go-common/library/log"
  7. bm "go-common/library/net/http/blademaster"
  8. "go-common/library/net/metadata"
  9. )
  10. func replyList(c *bm.Context) {
  11. req := c.Request
  12. params := req.Form
  13. kw := params.Get("keyword")
  14. order := params.Get("order")
  15. pnStr := params.Get("pn")
  16. psStr := params.Get("ps")
  17. var (
  18. err error
  19. oid int64
  20. isReport, tp int
  21. )
  22. isReportStr := params.Get("is_report")
  23. if isReportStr != "" {
  24. isReport, err = strconv.Atoi(isReportStr)
  25. if err != nil {
  26. log.Error("strconv.Atoi replyList isReportStr(%s)|error(%v)", isReportStr, err)
  27. c.JSON(nil, ecode.RequestErr)
  28. }
  29. }
  30. oidStr := params.Get("oid")
  31. if oidStr != "" {
  32. oid, err = strconv.ParseInt(oidStr, 10, 64)
  33. if err != nil {
  34. log.Error("strconv.ParseInt replyList oidStr(%s)|error(%v)", oidStr, err)
  35. c.JSON(nil, ecode.RequestErr)
  36. }
  37. }
  38. typeStr := params.Get("type")
  39. if typeStr != "" {
  40. tp, err = strconv.Atoi(typeStr)
  41. if err != nil {
  42. log.Error("strconv.ParseInt replyList typeStr(%s)|error(%v)", typeStr, err)
  43. c.JSON(nil, ecode.RequestErr)
  44. return
  45. }
  46. }
  47. filterStr := params.Get("filter")
  48. midI, ok := c.Get("mid")
  49. if !ok {
  50. c.JSON(nil, ecode.NoLogin)
  51. return
  52. }
  53. mid, _ := midI.(int64)
  54. pn, err := strconv.Atoi(pnStr)
  55. if err != nil || pn < 1 {
  56. pn = 1
  57. }
  58. ps, err := strconv.Atoi(psStr)
  59. if err != nil || ps <= 0 || pn > 10 {
  60. ps = 10
  61. }
  62. tmidStr := params.Get("tmid")
  63. tmid, _ := strconv.ParseInt(tmidStr, 10, 64)
  64. if tmid > 0 && dataSvc.IsWhite(mid) {
  65. mid = tmid
  66. }
  67. p := &search.ReplyParam{
  68. Ak: params.Get("access_key"),
  69. Ck: c.Request.Header.Get("cookie"),
  70. OMID: mid,
  71. OID: oid,
  72. Pn: pn,
  73. Ps: ps,
  74. IP: metadata.String(c, metadata.RemoteIP),
  75. IsReport: int8(isReport),
  76. Type: int8(tp),
  77. FilterCtime: filterStr,
  78. Kw: kw,
  79. Order: order,
  80. }
  81. replies, err := replySvc.Replies(c, p)
  82. if err != nil {
  83. c.JSON(nil, err)
  84. return
  85. }
  86. c.JSONMap(map[string]interface{}{
  87. "data": replies.Result,
  88. "pager": map[string]int{
  89. "current": p.Pn,
  90. "size": p.Ps,
  91. "total": replies.Total,
  92. },
  93. }, nil)
  94. }