Revert "fix X-Authlib-Injector-API-Location"

This reverts commit 107bf4da1b09585880deac00fe7c26c76a7c62e0.
This commit is contained in:
xmdhs 2023-10-13 00:51:50 +08:00
parent 107bf4da1b
commit 2fb0bb9d45
No known key found for this signature in database
GPG Key ID: E809D6D43DEFCC95

View File

@ -5,7 +5,6 @@ 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"
@ -77,11 +76,7 @@ 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) {
u := &url.URL{} w.Header().Set("X-Authlib-Injector-API-Location", "/api/yggdrasil/")
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)
}) })
} }