2017-06-10 21:38:09 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2017-06-16 04:31:36 +02:00
|
|
|
"time"
|
2017-06-10 21:38:09 +02:00
|
|
|
|
2017-06-17 02:11:52 +02:00
|
|
|
"github.com/osteele/gojekyll/helpers"
|
2017-06-17 01:17:22 +02:00
|
|
|
|
2017-06-10 21:38:09 +02:00
|
|
|
yaml "gopkg.in/yaml.v2"
|
|
|
|
)
|
|
|
|
|
2017-06-13 17:00:24 +02:00
|
|
|
// Site is a Jekyll site.
|
|
|
|
type Site struct {
|
2017-06-16 04:31:36 +02:00
|
|
|
ConfigFile *string
|
|
|
|
Source string
|
|
|
|
Destination string
|
2017-06-13 17:27:24 +02:00
|
|
|
|
|
|
|
Collections []*Collection
|
2017-06-14 23:41:15 +02:00
|
|
|
Variables VariableMap
|
2017-06-15 02:44:22 +02:00
|
|
|
Paths map[string]Page // URL path -> Page
|
2017-06-13 17:27:24 +02:00
|
|
|
|
2017-06-16 21:14:56 +02:00
|
|
|
config SiteConfig
|
2017-06-16 19:47:11 +02:00
|
|
|
sassTempDir string
|
2017-06-13 17:00:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// For now (and maybe always?), there's just one site.
|
2017-06-13 18:00:14 +02:00
|
|
|
var site = NewSite()
|
2017-06-13 17:00:24 +02:00
|
|
|
|
2017-06-10 21:38:09 +02:00
|
|
|
// SiteConfig is the Jekyll site configuration, typically read from _config.yml.
|
2017-06-12 23:12:40 +02:00
|
|
|
// See https://jekyllrb.com/docs/configuration/#default-configuration
|
2017-06-10 21:38:09 +02:00
|
|
|
type SiteConfig struct {
|
2017-06-13 14:54:35 +02:00
|
|
|
// Where things are:
|
2017-06-13 17:27:24 +02:00
|
|
|
Source string
|
|
|
|
Destination string
|
2017-06-14 23:41:15 +02:00
|
|
|
Collections map[string]VariableMap
|
2017-06-12 23:12:40 +02:00
|
|
|
|
2017-06-13 14:54:35 +02:00
|
|
|
// Handling Reading
|
|
|
|
Include []string
|
|
|
|
Exclude []string
|
|
|
|
MarkdownExt string `yaml:"markdown_ext"`
|
|
|
|
|
|
|
|
// Outputting
|
2017-06-12 23:12:40 +02:00
|
|
|
Permalink string
|
2017-06-10 21:38:09 +02:00
|
|
|
}
|
|
|
|
|
2017-06-16 04:31:36 +02:00
|
|
|
// From https://jekyllrb.com/docs/configuration/#default-configuration
|
2017-06-12 23:12:40 +02:00
|
|
|
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
|
|
|
|
`
|
|
|
|
|
2017-06-16 04:31:36 +02:00
|
|
|
// NewSite creates a new site record, initialized with the site defaults.
|
2017-06-13 18:00:14 +02:00
|
|
|
func NewSite() *Site {
|
|
|
|
s := new(Site)
|
2017-06-14 19:20:52 +02:00
|
|
|
if err := s.readConfigBytes([]byte(siteConfigDefaults)); err != nil {
|
2017-06-13 14:54:35 +02:00
|
|
|
panic(err)
|
2017-06-12 23:12:40 +02:00
|
|
|
}
|
2017-06-13 18:00:14 +02:00
|
|
|
return s
|
2017-06-13 14:54:35 +02:00
|
|
|
}
|
|
|
|
|
2017-06-16 22:44:09 +02:00
|
|
|
// NewSiteFromDirectory reads the configuration file, if it exists.
|
|
|
|
func NewSiteFromDirectory(source string) (*Site, error) {
|
|
|
|
s := NewSite()
|
2017-06-13 17:27:24 +02:00
|
|
|
configPath := filepath.Join(source, "_config.yml")
|
2017-06-13 18:00:14 +02:00
|
|
|
bytes, err := ioutil.ReadFile(configPath)
|
2017-06-13 17:27:24 +02:00
|
|
|
switch {
|
2017-06-16 22:44:09 +02:00
|
|
|
case err != nil && os.IsNotExist(err):
|
|
|
|
// ok
|
|
|
|
case err != nil:
|
|
|
|
return nil, err
|
|
|
|
default:
|
|
|
|
if err = s.readConfigBytes(bytes); err != nil {
|
|
|
|
return nil, err
|
2017-06-13 17:27:24 +02:00
|
|
|
}
|
2017-06-13 18:00:14 +02:00
|
|
|
s.Source = filepath.Join(source, s.config.Source)
|
|
|
|
s.ConfigFile = &configPath
|
2017-06-13 17:27:24 +02:00
|
|
|
}
|
2017-06-16 22:44:09 +02:00
|
|
|
s.Destination = filepath.Join(s.Source, s.config.Destination)
|
|
|
|
return s, nil
|
2017-06-13 17:27:24 +02:00
|
|
|
}
|
|
|
|
|
2017-06-14 19:20:52 +02:00
|
|
|
func (s *Site) readConfigBytes(bytes []byte) error {
|
2017-06-14 23:41:15 +02:00
|
|
|
configVariables := VariableMap{}
|
2017-06-13 18:00:14 +02:00
|
|
|
if err := yaml.Unmarshal(bytes, &s.config); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-06-14 19:20:52 +02:00
|
|
|
if err := yaml.Unmarshal(bytes, &configVariables); err != nil {
|
2017-06-12 23:12:40 +02:00
|
|
|
return err
|
2017-06-10 21:38:09 +02:00
|
|
|
}
|
2017-06-16 21:47:41 +02:00
|
|
|
s.Variables = MergeVariableMaps(s.Variables, configVariables)
|
2017-06-13 18:00:14 +02:00
|
|
|
return nil
|
2017-06-10 21:38:09 +02:00
|
|
|
}
|
|
|
|
|
2017-06-13 23:19:05 +02:00
|
|
|
// KeepFile returns a boolean indicating that clean should leave the file in the destination directory.
|
2017-06-13 18:00:14 +02:00
|
|
|
func (s *Site) KeepFile(path string) bool {
|
2017-06-13 17:00:24 +02:00
|
|
|
// 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) {
|
2017-06-15 02:44:22 +02:00
|
|
|
for _, p := range s.Paths {
|
|
|
|
if p.Path() == path {
|
|
|
|
return p.Permalink(), true
|
2017-06-13 14:55:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
|
2017-06-13 23:19:05 +02:00
|
|
|
// Exclude returns a boolean indicating that the site excludes a file.
|
2017-06-13 17:00:24 +02:00
|
|
|
func (s *Site) Exclude(path string) bool {
|
|
|
|
// TODO exclude based on glob, not exact match
|
2017-06-17 02:11:52 +02:00
|
|
|
inclusionMap := helpers.StringArrayToMap(s.config.Include)
|
|
|
|
exclusionMap := helpers.StringArrayToMap(s.config.Exclude)
|
2017-06-13 17:00:24 +02:00
|
|
|
base := filepath.Base(path)
|
|
|
|
switch {
|
2017-06-13 18:38:06 +02:00
|
|
|
case inclusionMap[path]:
|
|
|
|
return false
|
2017-06-13 17:00:24 +02:00
|
|
|
case path == ".":
|
|
|
|
return false
|
|
|
|
case exclusionMap[path]:
|
|
|
|
return true
|
|
|
|
case strings.HasPrefix(base, "."), strings.HasPrefix(base, "_"):
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
2017-06-10 21:38:09 +02:00
|
|
|
|
2017-06-13 17:00:24 +02:00
|
|
|
// ReadFiles scans the source directory and creates pages and collections.
|
|
|
|
func (s *Site) ReadFiles() error {
|
2017-06-15 02:44:22 +02:00
|
|
|
s.Paths = make(map[string]Page)
|
2017-06-14 23:41:15 +02:00
|
|
|
defaults := VariableMap{}
|
2017-06-12 23:12:40 +02:00
|
|
|
|
2017-06-10 21:38:09 +02:00
|
|
|
walkFn := func(path string, info os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-06-13 17:27:24 +02:00
|
|
|
rel, err := filepath.Rel(s.Source, path)
|
2017-06-10 21:38:09 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-06-13 17:00:24 +02:00
|
|
|
switch {
|
|
|
|
case info.IsDir() && s.Exclude(rel):
|
|
|
|
return filepath.SkipDir
|
|
|
|
case info.IsDir(), s.Exclude(rel):
|
2017-06-10 21:38:09 +02:00
|
|
|
return nil
|
|
|
|
}
|
2017-06-17 02:19:46 +02:00
|
|
|
p, err := ReadPage(s, nil, rel, defaults)
|
2017-06-10 23:51:46 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2017-06-10 21:38:09 +02:00
|
|
|
}
|
2017-06-15 02:44:22 +02:00
|
|
|
if p.Published() {
|
|
|
|
s.Paths[p.Permalink()] = p
|
2017-06-11 01:32:39 +02:00
|
|
|
}
|
2017-06-10 21:38:09 +02:00
|
|
|
return nil
|
|
|
|
}
|
2017-06-11 01:32:39 +02:00
|
|
|
|
2017-06-13 17:27:24 +02:00
|
|
|
if err := filepath.Walk(s.Source, walkFn); err != nil {
|
2017-06-13 17:00:24 +02:00
|
|
|
return err
|
2017-06-13 14:55:15 +02:00
|
|
|
}
|
2017-06-16 22:44:09 +02:00
|
|
|
if err := s.ReadCollections(); err != nil {
|
2017-06-14 19:20:52 +02:00
|
|
|
return err
|
|
|
|
}
|
2017-06-15 13:19:49 +02:00
|
|
|
s.initTemplateAttributes()
|
2017-06-14 19:20:52 +02:00
|
|
|
return nil
|
2017-06-13 14:55:15 +02:00
|
|
|
}
|
2017-06-10 23:51:46 +02:00
|
|
|
|
2017-06-15 13:19:49 +02:00
|
|
|
func (s *Site) initTemplateAttributes() {
|
2017-06-16 04:31:36 +02:00
|
|
|
// TODO site: {pages, posts, related_posts, static_files, html_pages, html_files, collections, data, documents, categories.CATEGORY, tags.TAG}
|
2017-06-16 21:47:41 +02:00
|
|
|
s.Variables = MergeVariableMaps(s.Variables, VariableMap{
|
2017-06-16 04:31:36 +02:00
|
|
|
"time": time.Now(),
|
|
|
|
})
|
2017-06-14 19:20:52 +02:00
|
|
|
for _, c := range s.Collections {
|
2017-06-15 13:19:49 +02:00
|
|
|
s.Variables[c.Name] = c.PageTemplateObjects()
|
2017-06-14 19:20:52 +02:00
|
|
|
}
|
|
|
|
}
|