mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
e2ebdb7e41
* fix: oidc issuer path and strip path middleware This ensures the server.path requests append the base_url to the oidc well-known issuer information and adjusts server.path configuration to only strip the configured path instead of the first level entirely regardless of its content. * fix: only log the token error and general refactoring * refactor: factorize base_url functions * refactor(server): include all paths in startup logging * refactor: factorize * refactor: GetExternalRootURL -> ExternalRootURL Co-authored-by: James Elliott <james-d-elliott@users.noreply.github.com>
24 lines
488 B
Go
24 lines
488 B
Go
package middlewares
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/valyala/fasthttp"
|
|
)
|
|
|
|
// StripPathMiddleware strips the first level of a path.
|
|
func StripPathMiddleware(path string, next fasthttp.RequestHandler) fasthttp.RequestHandler {
|
|
return func(ctx *fasthttp.RequestCtx) {
|
|
uri := ctx.RequestURI()
|
|
|
|
if strings.HasPrefix(string(uri), path) {
|
|
ctx.SetUserValue("base_url", path)
|
|
|
|
newURI := strings.TrimPrefix(string(uri), path)
|
|
ctx.Request.SetRequestURI(newURI)
|
|
}
|
|
|
|
next(ctx)
|
|
}
|
|
}
|