2017-07-04 15:09:36 +02:00
|
|
|
package collection
|
2017-07-02 00:43:22 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2017-07-03 15:48:41 +02:00
|
|
|
"sort"
|
2017-07-02 00:43:22 +02:00
|
|
|
|
|
|
|
"github.com/osteele/gojekyll/pages"
|
|
|
|
"github.com/osteele/gojekyll/templates"
|
2017-07-09 22:17:20 +02:00
|
|
|
"github.com/osteele/gojekyll/utils"
|
2017-07-02 00:43:22 +02:00
|
|
|
)
|
|
|
|
|
2017-07-03 17:48:06 +02:00
|
|
|
const draftsPath = "_drafts"
|
|
|
|
|
2017-07-10 19:54:52 +02:00
|
|
|
// ReadPages scans the file system for collection pages, and adds them to c.Pages.
|
|
|
|
func (c *Collection) ReadPages() error {
|
|
|
|
if c.IsPostsCollection() && c.config.Drafts {
|
|
|
|
if err := c.scanDirectory(draftsPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := c.scanDirectory(c.PathPrefix()); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if c.IsPostsCollection() {
|
|
|
|
sort.Sort(pagesByDate{c.pages})
|
2017-08-10 16:51:29 +02:00
|
|
|
var prev pages.Page
|
|
|
|
for _, p := range c.pages {
|
|
|
|
p.FrontMatter()["previous"] = prev
|
|
|
|
if prev != nil {
|
|
|
|
prev.FrontMatter()["next"] = p
|
|
|
|
}
|
|
|
|
prev = p
|
|
|
|
}
|
|
|
|
if prev != nil {
|
|
|
|
prev.FrontMatter()["next"] = nil
|
|
|
|
}
|
2017-07-10 19:54:52 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// scanDirectory scans the file system for collection pages, and adds them to c.Pages.
|
|
|
|
//
|
|
|
|
// This function is distinct from ReadPages so that the posts collection can call it twice.
|
|
|
|
func (c *Collection) scanDirectory(dirname string) error {
|
2017-07-12 01:23:42 +02:00
|
|
|
var (
|
|
|
|
sitePath = c.config.Source
|
|
|
|
dir = filepath.Join(sitePath, dirname)
|
|
|
|
)
|
2017-07-02 00:43:22 +02:00
|
|
|
walkFn := func(filename string, info os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2017-07-12 01:23:42 +02:00
|
|
|
siteRel := utils.MustRel(sitePath, filename)
|
2017-07-02 00:43:22 +02:00
|
|
|
switch {
|
|
|
|
case info.IsDir():
|
|
|
|
return nil
|
2017-07-12 01:23:42 +02:00
|
|
|
case c.site.Exclude(siteRel):
|
2017-07-10 19:54:52 +02:00
|
|
|
return nil
|
|
|
|
default:
|
2017-07-14 17:30:39 +02:00
|
|
|
return c.readPost(filename, utils.MustRel(dir, filename))
|
2017-07-02 00:43:22 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-12 01:23:42 +02:00
|
|
|
return filepath.Walk(dir, walkFn)
|
2017-07-04 14:29:11 +02:00
|
|
|
}
|
|
|
|
|
2017-07-14 17:30:39 +02:00
|
|
|
func (c *Collection) readPost(abs string, rel string) error {
|
2017-07-12 01:23:42 +02:00
|
|
|
siteRel := utils.MustRel(c.config.Source, abs)
|
2017-07-02 00:43:22 +02:00
|
|
|
strategy := c.strategy()
|
|
|
|
switch {
|
|
|
|
case !strategy.collectible(rel):
|
|
|
|
return nil
|
2017-07-03 19:03:45 +02:00
|
|
|
case strategy.future(rel) && !c.config.Future:
|
2017-07-02 00:43:22 +02:00
|
|
|
return nil
|
|
|
|
}
|
2017-07-12 01:23:42 +02:00
|
|
|
pageDefaults := map[string]interface{}{
|
|
|
|
"collection": c.Name,
|
|
|
|
"permalink": c.PermalinkPattern(),
|
|
|
|
}
|
|
|
|
fm := templates.MergeVariableMaps(pageDefaults, c.config.GetFrontMatterDefaults(c.Name, siteRel))
|
|
|
|
strategy.addDate(rel, fm)
|
2017-07-10 19:23:51 +02:00
|
|
|
f, err := pages.NewFile(c.site, abs, filepath.ToSlash(rel), fm)
|
2017-07-02 00:43:22 +02:00
|
|
|
switch {
|
|
|
|
case err != nil:
|
|
|
|
return err
|
2017-07-02 18:09:15 +02:00
|
|
|
case f.Static():
|
|
|
|
return nil
|
2017-07-03 19:03:45 +02:00
|
|
|
case f.Published() || c.config.Unpublished:
|
2017-07-14 17:30:39 +02:00
|
|
|
p := f.(pages.Page) // f.Static() guarantees this
|
2017-07-02 00:43:22 +02:00
|
|
|
c.pages = append(c.pages, p)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|