mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Refactor to use more Go 1.22 features
This commit is contained in:
parent
9ee63b39cb
commit
6f2643e55e
3 changed files with 6 additions and 37 deletions
|
@ -1,6 +1,7 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"cmp"
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
|
@ -71,7 +72,7 @@ func robotsTXT(fs fs.FS) func(http.Handler) http.Handler {
|
|||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
if strings.HasSuffix(r.URL.Path, "/robots.txt") {
|
||||
r.URL.Path = "/robots.txt"
|
||||
http.FileServer(http.FS(fs)).ServeHTTP(w, r)
|
||||
http.FileServerFS(fs).ServeHTTP(w, r)
|
||||
} else {
|
||||
next.ServeHTTP(w, r)
|
||||
}
|
||||
|
@ -209,7 +210,7 @@ func serverAddressMiddleware(h http.Handler) http.Handler {
|
|||
h.ServeHTTP(w, r)
|
||||
}
|
||||
|
||||
// Return the new handler function as an http.Handler object.
|
||||
// Return the new handler function as a http.Handler object.
|
||||
return http.HandlerFunc(fn)
|
||||
}
|
||||
|
||||
|
@ -244,15 +245,15 @@ func serverAddress(r *http.Request) (scheme, host string) {
|
|||
}
|
||||
xfh = xfh[:i]
|
||||
}
|
||||
host = FirstOr(r.Host, xfh)
|
||||
host = cmp.Or(xfh, r.Host)
|
||||
|
||||
// Determine the protocol and scheme of the request based on the presence of
|
||||
// X-Forwarded-* headers or the scheme of the request URL.
|
||||
scheme = FirstOr(
|
||||
protocol,
|
||||
scheme = cmp.Or(
|
||||
r.Header.Get(xForwardedProto),
|
||||
r.Header.Get(xForwardedScheme),
|
||||
r.URL.Scheme,
|
||||
protocol,
|
||||
)
|
||||
|
||||
// If the request host has changed due to the X-Forwarded-Host header, log a trace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue