1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-12 00:49:37 +01:00
gojekyll/collections/collection.go

91 lines
2.7 KiB
Go
Raw Normal View History

package collections
2017-06-13 15:01:20 +02:00
import (
"path/filepath"
2017-07-01 20:55:50 +02:00
"github.com/osteele/gojekyll/config"
"github.com/osteele/gojekyll/constants"
2017-06-22 17:02:32 +02:00
"github.com/osteele/gojekyll/pages"
"github.com/osteele/gojekyll/templates"
2017-07-01 04:05:55 +02:00
"github.com/osteele/liquid/generics"
2017-06-13 15:01:20 +02:00
)
// Collection is a Jekyll collection https://jekyllrb.com/docs/collections/.
2017-06-13 15:01:20 +02:00
type Collection struct {
Name string
2017-07-01 05:56:29 +02:00
Metadata map[string]interface{}
container pages.Container
pages []pages.Document
2017-06-13 15:01:20 +02:00
}
2017-06-22 23:53:46 +02:00
// NewCollection creates a new Collection
2017-07-01 05:56:29 +02:00
func NewCollection(name string, metadata map[string]interface{}, c pages.Container) *Collection {
2017-06-13 15:01:20 +02:00
return &Collection{
Name: name,
Metadata: metadata,
container: c,
2017-06-13 15:01:20 +02:00
}
}
2017-07-01 20:55:50 +02:00
// Config is in the page.Container interface.
func (c *Collection) Config() config.Config {
return c.container.Config()
}
2017-07-01 01:37:31 +02:00
// OutputExt is in the page.Container interface.
2017-06-24 17:58:12 +02:00
func (c *Collection) OutputExt(pathname string) string {
return c.container.OutputExt(pathname)
2017-06-24 17:58:12 +02:00
}
2017-07-01 01:37:31 +02:00
// PathPrefix is in the page.Container interface.
// PathPrefix returns the collection's directory prefix, e.g. "_posts/"
func (c *Collection) PathPrefix() string { return filepath.FromSlash("_" + c.Name + "/") }
2017-06-23 16:41:17 +02:00
// IsPostsCollection returns true if the collection is the special "posts" collection.
func (c *Collection) IsPostsCollection() bool { return c.Name == "posts" }
2017-06-22 16:37:31 +02:00
// Output returns a bool indicating whether files in this collection should be written.
2017-07-01 05:56:29 +02:00
func (c *Collection) Output() bool { return templates.VariableMap(c.Metadata).Bool("output", false) }
2017-06-13 15:01:20 +02:00
2017-06-22 17:55:58 +02:00
// Pages is a list of pages.
func (c *Collection) Pages() []pages.Document {
2017-06-22 17:55:58 +02:00
return c.pages
}
2017-06-22 16:37:31 +02:00
// TemplateVariable returns an array of page objects, for use as the template variable
// value of the collection.
2017-07-01 04:05:55 +02:00
func (c *Collection) TemplateVariable(ctx pages.RenderingContext, includeContent bool) ([]interface{}, error) {
d := []interface{}{}
2017-06-22 17:55:58 +02:00
for _, p := range c.Pages() {
v := p.PageVariables()
dp, ok := p.(*pages.Page)
if includeContent && ok {
2017-07-01 15:35:54 +02:00
c, err := dp.Content(ctx)
if err != nil {
return nil, err
}
2017-07-01 05:56:29 +02:00
v = templates.MergeVariableMaps(v, map[string]interface{}{
"content": string(c),
})
}
d = append(d, v)
2017-06-22 16:37:31 +02:00
}
2017-07-01 04:05:55 +02:00
if c.IsPostsCollection() {
generics.SortByProperty(d, "date", true)
}
out := make([]interface{}, len(d))
for i, v := range d {
out[len(d)-1-i] = v
}
return out, nil
2017-06-13 15:01:20 +02:00
}
2017-06-23 20:57:28 +02:00
// PermalinkPattern returns the permalink pattern for this collection.
func (c *Collection) PermalinkPattern() string {
defaultPattern := constants.DefaultCollectionPermalinkPattern
if c.IsPostsCollection() {
defaultPattern = constants.DefaultPostsCollectionPermalinkPattern
}
2017-07-01 05:56:29 +02:00
return templates.VariableMap(c.Metadata).String("permalink", defaultPattern)
2017-06-23 20:57:28 +02:00
}