1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 12:14:42 +01:00
gojekyll/site.go
2017-06-13 12:38:06 -04:00

211 lines
4.9 KiB
Go

package main
import (
"io/ioutil"
"os"
"path/filepath"
"strings"
yaml "gopkg.in/yaml.v2"
)
// Site is a Jekyll site.
type Site struct {
ConfigFile *string
Source string
Dest string
Collections []*Collection
Data map[interface{}]interface{}
Paths map[string]*Page // URL path -> *Page
config SiteConfig
}
// 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]interface{}
// Handling Reading
Include []string
Exclude []string
MarkdownExt string `yaml:"markdown_ext"`
// Outputting
Permalink string
}
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
`
//TODO permalink: "/:categories/:year/:month/:day/:title.html",
// NewSite creates a new site.
func NewSite() *Site {
s := new(Site)
s.Paths = make(map[string]*Page)
if err := s.readConfig([]byte(siteConfigDefaults)); err != nil {
panic(err)
}
return s
}
// ReadConfiguration reads the configuration file, if it exists.
func (s *Site) ReadConfiguration(source, dest string) error {
configPath := filepath.Join(source, "_config.yml")
bytes, err := ioutil.ReadFile(configPath)
switch {
case err == nil:
if err = site.readConfig(bytes); err != nil {
return err
}
s.Source = filepath.Join(source, s.config.Source)
s.Dest = filepath.Join(s.Source, s.config.Destination)
s.ConfigFile = &configPath
if dest != "" {
site.Dest = dest
}
return nil
case os.IsNotExist(err):
return nil
default:
return err
}
}
func (s *Site) readConfig(bytes []byte) error {
if err := yaml.Unmarshal(bytes, &s.config); err != nil {
return err
}
if err := yaml.Unmarshal(bytes, &s.Data); err != nil {
return err
}
return nil
}
// KeepFile returns true iff clean should leave the file in the destination directory.
func (s *Site) KeepFile(path string) bool {
// TODO
return false
}
// MarkdownExtensions returns a set of markdown extension.
func (s *Site) MarkdownExtensions() map[string]bool {
extns := strings.SplitN(s.config.MarkdownExt, `,`, -1)
return stringArrayToMap(extns)
}
// GetFileURL returns the URL path given a file path, relative to the site source directory.
func (s *Site) GetFileURL(path string) (string, bool) {
for _, v := range s.Paths {
if v.Path == path {
return v.Permalink, true
}
}
return "", false
}
// Exclude returns true iff a site excludes a file.
func (s *Site) Exclude(path string) bool {
// TODO exclude based on glob, not exact match
inclusionMap := stringArrayToMap(s.config.Include)
exclusionMap := 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 {
d := map[interface{}]interface{}{}
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(rel, d)
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
}
return s.ReadCollections()
}
// ReadCollections scans the file system for collections. 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 {
data, ok := d.(map[interface{}]interface{})
if !ok {
panic("expected collection value to be a map")
}
c := makeCollection(s, name, data)
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
}
}
s.Data[c.Name] = c.PageData()
}
return nil
}