Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-04-28 23:37:02 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-04-28 23:37:02 +0300
commit525b9a33476e97f5a2a006cb4e4ff7959722d467 (patch)
tree9e90a2dc32c008ecfa50155ffd4ecbcba0a16f8f
parentb0ac2a7d3f7c48702120de4910cde34b7aee7bdd (diff)
Add helper for checking if path ends with Slash
-rw-r--r--domain.go2
-rw-r--r--helpers.go5
2 files changed, 6 insertions, 1 deletions
diff --git a/domain.go b/domain.go
index e274e274..46f57ed0 100644
--- a/domain.go
+++ b/domain.go
@@ -112,7 +112,7 @@ func (d *domain) checkPath(w http.ResponseWriter, r *http.Request, path string)
switch {
// If the URL doesn't end with /, send location to client
- case fi.IsDir() && !strings.HasSuffix(r.URL.Path, "/"):
+ case fi.IsDir() && !endsWithSlash(r.URL.Path):
newURL := *r.URL
newURL.Path += "/"
http.Redirect(w, r, newURL.String(), 302)
diff --git a/helpers.go b/helpers.go
index cd989b97..edcf583d 100644
--- a/helpers.go
+++ b/helpers.go
@@ -4,6 +4,7 @@ import (
"io/ioutil"
"log"
"net"
+ "strings"
)
func readFile(file string) (result []byte) {
@@ -28,3 +29,7 @@ func createSocket(addr string) (l net.Listener, fd uintptr) {
fd = f.Fd()
return
}
+
+func endsWithSlash(path string) bool {
+ return strings.HasSuffix(path, "/")
+}