1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 14:04:42 +01:00
gojekyll/site/read.go
2017-07-12 08:17:19 -04:00

114 lines
3.0 KiB
Go

package site
import (
"io/ioutil"
"os"
"path/filepath"
"github.com/osteele/gojekyll/collection"
"github.com/osteele/gojekyll/config"
"github.com/osteele/gojekyll/pages"
"github.com/osteele/gojekyll/plugins"
"github.com/osteele/gojekyll/utils"
)
// FromDirectory reads the configuration file, if it exists.
func FromDirectory(source string, flags config.Flags) (*Site, error) {
s := New(flags)
configPath := filepath.Join(source, "_config.yml")
bytes, err := ioutil.ReadFile(configPath)
switch {
case err != nil && os.IsNotExist(err):
// ok
case err != nil:
return nil, err
default:
err = config.Unmarshal(bytes, &s.config)
if err != nil {
return nil, err
}
s.ConfigFile = &configPath
}
s.config.Source = source
s.config.ApplyFlags(s.flags)
return s, nil
}
// Read loads the site data and files. It doesn't load the configuration file; NewSiteFromDirectory did that.
func (s *Site) Read() error {
plugins.Install(s.config.Plugins, s)
if err := s.readDataFiles(); err != nil {
return err
}
if err := s.readFiles(); err != nil {
return err
}
if err:=s.initializeRenderingPipeline(); err!=nil{return err}
return s.runHooks(func(p plugins.Plugin) error { return p.PostRead(s) })
}
// Reload reloads the config file and pages.
// It returns a copy.
func (s *Site) Reload() (*Site, error) {
copy, err := FromDirectory(s.SourceDir(), s.flags)
if err != nil {
return nil, err
}
return copy, copy.Read()
}
// readFiles scans the source directory and creates pages and collection.
func (s *Site) readFiles() error {
s.Routes = make(map[string]pages.Document)
walkFn := func(filename string, info os.FileInfo, err error) error {
if err != nil {
return err
}
relname := utils.MustRel(s.SourceDir(), filename)
switch {
case info.IsDir() && s.Exclude(relname):
return filepath.SkipDir
case info.IsDir(), s.Exclude(relname):
return nil
}
defaultFrontmatter := s.config.GetFrontMatterDefaults("", relname)
p, err := pages.NewFile(s, filename, filepath.ToSlash(relname), defaultFrontmatter)
if err != nil {
return utils.WrapPathError(err, filename)
}
s.AddDocument(p, true)
return nil
}
if err := filepath.Walk(s.SourceDir(), walkFn); err != nil {
return err
}
return s.ReadCollections()
}
// AddDocument adds a document to the site structures.
// It ignores unpublished documents unless config.Unpublished is true.
func (s *Site) AddDocument(d pages.Document, output bool) {
if d.Published() || s.config.Unpublished {
s.docs = append(s.docs, d)
if output {
s.Routes[d.Permalink()] = d
}
}
}
// 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, data := range s.config.Collections {
c := collection.New(s, name, data)
s.Collections = append(s.Collections, c)
if err := c.ReadPages(); err != nil {
return err
}
for _, p := range c.Pages() {
s.AddDocument(p, c.Output())
}
}
return nil
}