fix X-Authlib-Injector-API-Location
This commit is contained in:
parent
06d38841b1
commit
107bf4da1b
@ -5,6 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"log/slog"
|
"log/slog"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"net/url"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/go-chi/chi/v5/middleware"
|
"github.com/go-chi/chi/v5/middleware"
|
||||||
@ -76,7 +77,11 @@ func (l *StructuredLoggerEntry) Panic(v interface{}, stack []byte) {
|
|||||||
|
|
||||||
func APILocationIndication(handle http.Handler) http.Handler {
|
func APILocationIndication(handle http.Handler) http.Handler {
|
||||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
w.Header().Set("X-Authlib-Injector-API-Location", "/api/yggdrasil/")
|
u := &url.URL{}
|
||||||
|
u.Host = r.Host
|
||||||
|
u.Scheme = r.URL.Scheme
|
||||||
|
u.Path = "/api/yggdrasil/"
|
||||||
|
w.Header().Set("X-Authlib-Injector-API-Location", u.String())
|
||||||
handle.ServeHTTP(w, r)
|
handle.ServeHTTP(w, r)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user