From: early Date: Sun, 5 Jan 2025 03:47:03 +0000 (-0700) Subject: make SetLocaleFromPath use header as fallback X-Git-Url: https://git.earlybird.gay/?a=commitdiff_plain;h=c5d6d6e938fdbdfdb5557a56e4e36f84ce660dad;p=today make SetLocaleFromPath use header as fallback --- diff --git a/localization/http.go b/localization/http.go index 83f4860..7608508 100644 --- a/localization/http.go +++ b/localization/http.go @@ -36,7 +36,7 @@ func SetLocaleFromHeader(defaultLang language.Tag) func(next http.Handler) http. } // SetLocaleFromHeader sets r.Context.Value(today.Locale) to the language in -// the path param named by "param", or to defaultLang. +// the path param named by "param", Accept-Language, or to defaultLang. // To avoid confusion, consider redirecting the user if they input a param that // isn't valid. func SetLocaleFromPath(param string, defaultLang language.Tag) func(next http.Handler) http.Handler { @@ -46,12 +46,18 @@ func SetLocaleFromPath(param string, defaultLang language.Tag) func(next http.Ha next.ServeHTTP(w, r.WithContext(context.WithValue(r.Context(), Locale, lang))) } lang := r.PathValue(param) - if lang == "" { - use(defaultLang) + if lang != "" { + tag := language.Make(lang) + use(tag) return } - tag := language.Make(lang) - use(tag) + lang = r.Header.Get("Accept-Language") + if lang != "" { + tag := language.Make(lang) + use(tag) + return + } + use(defaultLang) }) } }