aboutsummaryrefslogtreecommitdiff
path: root/url.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-02-15 10:19:44 +0800
committerRunxi Yu <me@runxiyu.org>2025-02-15 10:19:44 +0800
commit873cba3e7cdecf33937e7bc28c966d81b8d97c78 (patch)
tree1d81f1e71daca18f8d06a36285c7d101e8986af0 /url.go
parenthttp_server.go: Redirect tree to tree/, same for raw (diff)
downloadforge-873cba3e7cdecf33937e7bc28c966d81b8d97c78.tar.gz
forge-873cba3e7cdecf33937e7bc28c966d81b8d97c78.tar.zst
forge-873cba3e7cdecf33937e7bc28c966d81b8d97c78.zip
{http_server,url}.go: Fix redirects
r.URL.Path contains URL segments already decoded which makes it impossible to distinguish from an encoded %2F and a path separator /. We introduce redirect_with_slash which checks it properly. There is still an occurence of r.URL.Path in the commit handler, but that's going to get a major revamp anyway so I'm not bothering to fix that for now. :/
Diffstat (limited to 'url.go')
-rw-r--r--url.go21
1 files changed, 20 insertions, 1 deletions
diff --git a/url.go b/url.go
index 86a3c6e..7712639 100644
--- a/url.go
+++ b/url.go
@@ -11,7 +11,7 @@ import (
var (
err_duplicate_ref_spec = errors.New("Duplicate ref spec")
- err_no_ref_spec = errors.New("No ref spec")
+ err_no_ref_spec = errors.New("No ref spec")
)
func get_param_ref_and_type(r *http.Request) (ref_type, ref string, err error) {
@@ -63,3 +63,22 @@ func parse_request_uri(request_uri string) (segments []string, params url.Values
return
}
+
+func redirect_with_slash(w http.ResponseWriter, r *http.Request) bool {
+ request_uri := r.RequestURI
+
+ path_end := strings.IndexAny(request_uri, "?#")
+ var path, rest string
+ if path_end == -1 {
+ path = request_uri
+ } else {
+ path = request_uri[:path_end]
+ rest = request_uri[path_end:]
+ }
+
+ if !strings.HasSuffix(path, "/") {
+ http.Redirect(w, r, path+"/"+rest, http.StatusSeeOther)
+ return true
+ }
+ return false
+}