hugolib: Add OutputFormats with permalinks to Page
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 21 Mar 2017 23:25:55 +0000 (00:25 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 27 Mar 2017 13:43:56 +0000 (15:43 +0200)
hugolib/page_output.go
hugolib/page_paths.go
hugolib/site_output_test.go
output/outputFormat.go

index fa9a45190986f3c6bc47637afba2cd818845c5dc..cdc4a53d815ea9d9c6d69dd34dfd53b50e81421e 100644 (file)
@@ -15,6 +15,7 @@ package hugolib
 
 import (
        "html/template"
+       "strings"
        "sync"
 
        "github.com/spf13/hugo/output"
@@ -109,3 +110,46 @@ func (p *PageOutput) Render(layout ...string) template.HTML {
 func (p *Page) Render(layout ...string) template.HTML {
        return p.mainPageOutput.Render(layout...)
 }
+
+// OutputFormats holds a list of the relevant output formats for a given resource.
+type OutputFormats []*OutputFormat
+
+// And OutputFormat links to a representation of a resource.
+type OutputFormat struct {
+       f output.Format
+       p *Page
+}
+
+// TODO(bep) outputs consider just save this wrapper on Page.
+// OutputFormats gives the output formats for this Page.
+func (p *Page) OutputFormats() OutputFormats {
+       var o OutputFormats
+       for _, f := range p.outputFormats {
+               o = append(o, &OutputFormat{f: f, p: p})
+       }
+       return o
+}
+
+// Get gets a OutputFormat given its name, i.e. json, html etc.
+// It returns nil if not found.
+func (o OutputFormats) Get(name string) *OutputFormat {
+       name = strings.ToLower(name)
+       for _, f := range o {
+               if strings.ToLower(f.f.Name) == name {
+                       return f
+               }
+       }
+       return nil
+}
+
+// Permalink returns the absolute permalink to this output format.
+func (o *OutputFormat) Permalink() string {
+       rel := o.p.createRelativePermalinkForOutputFormat(o.f)
+       return o.p.s.permalink(rel)
+}
+
+// Permalink returns the relative permalink to this output format.
+func (o *OutputFormat) RelPermalink() string {
+       rel := o.p.createRelativePermalinkForOutputFormat(o.f)
+       return o.p.s.PathSpec.PrependBasePath(rel)
+}
index 55d0d8cd2a74b3dac5d28b3a1f46c2c1f69bdc03..00d96c05ceccbb2457edd06abe1de836ea667884 100644 (file)
@@ -219,15 +219,23 @@ func (p *Page) createRelativePermalink() string {
        }
 
        // Choose the main output format. In most cases, this will be HTML.
-       outFormat := p.outputFormats[0]
-       tp, err := p.createTargetPath(outFormat)
+       f := p.outputFormats[0]
+
+       return p.createRelativePermalinkForOutputFormat(f)
+
+}
+
+func (p *Page) createRelativePermalinkForOutputFormat(f output.Format) string {
+       tp, err := p.createTargetPath(f)
 
        if err != nil {
                p.s.Log.ERROR.Printf("Failed to create permalink for page %q: %s", p.FullFilePath(), err)
                return ""
        }
-
-       tp = strings.TrimSuffix(tp, outFormat.BaseFilename())
+       // For /index.json etc. we must  use the full path.
+       if strings.HasSuffix(f.BaseFilename(), "html") {
+               tp = strings.TrimSuffix(tp, f.BaseFilename())
+       }
 
        return p.s.PathSpec.URLizeFilename(tp)
 }
index 3e5df6a634703a76ad0c41aaf28c795b41d06492..12746e88b937cb32bb8762e365efb2cd6a9aef64 100644 (file)
@@ -65,7 +65,7 @@ category = "categories"
 
        pageTemplate := `---
 title: "%s"
-outputs: ["json"]
+outputs: ["html", "json"]
 ---
 # Doc
 `
@@ -88,10 +88,19 @@ outputs: ["json"]
 
        require.NotNil(t, home)
 
-       require.Len(t, home.outputFormats, 1)
+       require.Len(t, home.outputFormats, 2)
 
        // TODO(bep) output assert template/text
 
        th.assertFileContent("public/index.json", "List JSON")
 
+       of := home.OutputFormats()
+       require.Len(t, of, 2)
+       require.Nil(t, of.Get("Hugo"))
+       require.NotNil(t, of.Get("json"))
+       json := of.Get("JSON")
+       require.NotNil(t, json)
+       require.Equal(t, "/blog/index.json", json.RelPermalink())
+       require.Equal(t, "http://example.com/blog/index.json", json.Permalink())
+
 }
index cc04bcbe491204d0f8da3ceb55f856e98e7a723c..392414ccaf15d38cf0b16202bbbfad7818c887fb 100644 (file)
@@ -23,6 +23,9 @@ import (
 var (
        // An ordered list of built-in output formats
        // See https://www.ampproject.org/learn/overview/
+       // TODO
+       // <link rel="amphtml" href="{{ .Permalink }}">
+       // canonical
        AMPType = Format{
                Name:      "AMP",
                MediaType: media.HTMLType,