蛋蛋星球-客户端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

55 行
1.1 KiB

  1. package router
  2. import (
  3. "applet/app/cfg"
  4. "applet/app/hdl"
  5. "applet/app/mw"
  6. _ "applet/docs"
  7. "github.com/gin-gonic/gin"
  8. swaggerFiles "github.com/swaggo/files"
  9. ginSwagger "github.com/swaggo/gin-swagger"
  10. )
  11. // 初始化路由
  12. func Init() *gin.Engine {
  13. // debug, release, test 项目阶段
  14. mode := "release"
  15. if cfg.Debug {
  16. mode = "debug"
  17. }
  18. gin.SetMode(mode)
  19. //创建一个新的启动器
  20. r := gin.New()
  21. r.GET("/api/swagger/*any", func(c *gin.Context) {
  22. // r.Use(mw.SwagAuth())
  23. ginSwagger.DisablingWrapHandler(swaggerFiles.Handler, "SWAGGER")(c)
  24. })
  25. // 是否打印访问日志, 在非正式环境都打印
  26. if mode != "release" {
  27. r.Use(gin.Logger())
  28. }
  29. r.Use(gin.Recovery())
  30. r.GET("/favicon.ico", func(c *gin.Context) {
  31. c.Status(204)
  32. })
  33. r.NoRoute(func(c *gin.Context) {
  34. c.JSON(404, gin.H{"code": 404, "msg": "page not found", "data": []struct{}{}})
  35. })
  36. r.NoMethod(func(c *gin.Context) {
  37. c.JSON(405, gin.H{"code": 405, "msg": "method not allowed", "data": []struct{}{}})
  38. })
  39. r.Use(mw.Cors)
  40. route(r.Group("/api"))
  41. return r
  42. }
  43. func route(r *gin.RouterGroup) {
  44. r.GET("/test", hdl.Demo)
  45. r.Use(mw.Auth) // 以下接口需要JWT验证
  46. {
  47. }
  48. }