passport.go 368 B

1234567891011121314151617181920
  1. package http
  2. import (
  3. "go-common/library/ecode"
  4. bm "go-common/library/net/http/blademaster"
  5. )
  6. func testUserName(c *bm.Context) {
  7. mid, ok := c.Get("mid")
  8. if !ok {
  9. c.JSON(nil, ecode.RequestErr)
  10. return
  11. }
  12. name := c.Request.Form.Get("name")
  13. if name == "" {
  14. c.JSON(nil, ecode.RequestErr)
  15. return
  16. }
  17. c.JSON(nil, passSvc.TestUserName(c, name, mid.(int64)))
  18. }