1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 03:34:46 +01:00
gojekyll/collection.go

100 lines
2.4 KiB
Go
Raw Normal View History

2017-06-13 15:01:20 +02:00
package main
import (
"fmt"
"os"
"path/filepath"
)
// Collection is a Jekyll collection.
type Collection struct {
Site *Site
2017-06-13 15:01:20 +02:00
Name string
2017-06-14 23:41:15 +02:00
Data VariableMap
2017-06-13 15:01:20 +02:00
Output bool
Pages []Page
2017-06-13 15:01:20 +02:00
}
func NewCollection(s *Site, name string, d VariableMap) *Collection {
2017-06-13 15:01:20 +02:00
return &Collection{
Site: s,
2017-06-13 15:01:20 +02:00
Name: name,
Data: d,
2017-06-14 23:41:15 +02:00
Output: d.Bool("output", false),
2017-06-13 15:01:20 +02:00
}
}
// ReadCollections reads the pages of the collections named in the site configuration.
// It adds each collection's pages to the site map, and creates a template site variable for each collection.
func (s *Site) ReadCollections() error {
for name, d := range s.config.Collections {
c := NewCollection(s, name, d)
s.Collections = append(s.Collections, c)
if c.Output { // TODO always read the pages; just don't build them / include them in routes
if err := c.ReadPages(); err != nil {
return err
}
}
}
return nil
}
2017-06-15 13:19:49 +02:00
// PageTemplateObjects returns an array of page objects, for use as the template variable
2017-06-13 15:01:20 +02:00
// value of the collection.
2017-06-15 13:19:49 +02:00
func (c *Collection) PageTemplateObjects() (d []VariableMap) {
2017-06-13 15:01:20 +02:00
for _, p := range c.Pages {
2017-06-15 13:19:49 +02:00
d = append(d, p.TemplateObject())
2017-06-13 15:01:20 +02:00
}
return
}
2017-06-15 13:19:49 +02:00
// IsPosts returns true if the collection is the special "posts" collection.
2017-06-14 23:41:15 +02:00
func (c *Collection) IsPosts() bool {
2017-06-13 15:01:20 +02:00
return c.Name == "posts"
}
2017-06-14 23:41:15 +02:00
// Source returns the source directory for pages in the collection.
func (c *Collection) Source() string {
return filepath.Join(c.Site.Source, "_"+c.Name)
2017-06-13 15:01:20 +02:00
}
// ReadPages scans the file system for collection pages, and adds them to c.Pages.
func (c *Collection) ReadPages() error {
basePath := c.Site.Source
defaults := MergeVariableMaps(c.Data, VariableMap{
2017-06-13 15:01:20 +02:00
"collection": c.Name,
2017-06-14 23:41:15 +02:00
})
2017-06-13 15:01:20 +02:00
walkFn := func(path string, info os.FileInfo, err error) error {
if err != nil {
2017-06-14 23:41:15 +02:00
// if the issue is simply that the directory doesn't exist, warn instead of error
2017-06-13 15:01:20 +02:00
if os.IsNotExist(err) {
2017-06-14 23:41:15 +02:00
if !c.IsPosts() {
2017-06-13 15:01:20 +02:00
fmt.Println("Missing directory for collection", c.Name)
}
return nil
}
return err
}
rel, err := filepath.Rel(basePath, path)
switch {
case err != nil:
return err
case info.IsDir():
return nil
}
p, err := ReadPage(c.Site, rel, defaults)
2017-06-13 15:01:20 +02:00
switch {
case err != nil:
return err
case p.Static():
2017-06-13 15:01:20 +02:00
fmt.Printf("skipping static file inside collection: %s\n", path)
case p.Published():
c.Site.Paths[p.Permalink()] = p
2017-06-13 15:01:20 +02:00
c.Pages = append(c.Pages, p)
}
return nil
}
2017-06-14 23:41:15 +02:00
return filepath.Walk(c.Source(), walkFn)
2017-06-13 15:01:20 +02:00
}