all repos — website @ e26a0e83ddb25c40379280f191ff24fb9cc5260f

My website

fix wildcard-based redirects
Alan Pearce alan@alanpearce.eu
Thu, 11 Jul 2024 14:01:51 +0200
commit

e26a0e83ddb25c40379280f191ff24fb9cc5260f

parent

4021621241627475a2a392125a09145c085b5e82

1 files changed, 4 insertions(+), 9 deletions(-)

jump to
M internal/server/server.gointernal/server/server.go
@@ -188,7 +188,7 @@ if runtimeConfig.Redirect { 		re := regexp.MustCompile(
 			"^(.*)\\." + strings.ReplaceAll(config.WildcardDomain, ".", `\.`) + "$",
 		)
-		replace := "${0}." + config.Domains[0]
+		replace := "${1}." + config.Domains[0]
 		loggingMux.Handle(config.BaseURL.Hostname()+"/", mux)
 		loggingMux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
 			if slices.Contains(config.Domains, r.Host) {
@@ -196,14 +196,9 @@ path, _ := website.CanonicalisePath(r.URL.Path) 				newURL := config.BaseURL.JoinPath(path)
 				http.Redirect(w, r, newURL.String(), http.StatusMovedPermanently)
 			} else {
-				matches := re.FindSubmatchIndex([]byte(r.Host))
-				if matches == nil {
-					http.Redirect(w, r, config.BaseURL.String(), http.StatusTemporaryRedirect)
-
-					return
-				}
-				newHost := re.ExpandString([]byte{}, replace, r.Host, matches)
-				http.Redirect(w, r, string(newHost), http.StatusTemporaryRedirect)
+				url := config.BaseURL
+				url.Host = re.ReplaceAllString(r.Host, replace)
+				http.Redirect(w, r, url.String(), http.StatusTemporaryRedirect)
 			}
 		})
 	} else {