2bb6508dd1169418e87419b0ce0ab9924ba50de1.svn-base 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. package routers
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. "../comm"
  6. _ "../docs"
  7. "../middleware/jwt"
  8. // "../middleware/permission"
  9. "../pkg/setting"
  10. "../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.Static("/datas", setting.CurrentPath + "/dist/datas") // 添加资源路径
  31. //r.Static("/staticapp", setting.CurrentPath + "/distapp/static") // 添加资源路径
  32. r.StaticFile("/", setting.CurrentPath + "/dist/index.html") //前端接口
  33. //r.StaticFile("/app", setting.CurrentPath + "/distapp/index.html") //前端接口
  34. r.StaticFile("/favicon.ico", setting.CurrentPath + "/dist/favicon.ico") //前端接口
  35. r.StaticFile("/myMap.json", setting.CurrentPath + "/data/myMap.json") //前端接口
  36. r.Static("/file", setting.CurrentPath + "/uploads/file")
  37. r.Static("/uploads", setting.CurrentPath + "/uploads")
  38. r.POST("/auth", api.Auth)// 获取登录token
  39. r.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler)) // API 注释
  40. if setting.CommSetting.PortName!="" {
  41. r.GET("/comm/:id/:x/:y/", comm.ProcessHttp)
  42. r.GET("/cps/:id/:limit", comm.ProcessHttpCPS)
  43. r.POST("/comm/:id/:x/:y/", comm.ProcessHttp)
  44. r.POST("/cps/:id/:limit", comm.ProcessHttpCPS)
  45. }
  46. eqm := r.Group("/manage/api")
  47. eqm.POST("/login", api.Auth)
  48. apiV1 := r.Group("/authdata")
  49. apiV1.Use(jwt.JWT()) // token 验证
  50. // apiV1.Use(permission.CasbinMiddleware()) // 权限 验证
  51. {
  52. apiV1.POST("/rolemenus", api.GetRecuDataByName)
  53. apiV1.GET("/userinfo", api.GetUserinfo)
  54. apiV1.POST("/logout", api.UserLogout)
  55. apiV1.POST("/GetRecuDataByName", api.GetRecuDataByName) ////
  56. apiV1.POST("/GetDataByName", api.GetDataByName)
  57. apiV1.POST("/GetDataByNames", api.GetDataByNames)
  58. apiV1.POST("/PostDataByName", api.PostDataByName)
  59. apiV1.POST("/PostThirdPartyData", api.PostThirdPartyData)
  60. apiV1.POST("/PostDataByNames", api.PostDataByNames)
  61. apiV1.POST("/UpdateDataRelation", api.UpdateDataRelation) //log.error
  62. apiV1.POST("/GetDataByNameForm", api.GetDataByNameForm)
  63. apiV1.POST("/PostDataByNameForm", api.PostDataByNameForm)
  64. apiV1.POST("/GetUpkeepPlan", api.GetUpkeepPlan)
  65. apiV1.POST("/GetReportform", api.GetReportform)
  66. apiV1.POST("/GetAccount", api.GetAccount)
  67. apiV1.POST("/ExecDataByConfig", api.ExecDataByConfig)
  68. apiV1.POST("/ImportExcel", api.ImportExcel)
  69. apiV1.POST("/upload/:id/:name", api.UploadFile)
  70. apiV1.POST("/uploads", api.UploadFiles)
  71. apiV1.POST("/uploaderimage", api.UploaderImage)
  72. apiV1.POST("/removeimage", api.RemovePicByName)
  73. apiV1.GET("/getthumbnailimage/:filename", api.GetThumbnailImage)
  74. apiV1.POST("/getoriginimage/:filename", api.GetOriginImage)
  75. apiV1.GET("/getfileraw/:filename", api.GetFileRaw)
  76. apiV1.GET("/downloadfile/:filename", api.DownloadFile)
  77. apiV1.POST("/downloadmailreport", api.DownloadMailReport)
  78. apiV1.POST("/removefile/:id", api.RemoveFileByName)
  79. apiV1.POST("/testdata", api.TestData)
  80. apiV1.POST("/Testpartitions", api.Testpartitions)
  81. }
  82. if setting.ServerSetting.NoAuth > 0 {
  83. apiV2 := r.Group("/data") // restful 接口 tablename 是 表名字
  84. {
  85. apiV2.POST("/getdata", api.GetData)
  86. apiV2.POST("/GetDataByName", api.GetDataByName)
  87. apiV2.POST("/GetDataByNames", api.GetDataByNames)
  88. apiV2.POST("/PostDataByName", api.PostDataByName)
  89. apiV2.POST("/PostDataByNames", api.PostDataByNames)
  90. apiV2.POST("/ExecDataByConfig", api.ExecDataByConfig)
  91. apiV2.POST("/GetDataByNameForm", api.GetDataByNameForm)
  92. apiV2.POST("/PostDataByNameForm", api.PostDataByNameForm)
  93. apiV2.POST("/ImportExcel", api.ImportExcel)
  94. apiV2.POST("/upload", api.UploadFile)
  95. apiV2.POST("/uploads", api.UploadFiles)
  96. apiV2.POST("/uploaderimage", api.UploaderImage)
  97. apiV2.POST("/removeimage", api.RemovePicByName)
  98. apiV2.GET("/getthumbnailimage/:filename", api.GetThumbnailImage)
  99. apiV2.GET("/getoriginimage/:filename", api.GetOriginImage)
  100. apiV2.GET("/getfileraw/:filename", api.GetFileRaw)
  101. apiV2.GET("/downloadfile/:filename", api.DownloadFile)
  102. apiV2.POST("/removefile", api.RemoveFileByName)
  103. apiV2.POST("/testdata", api.TestData)
  104. }
  105. }
  106. r.POST("/getopenid/:code", api.GetOpenID)
  107. apiV3 := r.Group("/thi") // restful 接口 tablename 是 表名字
  108. {
  109. apiV3.POST("/GetDataByName", api.GetDataByName)
  110. apiV3.POST("/PostDataByName", api.PostDataByName)
  111. }
  112. apiV4 := r.Group("/openapi")
  113. //apiV4.Use(jwt.JWT())
  114. {
  115. apiV4.POST("/GetDataByName", api.GetDataByNameOPEN)
  116. apiV4.POST("/PostDataByName", api.PostDataByNameOPEN)
  117. }
  118. return r
  119. }
  120. // 跨域
  121. func Cors() gin.HandlerFunc {
  122. return func(c *gin.Context) {
  123. method := c.Request.Method //请求方法
  124. origin := c.Request.Header.Get("Origin") //请求头部
  125. var headerKeys []string // 声明请求头keys
  126. for k, _ := range c.Request.Header {
  127. headerKeys = append(headerKeys, k)
  128. }
  129. headerStr := strings.Join(headerKeys, ", ")
  130. if headerStr != "" {
  131. headerStr = fmt.Sprintf("access-control-allow-origin, access-control-allow-headers, %s", headerStr)
  132. } else {
  133. headerStr = "access-control-allow-origin, access-control-allow-headers"
  134. }
  135. if origin != "" {
  136. c.Writer.Header().Set("Access-Control-Allow-Origin", "*")
  137. c.Header("Access-Control-Allow-Origin", "*") // 这是允许访问所有域
  138. c.Header("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE, UPDATE") //服务器支持的所有跨域请求的方法,为了避免浏览次请求的多次'预检'请求
  139. // header的类型
  140. 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")
  141. // 允许跨域设置 可以返回其他子段
  142. 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") // 跨域关键设置 让浏览器可以解析
  143. c.Header("Access-Control-Max-Age", "172800") // 缓存请求信息 单位为秒
  144. c.Header("Access-Control-Allow-Credentials", "false") // 跨域请求是否需要带cookie信息 默认设置为true
  145. c.Set("content-type", "application/json") // 设置返回格式是json
  146. }
  147. //放行所有OPTIONS方法
  148. if method == "OPTIONS" {
  149. c.JSON(http.StatusOK, "Options Request!")
  150. }
  151. // 处理请求
  152. c.Next() // 处理请求
  153. }
  154. }