cmd.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package cmd
  2. import (
  3. "context"
  4. "demo/internal/controller"
  5. "demo/internal/middleware/jwt"
  6. "encoding/json"
  7. "github.com/gogf/gf/v2/frame/g"
  8. "github.com/gogf/gf/v2/net/ghttp"
  9. "github.com/gogf/gf/v2/os/gcmd"
  10. "github.com/siddontang/go/log"
  11. )
  12. var (
  13. Main = gcmd.Command{
  14. Name: "main",
  15. Usage: "main",
  16. Brief: "start http server",
  17. Func: func(ctx context.Context, parser *gcmd.Parser) (err error) {
  18. s := g.Server()
  19. s.BindStatusHandler(404, func(r *ghttp.Request) {
  20. r.Response.Writeln("This is customized 404 page")
  21. })
  22. s.SetIndexFolder(true)
  23. //s.SetServerRoot("")
  24. //s.SetIndexFiles([]string{"data/index.html"})
  25. s.AddSearchPath("dist")
  26. s.AddSearchPath("")
  27. s.Use(MiddlewareErrorHandler)
  28. s.Use(MiddlewareCORS)
  29. s.Group("/", func(group *ghttp.RouterGroup) {
  30. group.Middleware(MiddlewareCORS)
  31. group.Middleware(ghttp.MiddlewareHandlerResponse)
  32. group.POST("/auth", controller.Auth)
  33. group.ALL("/download", func(r *ghttp.Request) {
  34. r.Response.ServeFileDownload("file/" + r.Get("filename").String())
  35. })
  36. })
  37. //s.BindHandler("/download", func(r *ghttp.Request) {
  38. // r.Response.ServeFileDownload("file/" + r.Get("filename").String())
  39. //})
  40. s.Group("/", func(group *ghttp.RouterGroup) {
  41. group.Middleware(ghttp.MiddlewareHandlerResponse)
  42. group.Middleware(MiddlewareCORS)
  43. group.Middleware(jwt.JWT)
  44. //脖环清单
  45. group.GET("/ring/listing", controller.GetNeckRingListing)
  46. //group.POST("/ring/listing", controller.AddNeckRingListing)
  47. //接收器管理
  48. group.GET("/receiver/list", controller.GetReceiver)
  49. group.POST("/receiver/add", controller.AddReceiver)
  50. group.POST("/receiver/edit", controller.EditReceiver)
  51. //sim卡管理
  52. group.GET("/sim/list", controller.GetSim)
  53. group.POST("/sim/add", controller.AddSim)
  54. group.POST("/sim/edit", controller.EditSim)
  55. //脖环出厂登记
  56. group.POST("/factory/add", controller.AddFactory)
  57. group.GET("/factory/list", controller.GetFactory)
  58. //脖环召回记录
  59. group.POST("/recall/add", controller.AddRecall)
  60. group.GET("/recall/list", controller.GetRecall)
  61. //脖环管理
  62. group.GET("/management/list", controller.GetManagement)
  63. group.POST("/management/add", controller.AddManagement)
  64. group.GET("/managementbh/list", controller.GetManagementBh)
  65. //group.GET("/usetj", controller.GetUseTj)
  66. //图片查看
  67. group.GET("/image", controller.GetImage)
  68. //图片上传
  69. group.POST("/housephy/image", controller.UploadImage)
  70. //查看接收器坐标
  71. group.GET("/receiver/coordinates", controller.GetReceiverInfo)
  72. group.POST("/receiver/coordinates/edit", controller.EditReceiverCoordinates)
  73. //公共接口
  74. group.GET("/public/bar", controller.GetBarList)
  75. group.GET("/public/pasture", controller.GetPastureList)
  76. group.GET("/public/housephy", controller.GetHousephyList)
  77. group.GET("/sim/pull", controller.GetSimPull)
  78. group.GET("/receiver/pull", controller.GetReceiverPull)
  79. //权限等接口
  80. group.POST("/authdata/GetDataByNames", controller.GetDataByNames)
  81. group.POST("/authdata/GetRecuDataByName", controller.GetRecuDataByName)
  82. group.GET("/authdata/userinfo", controller.GetUserInfo)
  83. group.POST("/authdata/ExecDataByConfig", controller.ExecDataByConfig)
  84. group.POST("/authdata/GetDataByName", controller.GetDataByName)
  85. group.POST("/authdata/PostDataByName", controller.PostDataByName)
  86. group.POST("/authdata/logout", controller.UserLogout)
  87. })
  88. conf, _ := g.Cfg().Get(context.Background(), "server")
  89. port, _ := conf.Map()["address"].(json.Number).Int64()
  90. s.SetPort(int(port))
  91. s.Run()
  92. return nil
  93. },
  94. }
  95. )
  96. func MiddlewareErrorHandler(r *ghttp.Request) {
  97. r.Middleware.Next()
  98. if err := r.GetError(); err != nil {
  99. // 记录到自定义错误日志文件
  100. g.Log("exception").Error(context.Background(), err)
  101. //返回固定的友好信息
  102. r.Response.ClearBuffer()
  103. r.Response.Writeln("服务器居然开小差了,请稍后再试吧!")
  104. }
  105. }
  106. func MiddlewareCORS(r *ghttp.Request) {
  107. log.Info(r.Router.Method, " ", r.Router.Uri)
  108. r.Response.CORSDefault()
  109. r.Middleware.Next()
  110. }