在negroni的不同路线的不同中间件

时间:2016-02-22 06:25:40

标签: go middleware 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实例,并将它们传递给相应的路由器。因为我希望所有这些在同一端口上运行相同应用程序的一部分,所以我创建了一个包装路由器和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

注意:我经历了以下链接中提到的其他方法,但它们并不能满足我的需求。

- Route-specific Middlewares with Negroni

1 个答案:

答案 0 :(得分:0)

因此,上述实现的问题是BaseRouter.Handle()方法采用路径而不是 path_matcher / template 所以所有网址都是其中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