notice.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package http
  2. import (
  3. "net/http"
  4. "go-common/library/log"
  5. bm "go-common/library/net/http/blademaster"
  6. "go-common/library/net/http/blademaster/render"
  7. )
  8. func notices(c *bm.Context) {
  9. v := new(struct {
  10. Type int `form:"type"`
  11. Platform int `form:"platform"`
  12. From int `form:"from" default:"0" validate:"min=0"`
  13. Limit int `form:"limit" default:"20" validate:"min=1"`
  14. })
  15. if err := c.Bind(v); err != nil {
  16. return
  17. }
  18. data, total, err := svc.GetNotices(c, v.Type, v.Platform, v.From, v.Limit)
  19. if err != nil {
  20. log.Error("growup svc.GetNotices error(%v)", err)
  21. c.JSON(nil, err)
  22. return
  23. }
  24. c.Render(http.StatusOK, render.MapJSON(map[string]interface{}{
  25. "code": 0,
  26. "message": "0",
  27. "data": data,
  28. "paging": map[string]int64{
  29. "page_size": int64(v.Limit),
  30. "total": total,
  31. },
  32. }))
  33. }
  34. func latestNotice(c *bm.Context) {
  35. v := new(struct {
  36. Platform int `form:"platform" validate:"required"`
  37. })
  38. if err := c.Bind(v); err != nil {
  39. return
  40. }
  41. notice, err := svc.LatestNotice(c, v.Platform)
  42. if err != nil {
  43. log.Error("svc.LatestNotice error(%v)", err)
  44. c.JSON(nil, err)
  45. return
  46. }
  47. c.JSON(notice, nil)
  48. }