Add absURL template func
authorbep <bjorn.erik.pedersen@gmail.com>
Mon, 11 May 2015 10:28:44 +0000 (12:28 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 11 May 2015 10:28:35 +0000 (12:28 +0200)
Fixes #1106

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

index c780579d6c3c8b721889df4b45ca3c6993293f9a..502d64a6c3ceba9bc2e8415672aa92c6ad543151 100644 (file)
@@ -138,13 +138,22 @@ func MakePermalink(host, plink string) *url.URL {
        base.Path = path.Join(base.Path, p.Path)
 
        // path.Join will strip off the last /, so put it back if it was there.
-       if strings.HasSuffix(p.Path, "/") && !strings.HasSuffix(base.Path, "/") {
+       hadTrailingSlash := (plink == "" && strings.HasSuffix(host, "/")) || strings.HasSuffix(p.Path, "/")
+       if hadTrailingSlash && !strings.HasSuffix(base.Path, "/") {
                base.Path = base.Path + "/"
        }
 
        return base
 }
 
+// AbsURL creates a absolute URL from the relative path given and the BaseURL set in config.
+func AbsURL(path string) string {
+       if strings.HasPrefix(path, "http") || strings.HasPrefix(path, "//") {
+               return path
+       }
+       return MakePermalink(string(viper.GetString("BaseURL")), path).String()
+}
+
 // AddContextRoot adds the context root to an URL if it's not already set.
 // For relative URL entries on sites with a base url with a context root set (i.e. http://example.com/mysite),
 // relative URLs must not include the context root if canonifyURLs is enabled. But if it's disabled, it must be set.
index 1dabda273c197143a6bd0f0b0c91b0030fd9d36f..3286c0f3771054f4fa1aa5036ee486c84f15cced 100644 (file)
@@ -1,6 +1,7 @@
 package helpers
 
 import (
+       "github.com/spf13/viper"
        "github.com/stretchr/testify/assert"
        "strings"
        "testing"
@@ -26,6 +27,28 @@ func TestURLize(t *testing.T) {
        }
 }
 
+func TestAbsURL(t *testing.T) {
+       tests := []struct {
+               input    string
+               baseURL  string
+               expected string
+       }{
+               {"/test/foo", "http://base/", "http://base/test/foo"},
+               {"", "http://base/ace/", "http://base/ace/"},
+               {"/test/2/foo/", "http://base", "http://base/test/2/foo/"},
+               {"http://abs", "http://base/", "http://abs"},
+               {"//schemaless", "http://base/", "//schemaless"},
+       }
+
+       for _, test := range tests {
+               viper.Set("BaseURL", test.baseURL)
+               output := AbsURL(test.input)
+               if output != test.expected {
+                       t.Errorf("Expected %#v, got %#v\n", test.expected, output)
+               }
+       }
+}
+
 func TestSanitizeURL(t *testing.T) {
        tests := []struct {
                input    string
index 5b0e919a9eaefdee4182d0ec64884597e5c436dc..dea33254c74dacbe0edb4c5415523356c236a0cd 100644 (file)
@@ -1196,6 +1196,7 @@ func init() {
                "safeHTML":    SafeHTML,
                "safeCSS":     SafeCSS,
                "safeURL":     SafeURL,
+               "absURL":      func(a string) template.HTML { return template.HTML(helpers.AbsURL(a)) },
                "markdownify": Markdownify,
                "first":       First,
                "where":       Where,