Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

URL params are not available inside middleware on the root router #892

Open
dennisvanderweide opened this issue Jan 4, 2024 · 3 comments

Comments

@dennisvanderweide
Copy link

dennisvanderweide commented Jan 4, 2024

When I create a middleware to log the id URL parameter, which exists in the route I request, the value is always empty. I do get a value inside the handler itself

r := chi.NewRouter()

r.Use(func(h http.Handler) http.Handler {
	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		id := chi.URLParam(r, "id")
		log.Println(id)
		h.ServeHTTP(w, r)
	})
})

r.Get("/test/{id}", func(w http.ResponseWriter, r *http.Request) {
	id := router.Param(r, "id").String()
	io.WriteString(w, id)
})

When I move this code to a Group, the URL param will become available inside the middleware.

r := chi.NewRouter()

r.Group(func(r chi.Router) {
	r.Use(func(h http.Handler) http.Handler {
		return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
			id := chi.URLParam(r, "id")
			log.Println(id)
			h.ServeHTTP(w, r)
		})
	})

	r.Get("/test/{id}", func(w http.ResponseWriter, r *http.Request) {
		id := router.Param(r, "id").String()
		io.WriteString(w, id)
	})
})

I think this behavior is quite strange and prone to errors

Tested with the latest version (5.0.11)

@erwinschaap
Copy link

I have the same issue

@sakthi-lucia0567
Copy link

This behavior is due to the way the chi router handles middleware and route patterns. When you register a middleware using r.Use() at the root level, the middleware is applied to all routes, including routes that do not have any URL parameters. As a result, when the middleware tries to extract the "id" parameter using chi.URLParam(r, "id"), it doesn't find it because the current route doesn't have an "id" parameter.

@dennisvanderweide
Copy link
Author

The behavior you describe would be what I would expect to be the behavior, but the problem is that when I execute an HTTP request for a route which does have an id parameter, it won't be able to find the parameter even though the route does contain a parameter.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants