xreply.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package http
  2. import (
  3. xmodel "go-common/app/interface/main/reply/model/xreply"
  4. "go-common/library/ecode"
  5. bm "go-common/library/net/http/blademaster"
  6. "go-common/library/net/metadata"
  7. )
  8. func xreply(c *bm.Context) {
  9. v := new(xmodel.ReplyReq)
  10. if err := c.Bind(v); err != nil {
  11. return
  12. }
  13. v.Mid = metadata.Int64(c, metadata.Mid)
  14. v.IP = metadata.String(c, metadata.RemoteIP)
  15. if !v.Cursor.Legal() {
  16. c.JSON(nil, ecode.RequestErr)
  17. return
  18. }
  19. c.JSON(rpSvr.Xreply(c, v))
  20. }
  21. func subFolder(c *bm.Context) {
  22. v := new(xmodel.SubFolderReq)
  23. if err := c.Bind(v); err != nil {
  24. return
  25. }
  26. v.Mid = metadata.Int64(c, metadata.Mid)
  27. v.IP = metadata.String(c, metadata.RemoteIP)
  28. if !v.Cursor.Legal() || v.Cursor.Backward() {
  29. c.JSON(nil, ecode.RequestErr)
  30. return
  31. }
  32. c.JSON(rpSvr.SubFoldedReply(c, v))
  33. }
  34. func rootFolder(c *bm.Context) {
  35. v := new(xmodel.RootFolderReq)
  36. if err := c.Bind(v); err != nil {
  37. return
  38. }
  39. v.Mid = metadata.Int64(c, metadata.Mid)
  40. v.IP = metadata.String(c, metadata.RemoteIP)
  41. if !v.Cursor.Legal() || v.Cursor.Backward() {
  42. c.JSON(nil, ecode.RequestErr)
  43. return
  44. }
  45. c.JSON(rpSvr.RootFoldedReply(c, v))
  46. }