history.go 483 B

12345678910111213141516171819202122232425
  1. package http
  2. import (
  3. "go-common/library/ecode"
  4. bm "go-common/library/net/http/blademaster"
  5. )
  6. // get history
  7. func history(c *bm.Context) {
  8. v := new(struct {
  9. AccessKey string `form:"access_key"`
  10. })
  11. if err := c.Bind(v); err != nil {
  12. return
  13. }
  14. if v.AccessKey == "" {
  15. c.JSON(nil, ecode.NoLogin)
  16. return
  17. }
  18. if mid, ok := c.Get("mid"); !ok { // if not login, we don't call follow data
  19. c.JSON(nil, ecode.NoLogin)
  20. } else {
  21. c.JSON(hisSvc.GetHistory(c, mid.(int64)))
  22. }
  23. }