router.go 811 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package api
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // RegRouters 注册路由
  7. func RegRouters(svc *Service) {
  8. svc.Gin.Use(Logger())
  9. //登录
  10. spud3dGroup := svc.NewGinRouter("/longyuan")
  11. spud3dGroup.POSTJWT("/login/succ", ServiceLoginSucc)
  12. //minio
  13. // spud3dGroup.POSTJWT("/oss/policy", MinioCreateUserPolicy)
  14. FassiApi(spud3dGroup)
  15. CreateCatRouter(spud3dGroup)
  16. }
  17. func Logger() gin.HandlerFunc {
  18. return func(c *gin.Context) {
  19. // 开始时间
  20. // start := time.Now()
  21. // 处理请求
  22. c.Next()
  23. // 结束时间
  24. // end := time.Now()
  25. //执行时间
  26. // latency := end.Sub(start)
  27. path := c.Request.URL.Path
  28. clientIP := c.ClientIP()
  29. // method := c.Request.Method
  30. // statusCode := c.Writer.Status()
  31. out := fmt.Sprintf("%15s=> %s", clientIP, path)
  32. fmt.Println(out)
  33. }
  34. }