🐛 Fixed assets URL support

This commit is contained in:
Maxim Lebedev 2023-01-16 18:11:02 +06:00
parent 82f6c1ea54
commit 66ef7203a3
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5

17
main.go
View File

@ -350,17 +350,22 @@ func (app *App) Handler() http.Handler {
head, r.URL.Path = urlutil.ShiftPath(r.URL.Path)
switch head {
default:
case "", "callback", "token", "introspect", "revocation":
r.URL = r.URL.JoinPath(head, r.URL.Path)
default:
if r.URL.Path != "/" {
r.URL = r.URL.JoinPath(head, r.URL.Path)
} else {
r.URL = r.URL.JoinPath(head)
}
}
switch head {
default:
static.ServeHTTP(w, r)
case "", "callback":
r.URL = r.URL.JoinPath(head, r.URL.Path)
client.ServeHTTP(w, r)
case "token", "introspect", "revocation":
r.URL = r.URL.JoinPath(head, r.URL.Path)
token.ServeHTTP(w, r)
case ".well-known":
if head, _ = urlutil.ShiftPath(r.URL.Path); head == "oauth-authorization-server" {
@ -377,5 +382,5 @@ func (app *App) Handler() http.Handler {
case "ticket":
ticket.ServeHTTP(w, r)
}
}).Intercept(middleware.LogFmt()))
}) /*.Intercept(middleware.LogFmt())*/)
}