negroni 中不同路由的不同中间件
Different middleware for different routes in negroni
我想为不同的路径使用不同的中间件。我目前的实现来自这个 link
UserRouter := mux.NewRouter().StrictSlash(true)
AdminRouter := mux.NewRouter().StrictSlash(true)
Router.HandleFunc("/apps/{app_name}/xyz", Handler).Methods("GET")
我创建了三个不同的路由器,这样我就可以将它们与不同的路径和中间件相关联
nUserPath := negroni.New(middleware.NewAuthMiddleWare())
nUserPath.UseHandler(UserRouter)
nAdminPath := negroni.New()
nAdminPath.UseHandler(AdminRouter)
我创建了两个不同的 negroni 实例并将它们传递给各自的路由器。因为我希望所有这些都成为同一端口上同一应用程序的 运行 部分,所以我创建了一个 Wrapper Router 和 negroni 实例并将它们与现有的相关联
BaseRouter := mux.NewRouter().StrictSlash(true)
BaseRouter.Handle(UserBasePath,nUserPath) // UserBasePath is `/apps`
BaseRouter.Handle(HealthCheck,nUserPath) // HealthCheck is `/health`
BaseRouter.Handle(AdminBasePath,nAdminPath) // AdminBasePath is `/Admin`
n := negroni.New(middleware.NewLogger()) // attached other common middleware here
n.UseHandler(router.BaseRouter)
n.Run(":8080")
这种方法面临的问题:
当我 运行 /health
它 运行 正确但是当我 运行 /apps/{app_name}/something
我得到 404: Not Found
注意:我尝试了下面提到的其他方法 link 但它们不能满足我的需要。
-
因此,上述实现的问题在于 BaseRouter.Handle() 方法采用 path 而不是 path_matcher/template 所以所有 url 的 path_length 都没有工作。
我想出了两种方法来实现我的需要:
第一种方法
// Create a rootRouter
var rootRouter *mux.Router = mux.NewRouter()
// Create as many subRouter you want with some prefix
var appsBasePath string = "/apps"
var adminBasePath string = "/admin"
upRouter := rootRouter.PathPrefix(appsBasePath).Subrouter()
apRouter := rootRouter.PathPrefix(adminBasePath).Subrouter()
// Register all the paths and mention middleware specifically for all of them
// Here middleware is a method with signature as
// func middleware( http.Handler) http.HandlerFunc {}
upRouter.Path("/test").Methods("POST").Handler(middleware(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request){
fmt.Fprintf(w, "Welcome to the home page!")
})))
n := negroni.New(middleware.NewLogger()) // attached other common middleware here
n.UseHandler(rootRouter)
n.Run(":8080")
第二种方法
这是问题
中原问题的extension/solution
// Replace BaseRouter.handle() as below
// as PathPrefix takes a template so it won't have issue that we were facing
BaseRouter.PathPrefix(UserBasePath).Handler(nUserPath)
这里要记住的是,在 negroni nUserPath
中附加的中间件的 RequestContext 将不同于实际路由器的 HandlerMethod
注:
通过路径长度,我的意思是这样的 - /abc 或 /abc/ 有 path_length=1 和 /abc/xyz 有 path_length=2
我想为不同的路径使用不同的中间件。我目前的实现来自这个 link
UserRouter := mux.NewRouter().StrictSlash(true)
AdminRouter := mux.NewRouter().StrictSlash(true)
Router.HandleFunc("/apps/{app_name}/xyz", Handler).Methods("GET")
我创建了三个不同的路由器,这样我就可以将它们与不同的路径和中间件相关联
nUserPath := negroni.New(middleware.NewAuthMiddleWare())
nUserPath.UseHandler(UserRouter)
nAdminPath := negroni.New()
nAdminPath.UseHandler(AdminRouter)
我创建了两个不同的 negroni 实例并将它们传递给各自的路由器。因为我希望所有这些都成为同一端口上同一应用程序的 运行 部分,所以我创建了一个 Wrapper Router 和 negroni 实例并将它们与现有的相关联
BaseRouter := mux.NewRouter().StrictSlash(true)
BaseRouter.Handle(UserBasePath,nUserPath) // UserBasePath is `/apps`
BaseRouter.Handle(HealthCheck,nUserPath) // HealthCheck is `/health`
BaseRouter.Handle(AdminBasePath,nAdminPath) // AdminBasePath is `/Admin`
n := negroni.New(middleware.NewLogger()) // attached other common middleware here
n.UseHandler(router.BaseRouter)
n.Run(":8080")
这种方法面临的问题:
当我 运行 /health
它 运行 正确但是当我 运行 /apps/{app_name}/something
我得到 404: Not Found
注意:我尝试了下面提到的其他方法 link 但它们不能满足我的需要。
-
因此,上述实现的问题在于 BaseRouter.Handle() 方法采用 path 而不是 path_matcher/template 所以所有 url 的 path_length 都没有工作。
我想出了两种方法来实现我的需要:
第一种方法
// Create a rootRouter
var rootRouter *mux.Router = mux.NewRouter()
// Create as many subRouter you want with some prefix
var appsBasePath string = "/apps"
var adminBasePath string = "/admin"
upRouter := rootRouter.PathPrefix(appsBasePath).Subrouter()
apRouter := rootRouter.PathPrefix(adminBasePath).Subrouter()
// Register all the paths and mention middleware specifically for all of them
// Here middleware is a method with signature as
// func middleware( http.Handler) http.HandlerFunc {}
upRouter.Path("/test").Methods("POST").Handler(middleware(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request){
fmt.Fprintf(w, "Welcome to the home page!")
})))
n := negroni.New(middleware.NewLogger()) // attached other common middleware here
n.UseHandler(rootRouter)
n.Run(":8080")
第二种方法
这是问题
// Replace BaseRouter.handle() as below
// as PathPrefix takes a template so it won't have issue that we were facing
BaseRouter.PathPrefix(UserBasePath).Handler(nUserPath)
这里要记住的是,在 negroni nUserPath
中附加的中间件的 RequestContext 将不同于实际路由器的 HandlerMethod
注:
通过路径长度,我的意思是这样的 - /abc 或 /abc/ 有 path_length=1 和 /abc/xyz 有 path_length=2