Add base Sitemap support
authorVincent Batoufflet <vincent@batoufflet.info>
Tue, 6 May 2014 10:50:23 +0000 (12:50 +0200)
committerspf13 <steve.francia@gmail.com>
Sat, 10 May 2014 03:11:27 +0000 (23:11 -0400)
commands/hugo.go
hugolib/node.go
hugolib/site.go
hugolib/sitemap.go [new file with mode: 0644]
hugolib/template_embedded.go

index df6a063c4a5830fff890fe0d1a43e8b5b31a4ad3..cced30143fee13261e1779538ba796ced873d15c 100644 (file)
@@ -48,7 +48,7 @@ Complete documentation is available at http://hugo.spf13.com`,
 }
 var hugoCmdV *cobra.Command
 
-var BuildWatch, Draft, UglyUrls, Verbose, Logging, VerboseLog, DisableRSS bool
+var BuildWatch, Draft, UglyUrls, Verbose, Logging, VerboseLog, DisableRSS, DisableSitemap bool
 var Source, Destination, Theme, BaseUrl, CfgFile, LogFile string
 
 func Execute() {
@@ -68,6 +68,7 @@ func AddCommands() {
 func init() {
        HugoCmd.PersistentFlags().BoolVarP(&Draft, "build-drafts", "D", false, "include content marked as draft")
        HugoCmd.PersistentFlags().BoolVar(&DisableRSS, "disableRSS", false, "Do not build RSS files")
+       HugoCmd.PersistentFlags().BoolVar(&DisableSitemap, "disableSitemap", false, "Do not build Sitemap file")
        HugoCmd.PersistentFlags().StringVarP(&Source, "source", "s", "", "filesystem path to read files relative from")
        HugoCmd.PersistentFlags().StringVarP(&Destination, "destination", "d", "", "filesystem path to write files to")
        HugoCmd.PersistentFlags().StringVarP(&Theme, "theme", "t", "", "theme to use (located in /themes/THEMENAME/)")
@@ -95,6 +96,7 @@ func InitializeConfig() {
 
        viper.SetDefault("MetadataFormat", "toml")
        viper.SetDefault("DisableRSS", false)
+       viper.SetDefault("DisableSitemap", false)
        viper.SetDefault("ContentDir", "content")
        viper.SetDefault("LayoutDir", "layouts")
        viper.SetDefault("StaticDir", "static")
@@ -120,6 +122,10 @@ func InitializeConfig() {
                viper.Set("DisableRSS", DisableRSS)
        }
 
+       if hugoCmdV.PersistentFlags().Lookup("disableSitemap").Changed {
+               viper.Set("DisableSitemap", DisableSitemap)
+       }
+
        if hugoCmdV.PersistentFlags().Lookup("verbose").Changed {
                viper.Set("Verbose", Verbose)
        }
index 8ec0b4a2ba02203ef6f613d9bb73c6551b971f3a..1accd03ad3e25e9311d10dca1e85323374fd7550 100644 (file)
@@ -28,6 +28,7 @@ type Node struct {
        Keywords    []string
        Params      map[string]interface{}
        Date        time.Time
+       Sitemap     Sitemap
        UrlPath
 }
 
index e7b8badc8fbb11b5f7cf1b3e967afdc474d1c5b9..f20cabc6faabbc7c30c1003bf390c27963c6dd39 100644 (file)
@@ -220,6 +220,10 @@ func (s *Site) Render() (err error) {
                return
        }
        s.timerStep("render and write homepage")
+       if err = s.RenderSitemap(); err != nil {
+               return
+       }
+       s.timerStep("render and write Sitemap")
        return
 }
 
@@ -740,6 +744,36 @@ func (s *Site) RenderHomePage() error {
        return nil
 }
 
+func (s *Site) RenderSitemap() error {
+       if viper.GetBool("DisableSitemap") {
+               return nil
+       }
+
+       optChanged := false
+
+       n := s.NewNode()
+       n.Data["Pages"] = s.Pages
+
+       // Force `UglyUrls` option to force `sitemap.xml` file name
+       switch s.Target.(type) {
+       case *target.Filesystem:
+               s.Target.(*target.Filesystem).UglyUrls = true
+               optChanged = true
+       }
+
+       smLayouts := []string{"sitemap.xml", "_default/sitemap.xml", "_internal/_default/sitemap.xml"}
+       err := s.render(n, "sitemap.xml", s.appendThemeTemplates(smLayouts)...)
+       if err != nil {
+               return err
+       }
+
+       if optChanged {
+               s.Target.(*target.Filesystem).UglyUrls = viper.GetBool("UglyUrls")
+       }
+
+       return nil
+}
+
 func (s *Site) Stats() {
        jww.FEEDBACK.Printf("%d pages created \n", len(s.Pages))
 
diff --git a/hugolib/sitemap.go b/hugolib/sitemap.go
new file mode 100644 (file)
index 0000000..9510555
--- /dev/null
@@ -0,0 +1,18 @@
+package hugolib
+
+import jww "github.com/spf13/jwalterweatherman"
+
+type Sitemap struct {
+       ChangeFreq string
+       Priority   float32
+}
+
+func (s Sitemap) Validate() {
+       if s.Priority < 0 {
+               jww.WARN.Printf("Sitemap priority should be greater than 0, found: %f", s.Priority)
+               s.Priority = 0
+       } else if s.Priority > 1 {
+               jww.WARN.Printf("Sitemap priority should be lesser than 1, found: %f", s.Priority)
+               s.Priority = 1
+       }
+}
index 2555f9a21079f20d5af1d41d2d1dc09b433d9f8e..29d7ce1502ed321348569bae9e5c155e2a723512 100644 (file)
@@ -65,6 +65,17 @@ func (t *GoHtmlTemplate) EmbedTemplates() {
   </channel>
 </rss>`)
 
+       t.AddInternalTemplate("_default", "sitemap.xml", `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
+  {{ range .Data.Pages }}
+  <url>
+    <loc>{{ .Permalink }}</loc>
+    <lastmod>{{ safeHtml ( .Date.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ with .Sitemap.ChangeFreq }}
+    <changefreq>{{ . }}</changefreq>{{ end }}{{ with .Sitemap.Priority }}
+    <priority>{{ . }}</priority>{{ end }}
+  </url>
+  {{ end }}
+</urlset>`)
+
        t.AddInternalTemplate("", "disqus.html", `{{ if .Site.DisqusShortname }}<div id="disqus_thread"></div>
 <script type="text/javascript">
     var disqus_shortname = '{{ .Site.DisqusShortname }}';