47dbafab7a6faa37e49b4f2724bc604e20cf8be2.svn-base 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. package routers
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. "github.com/kptyun/KPTCOMM/comm"
  6. _ "github.com/kptyun/KPTCOMM/docs"
  7. "github.com/kptyun/KPTCOMM/middleware/jwt"
  8. // "github.com/kptyun/KPTCOMM/middleware/permission"
  9. "github.com/kptyun/KPTCOMM/pkg/setting"
  10. "github.com/kptyun/KPTCOMM/routers/api"
  11. "github.com/swaggo/gin-swagger"
  12. "github.com/swaggo/gin-swagger/swaggerFiles"
  13. "net/http"
  14. "strings"
  15. )
  16. func InitRouter() *gin.Engine {
  17. r := gin.New()
  18. // ginpprof.Wrap(r)
  19. r.Use(gin.LoggerWithFormatter(func(param gin.LogFormatterParams) string {
  20. // 你的自定义格式
  21. return fmt.Sprintf(" %+v \n",
  22. param.Keys,
  23. )
  24. }))
  25. r.Use(gin.Logger()) // 日志
  26. r.Use(Cors()) // 跨域请求rolemenus
  27. r.Use(gin.Recovery())
  28. gin.SetMode(setting.ServerSetting.RunMode)
  29. r.Static("/static", setting.CurrentPath + "/dist/static") // 添加资源路径
  30. r.StaticFile("/", setting.CurrentPath + "/dist/index.html") //前端接口
  31. r.StaticFile("/favicon.ico", setting.CurrentPath + "/dist/favicon.ico") //前端接口
  32. r.Static("/file", setting.CurrentPath + "/uploads/file")
  33. r.Static("/uploads", setting.CurrentPath + "/uploads")
  34. r.POST("/auth", api.Auth) // 获取登录token
  35. r.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler)) // API 注释
  36. if setting.CommSetting.PortName!="" {
  37. r.GET("/comm/:id/:x/:y/", comm.ProcessHttp)
  38. r.GET("/cps/:id/:limit", comm.ProcessHttpCPS)
  39. r.POST("/comm/:id/:x/:y/", comm.ProcessHttp)
  40. r.POST("/cps/:id/:limit", comm.ProcessHttpCPS)
  41. }
  42. eqm := r.Group("/manage/api")
  43. eqm.POST("/login", api.Auth)
  44. apiV1 := r.Group("/authdata")
  45. apiV1.Use(jwt.JWT()) // token 验证
  46. // apiV1.Use(permission.CasbinMiddleware()) // 权限 验证
  47. {
  48. apiV1.POST("/rolemenus", api.GetRecuDataByName)
  49. apiV1.GET("/userinfo", api.GetUserinfo)
  50. apiV1.POST("/logout", api.UserLogout)
  51. apiV1.POST("/GetRecuDataByName", api.GetRecuDataByName) ////
  52. apiV1.POST("/GetDataByName", api.GetDataByName)
  53. apiV1.POST("/GetDataByNames", api.GetDataByNames)
  54. apiV1.POST("/PostDataByName", api.PostDataByName)
  55. apiV1.POST("/PostDataByNames", api.PostDataByNames)
  56. apiV1.POST("/UpdateDataRelation", api.UpdateDataRelation) //log.error
  57. apiV1.POST("/GetDataByNameForm", api.GetDataByNameForm)
  58. apiV1.POST("/PostDataByNameForm", api.PostDataByNameForm)
  59. apiV1.POST("/GetUpkeepPlan", api.GetUpkeepPlan)
  60. apiV1.POST("/GetReportform", api.GetReportform)
  61. apiV1.POST("/ExecDataByConfig", api.ExecDataByConfig)
  62. apiV1.POST("/ImportExcel", api.ImportExcel)
  63. apiV1.POST("/upload/:id/:name", api.UploadFile)
  64. apiV1.POST("/uploads", api.UploadFiles)
  65. apiV1.POST("/uploaderimage", api.UploaderImage)
  66. apiV1.POST("/removeimage", api.RemovePicByName)
  67. apiV1.GET("/getthumbnailimage/:filename", api.GetThumbnailImage)
  68. apiV1.POST("/getoriginimage/:filename", api.GetOriginImage)
  69. apiV1.GET("/getfileraw/:filename", api.GetFileRaw)
  70. apiV1.GET("/downloadfile/:filename", api.DownloadFile)
  71. apiV1.POST("/removefile/:id", api.RemoveFileByName)
  72. apiV1.POST("/testdata", api.TestData)
  73. }
  74. if setting.ServerSetting.NoAuth > 0 {
  75. apiV2 := r.Group("/data") // restful 接口 tablename 是 表名字
  76. {
  77. apiV2.POST("/getdata", api.GetData)
  78. apiV2.POST("/GetDataByName", api.GetDataByName)
  79. apiV2.POST("/GetDataByNames", api.GetDataByNames)
  80. apiV2.POST("/PostDataByName", api.PostDataByName)
  81. apiV2.POST("/PostDataByNames", api.PostDataByNames)
  82. apiV2.POST("/ExecDataByConfig", api.ExecDataByConfig)
  83. apiV2.POST("/GetDataByNameForm", api.GetDataByNameForm)
  84. apiV2.POST("/PostDataByNameForm", api.PostDataByNameForm)
  85. apiV2.POST("/ImportExcel", api.ImportExcel)
  86. apiV2.POST("/upload", api.UploadFile)
  87. apiV2.POST("/uploads", api.UploadFiles)
  88. apiV2.POST("/uploaderimage", api.UploaderImage)
  89. apiV2.POST("/removeimage", api.RemovePicByName)
  90. apiV2.GET("/getthumbnailimage/:filename", api.GetThumbnailImage)
  91. apiV2.GET("/getoriginimage/:filename", api.GetOriginImage)
  92. apiV2.GET("/getfileraw/:filename", api.GetFileRaw)
  93. apiV2.GET("/downloadfile/:filename", api.DownloadFile)
  94. apiV2.POST("/removefile", api.RemoveFileByName)
  95. apiV2.POST("/testdata", api.TestData)
  96. }
  97. }
  98. return r
  99. }
  100. // 跨域
  101. func Cors() gin.HandlerFunc {
  102. return func(c *gin.Context) {
  103. method := c.Request.Method //请求方法
  104. origin := c.Request.Header.Get("Origin") //请求头部
  105. var headerKeys []string // 声明请求头keys
  106. for k, _ := range c.Request.Header {
  107. headerKeys = append(headerKeys, k)
  108. }
  109. headerStr := strings.Join(headerKeys, ", ")
  110. if headerStr != "" {
  111. headerStr = fmt.Sprintf("access-control-allow-origin, access-control-allow-headers, %s", headerStr)
  112. } else {
  113. headerStr = "access-control-allow-origin, access-control-allow-headers"
  114. }
  115. if origin != "" {
  116. c.Writer.Header().Set("Access-Control-Allow-Origin", "*")
  117. c.Header("Access-Control-Allow-Origin", "*") // 这是允许访问所有域
  118. c.Header("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE, UPDATE") //服务器支持的所有跨域请求的方法,为了避免浏览次请求的多次'预检'请求
  119. // header的类型
  120. c.Header("Access-Control-Allow-Headers", "Authorization, Content-Length, X-CSRF-Token, id, Token, name, optname, thumbnail, session, X_Requested_With, Accept, Origin, Host, Connection, Accept-Encoding, Accept-Language,DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, Cache-Control, Content-Type, Pragma")
  121. // 允许跨域设置 可以返回其他子段
  122. c.Header("Access-Control-Expose-Headers", "Content-Length, Access-Control-Allow-Origin, Access-Control-Allow-Headers, Cache-Control, Content-Language, Content-Type, Expires, Last-Modified, Pragma, FooBar") // 跨域关键设置 让浏览器可以解析
  123. c.Header("Access-Control-Max-Age", "172800") // 缓存请求信息 单位为秒
  124. c.Header("Access-Control-Allow-Credentials", "false") // 跨域请求是否需要带cookie信息 默认设置为true
  125. c.Set("content-type", "application/json") // 设置返回格式是json
  126. }
  127. //放行所有OPTIONS方法
  128. if method == "OPTIONS" {
  129. c.JSON(http.StatusOK, "Options Request!")
  130. }
  131. // 处理请求
  132. c.Next() // 处理请求
  133. }
  134. }