2017-04-25 18:13:39 +00:00
|
|
|
package middlewares
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2017-05-28 03:50:03 +00:00
|
|
|
// ReplacedPathHeader is the default header to set the old path to
|
|
|
|
const ReplacedPathHeader = "X-Replaced-Path"
|
|
|
|
|
2017-04-25 18:13:39 +00:00
|
|
|
// ReplacePath is a middleware used to replace the path of a URL request
|
|
|
|
type ReplacePath struct {
|
|
|
|
Handler http.Handler
|
|
|
|
Path string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ReplacePath) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
r.Header.Add(ReplacedPathHeader, r.URL.Path)
|
|
|
|
r.URL.Path = s.Path
|
2017-07-19 08:27:52 +00:00
|
|
|
r.RequestURI = r.URL.RequestURI()
|
2017-04-25 18:13:39 +00:00
|
|
|
s.Handler.ServeHTTP(w, r)
|
|
|
|
}
|