golang 的 rabbitmq 消费项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

79 lines
1.7 KiB

  1. package router
  2. import (
  3. "applet/app/cfg"
  4. "applet/app/mall/hdl"
  5. "applet/app/mw"
  6. pay "applet/app/pay/hdl"
  7. _ "applet/docs"
  8. "github.com/gin-gonic/gin"
  9. )
  10. //初始化路由
  11. func Init() *gin.Engine {
  12. // debug, release, test 项目阶段
  13. mode := "release"
  14. if cfg.Debug {
  15. mode = "debug"
  16. }
  17. gin.SetMode(mode)
  18. //创建一个新的启动器
  19. r := gin.New()
  20. r.Use(mw.ChangeHeader)
  21. // 是否打印访问日志, 在非正式环境都打印
  22. if mode != "release" {
  23. r.Use(gin.Logger())
  24. }
  25. r.Use(gin.Recovery())
  26. // r.Use(mw.Limiter)
  27. //r.LoadHTMLGlob("static/html/*")
  28. r.GET("/favicon.ico", func(c *gin.Context) {
  29. c.Status(204)
  30. })
  31. r.NoRoute(func(c *gin.Context) {
  32. c.JSON(404, gin.H{"code": 404, "msg": "page not found", "data": []struct{}{}})
  33. })
  34. r.NoMethod(func(c *gin.Context) {
  35. c.JSON(405, gin.H{"code": 405, "msg": "method not allowed", "data": []struct{}{}})
  36. })
  37. r.Use(mw.Cors)
  38. route(r.Group("/api/v1/mall"))
  39. rInApi(r.Group("/inapi/mall"))
  40. return r
  41. }
  42. func route(r *gin.RouterGroup) {
  43. // 通用支付回调
  44. r.Any("/pay/callback", pay.PayCallback)
  45. r.Use(mw.DB) // 以下接口需要用到数据库
  46. {
  47. r.GET("/test", hdl.Demo1)
  48. }
  49. r.Use(mw.Checker) // 以下接口需要检查Header: platform
  50. {
  51. }
  52. r.Use(mw.AuthJWT) // 以下接口需要JWT验证
  53. {
  54. // 通用支付
  55. r.POST("/user/pay/:payMethod/:orderType", pay.Pay)
  56. // 支付状态
  57. r.POST("/user/paystatus/:orderType", pay.PayStatus)
  58. }
  59. }
  60. func rInApi(r *gin.RouterGroup) {
  61. //TODO::该分组中所有的接口,支持开放平台调用
  62. r.Use(mw.DB) // 以下接口需要用到数据库
  63. {
  64. }
  65. r.Use(mw.AuthJWT) // 以下接口需要JWT验证
  66. {
  67. }
  68. }