Add relURL template func
authorbep <bjorn.erik.pedersen@gmail.com>
Mon, 11 May 2015 11:59:06 +0000 (13:59 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 11 May 2015 11:59:02 +0000 (13:59 +0200)
Fixes #1126

helpers/url.go
helpers/url_test.go
tpl/template_funcs.go

index 502d64a6c3ceba9bc2e8415672aa92c6ad543151..ce36bc184d70bc63250b75ce14575892982b3479 100644 (file)
@@ -151,7 +151,36 @@ func AbsURL(path string) string {
        if strings.HasPrefix(path, "http") || strings.HasPrefix(path, "//") {
                return path
        }
-       return MakePermalink(string(viper.GetString("BaseURL")), path).String()
+       return MakePermalink(viper.GetString("BaseURL"), path).String()
+}
+
+// RelURL creates a URL relative to the BaseURL root.
+// Note: The result URL will not include the context root if canonifyURLs is enabled.
+func RelURL(path string) string {
+       baseURL := viper.GetString("BaseURL")
+       canonifyURLs := viper.GetBool("canonifyURLs")
+       if (!strings.HasPrefix(path, baseURL) && strings.HasPrefix(path, "http")) || strings.HasPrefix(path, "//") {
+               return path
+       }
+
+       u := path
+
+       if strings.HasPrefix(path, baseURL) {
+               u = strings.TrimPrefix(u, baseURL)
+       }
+
+       if !canonifyURLs {
+               u = AddContextRoot(baseURL, u)
+       }
+       if path == "" && !strings.HasSuffix(u, "/") && strings.HasSuffix(baseURL, "/") {
+               u += "/"
+       }
+
+       if !strings.HasPrefix(u, "/") {
+               u = "/" + u
+       }
+
+       return u
 }
 
 // AddContextRoot adds the context root to an URL if it's not already set.
index 3286c0f3771054f4fa1aa5036ee486c84f15cced..bfd211b8962e172ee6695216913f3bd588bda172 100644 (file)
@@ -49,6 +49,37 @@ func TestAbsURL(t *testing.T) {
        }
 }
 
+func TestRelURL(t *testing.T) {
+       defer viper.Set("canonifyURLs", viper.GetBool("canonifyURLs"))
+       tests := []struct {
+               input    string
+               baseURL  string
+               canonify bool
+               expected string
+       }{
+               {"/test/foo", "http://base/", false, "/test/foo"},
+               {"test.css", "http://base/sub", false, "/sub/test.css"},
+               {"test.css", "http://base/sub", true, "/test.css"},
+               {"/test/", "http://base/", false, "/test/"},
+               {"/test/", "http://base/sub/", false, "/sub/test/"},
+               {"/test/", "http://base/sub/", true, "/test/"},
+               {"", "http://base/ace/", false, "/ace/"},
+               {"", "http://base/ace", false, "/ace"},
+               {"http://abs", "http://base/", false, "http://abs"},
+               {"//schemaless", "http://base/", false, "//schemaless"},
+       }
+
+       for i, test := range tests {
+               viper.Set("BaseURL", test.baseURL)
+               viper.Set("canonifyURLs", test.canonify)
+
+               output := RelURL(test.input)
+               if output != test.expected {
+                       t.Errorf("[%d][%t] Expected %#v, got %#v\n", i, test.canonify, test.expected, output)
+               }
+       }
+}
+
 func TestSanitizeURL(t *testing.T) {
        tests := []struct {
                input    string
index dea33254c74dacbe0edb4c5415523356c236a0cd..a78e4cce1d3f54c40729a9695a4f96eaf0f3158b 100644 (file)
@@ -1197,6 +1197,7 @@ func init() {
                "safeCSS":     SafeCSS,
                "safeURL":     SafeURL,
                "absURL":      func(a string) template.HTML { return template.HTML(helpers.AbsURL(a)) },
+               "relURL":      func(a string) template.HTML { return template.HTML(helpers.RelURL(a)) },
                "markdownify": Markdownify,
                "first":       First,
                "where":       Where,