1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 13:24:41 +01:00
gojekyll/site.go
2017-06-16 20:19:46 -04:00

202 lines
4.7 KiB
Go

package main
import (
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
"github.com/osteele/gojekyll/helpers"
yaml "gopkg.in/yaml.v2"
)
// Site is a Jekyll site.
type Site struct {
ConfigFile *string
Source string
Destination string
Collections []*Collection
Variables VariableMap
Paths map[string]Page // URL path -> Page
config SiteConfig
sassTempDir string
}
// For now (and maybe always?), there's just one site.
var site = NewSite()
// SiteConfig is the Jekyll site configuration, typically read from _config.yml.
// See https://jekyllrb.com/docs/configuration/#default-configuration
type SiteConfig struct {
// Where things are:
Source string
Destination string
Collections map[string]VariableMap
// Handling Reading
Include []string
Exclude []string
MarkdownExt string `yaml:"markdown_ext"`
// Outputting
Permalink string
}
// From https://jekyllrb.com/docs/configuration/#default-configuration
const siteConfigDefaults = `
# Where things are
source: .
destination: ./_site
include: [".htaccess"]
data_dir: _data
includes_dir: _includes
collections:
posts:
output: true
# Handling Reading
include: [".htaccess"]
exclude: ["Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"]
keep_files: [".git", ".svn"]
encoding: "utf-8"
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
strict_front_matter: false
# Outputting
permalink: date
paginate_path: /page:num
timezone: null
`
// NewSite creates a new site record, initialized with the site defaults.
func NewSite() *Site {
s := new(Site)
if err := s.readConfigBytes([]byte(siteConfigDefaults)); err != nil {
panic(err)
}
return s
}
// NewSiteFromDirectory reads the configuration file, if it exists.
func NewSiteFromDirectory(source string) (*Site, error) {
s := NewSite()
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:
if err = s.readConfigBytes(bytes); err != nil {
return nil, err
}
s.Source = filepath.Join(source, s.config.Source)
s.ConfigFile = &configPath
}
s.Destination = filepath.Join(s.Source, s.config.Destination)
return s, nil
}
func (s *Site) readConfigBytes(bytes []byte) error {
configVariables := VariableMap{}
if err := yaml.Unmarshal(bytes, &s.config); err != nil {
return err
}
if err := yaml.Unmarshal(bytes, &configVariables); err != nil {
return err
}
s.Variables = MergeVariableMaps(s.Variables, configVariables)
return nil
}
// KeepFile returns a boolean indicating that clean should leave the file in the destination directory.
func (s *Site) KeepFile(path string) bool {
// TODO
return false
}
// GetFileURL returns the URL path given a file path, relative to the site source directory.
func (s *Site) GetFileURL(path string) (string, bool) {
for _, p := range s.Paths {
if p.Path() == path {
return p.Permalink(), true
}
}
return "", false
}
// Exclude returns a boolean indicating that the site excludes a file.
func (s *Site) Exclude(path string) bool {
// TODO exclude based on glob, not exact match
inclusionMap := helpers.StringArrayToMap(s.config.Include)
exclusionMap := helpers.StringArrayToMap(s.config.Exclude)
base := filepath.Base(path)
switch {
case inclusionMap[path]:
return false
case path == ".":
return false
case exclusionMap[path]:
return true
case strings.HasPrefix(base, "."), strings.HasPrefix(base, "_"):
return true
default:
return false
}
}
// ReadFiles scans the source directory and creates pages and collections.
func (s *Site) ReadFiles() error {
s.Paths = make(map[string]Page)
defaults := VariableMap{}
walkFn := func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
rel, err := filepath.Rel(s.Source, path)
if err != nil {
return err
}
switch {
case info.IsDir() && s.Exclude(rel):
return filepath.SkipDir
case info.IsDir(), s.Exclude(rel):
return nil
}
p, err := ReadPage(s, nil, rel, defaults)
if err != nil {
return err
}
if p.Published() {
s.Paths[p.Permalink()] = p
}
return nil
}
if err := filepath.Walk(s.Source, walkFn); err != nil {
return err
}
if err := s.ReadCollections(); err != nil {
return err
}
s.initTemplateAttributes()
return nil
}
func (s *Site) initTemplateAttributes() {
// TODO site: {pages, posts, related_posts, static_files, html_pages, html_files, collections, data, documents, categories.CATEGORY, tags.TAG}
s.Variables = MergeVariableMaps(s.Variables, VariableMap{
"time": time.Now(),
})
for _, c := range s.Collections {
s.Variables[c.Name] = c.PageTemplateObjects()
}
}