hubolib: Do not add missing trailing slash to command line baseURL
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Apr 2017 16:33:28 +0000 (18:33 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Apr 2017 18:18:31 +0000 (20:18 +0200)
This makes it consistent with how it behaves when it's set in config.toml.

This commit also unifies BaseURL in Site.Info so we now have one source for this value.

Fixes #3262

commands/hugo.go
hugolib/site.go
hugolib/site_url_test.go

index 6f56ea3db65d27cc70191b0cd5e284c2b74e52a3..73dde5d2d61d60e718e89ae19d30d0e5d3c89c0b 100644 (file)
@@ -317,9 +317,6 @@ func InitializeConfig(subCmdVs ...*cobra.Command) (*deps.DepsCfg, error) {
        config.Set("logI18nWarnings", logI18nWarnings)
 
        if baseURL != "" {
-               if !strings.HasSuffix(baseURL, "/") {
-                       baseURL = baseURL + "/"
-               }
                config.Set("baseURL", baseURL)
        }
 
index c5f27b28b93dd84263f9c098a142bac414b92bca..768fe147f9fe5d4983d40d448b44d57ff7d7ff98 100644 (file)
@@ -289,7 +289,6 @@ type SiteInfo struct {
        _                   [4]byte
        paginationPageCount uint64
 
-       BaseURL    template.URL
        Taxonomies TaxonomyList
        Authors    AuthorList
        Social     SiteSocial
@@ -329,6 +328,10 @@ func (s *SiteInfo) String() string {
        return fmt.Sprintf("Site(%q)", s.Title)
 }
 
+func (s *SiteInfo) BaseURL() template.URL {
+       return template.URL(s.s.PathSpec.BaseURL.String())
+}
+
 // Used in tests.
 
 type siteBuilderCfg struct {
@@ -342,7 +345,6 @@ type siteBuilderCfg struct {
 func newSiteInfo(cfg siteBuilderCfg) SiteInfo {
        return SiteInfo{
                s:               cfg.s,
-               BaseURL:         template.URL(cfg.baseURL),
                multilingual:    newMultiLingualForLanguage(cfg.language),
                PageCollections: cfg.pageCollections,
                Params:          make(map[string]interface{}),
@@ -1049,7 +1051,6 @@ func (s *Site) initializeSiteInfo() {
        }
 
        s.Info = SiteInfo{
-               BaseURL:                        template.URL(helpers.SanitizeURLKeepTrailingSlash(s.Cfg.GetString("baseURL"))),
                Title:                          lang.GetString("title"),
                Author:                         lang.GetStringMap("author"),
                Social:                         lang.GetStringMapString("social"),
@@ -1503,7 +1504,7 @@ func (s *SiteInfo) createNodeMenuEntryURL(in string) string {
        menuEntryURL := in
        menuEntryURL = helpers.SanitizeURLKeepTrailingSlash(s.s.PathSpec.URLize(menuEntryURL))
        if !s.canonifyURLs {
-               menuEntryURL = helpers.AddContextRoot(string(s.BaseURL), menuEntryURL)
+               menuEntryURL = helpers.AddContextRoot(s.s.PathSpec.BaseURL.String(), menuEntryURL)
        }
        return menuEntryURL
 }
index 6f75846e77c7a15b908d7d56f8d0895fc34aa94d..b655ff11c14c05be43b81603f77bd29dc7c7f03d 100644 (file)
@@ -57,8 +57,8 @@ func TestShouldNotAddTrailingSlashToBaseURL(t *testing.T) {
                require.NoError(t, err)
                s.initializeSiteInfo()
 
-               if s.Info.BaseURL != template.URL(this.expected) {
-                       t.Errorf("[%d] got %s expected %s", i, s.Info.BaseURL, this.expected)
+               if s.Info.BaseURL() != template.URL(this.expected) {
+                       t.Errorf("[%d] got %s expected %s", i, s.Info.BaseURL(), this.expected)
                }
        }
 }