1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 02:44:39 +01:00
gojekyll/site/site.go

211 lines
5.5 KiB
Go
Raw Normal View History

2017-07-04 15:09:36 +02:00
package site
import (
2017-06-24 19:30:01 +02:00
"fmt"
"path/filepath"
"strings"
2017-07-05 17:18:32 +02:00
"sync"
2017-06-19 20:44:34 +02:00
2017-07-04 15:09:36 +02:00
"github.com/osteele/gojekyll/collection"
"github.com/osteele/gojekyll/config"
2017-06-22 17:02:32 +02:00
"github.com/osteele/gojekyll/pages"
2017-06-24 20:00:19 +02:00
"github.com/osteele/gojekyll/pipelines"
2017-06-30 18:53:34 +02:00
"github.com/osteele/gojekyll/plugins"
2017-07-09 22:17:20 +02:00
"github.com/osteele/gojekyll/utils"
2017-07-12 13:10:52 +02:00
"github.com/osteele/liquid"
)
// Site is a Jekyll site.
type Site struct {
2017-06-29 13:27:43 +02:00
ConfigFile *string
2017-07-04 15:09:36 +02:00
Collections []*collection.Collection
Routes map[string]pages.Document // URL path -> Document, only for output pages
2017-06-29 17:00:59 +02:00
config config.Config
data map[string]interface{}
2017-07-01 21:03:36 +02:00
flags config.Flags
2017-06-30 18:53:34 +02:00
pipeline *pipelines.Pipeline
2017-07-24 13:44:49 +02:00
themeDir string
docs []pages.Document // all documents, whether or not they are output
2017-06-29 17:00:59 +02:00
preparedToRender bool
drop map[string]interface{} // cached drop value
2017-07-05 17:18:32 +02:00
sync.Mutex
}
2017-07-01 05:10:58 +02:00
// SourceDir returns the site source directory.
func (s *Site) SourceDir() string { return s.config.Source }
2017-07-01 05:10:58 +02:00
// DestDir returns the site destination directory.
func (s *Site) DestDir() string {
if filepath.IsAbs(s.config.Destination) {
return s.config.Destination
}
return filepath.Join(s.config.Source, s.config.Destination)
}
2017-07-13 03:17:11 +02:00
// OutputDocs returns a list of output pages.
func (s *Site) OutputDocs() []pages.Document {
out := make([]pages.Document, 0, len(s.Routes))
2017-06-29 01:00:01 +02:00
for _, p := range s.Routes {
out = append(out, p)
}
2017-06-29 04:46:19 +02:00
return out
2017-06-29 01:00:01 +02:00
}
// Pages returns all the pages, output or not.
func (s *Site) Pages() (out []pages.Page) {
for _, d := range s.docs {
if p, ok := d.(pages.Page); ok {
out = append(out, p)
}
}
return
}
2017-06-22 16:37:31 +02:00
2017-07-04 15:09:36 +02:00
// AbsDir is in the collection.Site interface.
2017-07-02 18:09:15 +02:00
func (s *Site) AbsDir() string {
d, err := filepath.Abs(s.SourceDir())
if err != nil {
panic(err)
}
return d
}
2017-07-04 15:09:36 +02:00
// Config is in the collection.Site interface.
2017-07-03 17:48:06 +02:00
func (s *Site) Config() *config.Config {
return &s.config
2017-07-01 20:55:50 +02:00
}
2017-07-09 04:47:50 +02:00
func (s *Site) runHooks(h func(plugins.Plugin) error) error {
for _, name := range s.config.Plugins {
p, ok := plugins.Lookup(name)
if ok {
if err := h(p); err != nil {
return err
}
}
}
return nil
}
2017-07-03 16:39:55 +02:00
// Site is in the pages.RenderingContext interface.
func (s *Site) Site() interface{} {
return s
}
2017-07-01 01:37:31 +02:00
// PathPrefix is in the page.Container interface.
2017-06-22 16:37:31 +02:00
func (s *Site) PathPrefix() string { return "" }
2017-07-04 15:09:36 +02:00
// New creates a new site record, initialized with the site defaults.
func New(flags config.Flags) *Site {
2017-07-01 20:55:50 +02:00
s := &Site{config: config.Default(), flags: flags}
2017-07-01 21:03:36 +02:00
s.config.ApplyFlags(flags)
2017-07-01 20:55:50 +02:00
return s
}
2017-06-29 00:44:39 +02:00
// SetAbsoluteURL overrides the loaded configuration.
// The server uses this.
func (s *Site) SetAbsoluteURL(url string) {
s.config.AbsoluteURL = url
s.config.Variables["url"] = url
2017-07-03 16:39:55 +02:00
if s.drop != nil {
s.drop["url"] = url
2017-06-29 17:00:59 +02:00
}
2017-06-29 00:44:39 +02:00
}
// FilenameURLs returns a map of site-relative pathnames to URL paths
2017-06-24 20:00:19 +02:00
func (s *Site) FilenameURLs() map[string]string {
urls := map[string]string{}
for _, page := range s.Pages() {
urls[utils.MustRel(s.SourceDir(), page.SourcePath())] = page.Permalink()
2017-06-24 20:00:19 +02:00
}
return urls
}
2017-06-13 23:19:05 +02:00
// KeepFile returns a boolean indicating that clean should leave the file in the destination directory.
2017-07-02 01:42:48 +02:00
func (s *Site) KeepFile(filename string) bool {
2017-07-09 22:17:20 +02:00
return utils.SearchStrings(s.config.KeepFiles, filename)
}
2017-07-01 23:46:18 +02:00
// FilePathPage returns a Page, give a file path relative to site source directory.
func (s *Site) FilePathPage(rel string) (pages.Document, bool) {
// This looks wasteful. If it shows up as a hotspot, you know what to do.
2017-06-29 01:00:01 +02:00
for _, p := range s.Routes {
if p.SourcePath() != "" && rel == utils.MustRel(s.SourceDir(), p.SourcePath()) {
2017-06-22 16:37:31 +02:00
return p, true
}
}
2017-06-22 16:37:31 +02:00
return nil, false
}
2017-07-01 23:46:18 +02:00
// FilenameURLPath returns a page's URL path, give a relative file path relative to the site source directory.
func (s *Site) FilenameURLPath(relpath string) (string, bool) {
if p, found := s.FilePathPage(relpath); found {
return p.Permalink(), true
}
2017-07-01 23:46:18 +02:00
return "", false
}
2017-06-24 19:30:01 +02:00
// RenderingPipeline returns the rendering pipeline.
2017-06-24 20:00:19 +02:00
func (s *Site) RenderingPipeline() pipelines.PipelineInterface {
2017-06-24 19:30:01 +02:00
if s.pipeline == nil {
panic(fmt.Errorf("uninitialized rendering pipeline"))
}
return s.pipeline
}
2017-07-12 13:10:52 +02:00
// TemplateEngine is part of the plugins.Site interface.
func (s *Site) TemplateEngine() *liquid.Engine {
return s.pipeline.TemplateEngine()
}
2017-06-29 17:00:59 +02:00
// initializeRenderingPipeline initializes the rendering pipeline
func (s *Site) initializeRenderingPipeline() (err error) {
options := pipelines.PipelineOptions{
2017-07-01 23:46:18 +02:00
RelativeFilenameToURL: s.FilenameURLPath,
2017-07-24 14:09:14 +02:00
ThemeDir: s.themeDir,
}
s.pipeline, err = pipelines.NewPipeline(s.config, options)
2017-07-09 04:47:50 +02:00
if err != nil {
2017-07-10 00:19:22 +02:00
return err
2017-06-30 18:53:34 +02:00
}
2017-07-09 04:47:50 +02:00
engine := s.pipeline.TemplateEngine()
return s.runHooks(func(p plugins.Plugin) error {
return p.ConfigureTemplateEngine(engine)
})
2017-06-24 19:30:01 +02:00
}
2017-07-01 01:37:31 +02:00
// OutputExt is in the page.Container interface.
2017-06-24 20:00:19 +02:00
func (s *Site) OutputExt(pathname string) string {
return s.config.OutputExt(pathname)
}
2017-06-22 16:37:31 +02:00
// URLPage returns the page that will be served at URL
func (s *Site) URLPage(urlpath string) (p pages.Document, found bool) {
2017-06-29 01:00:01 +02:00
p, found = s.Routes[urlpath]
if !found {
2017-06-29 01:00:01 +02:00
p, found = s.Routes[filepath.Join(urlpath, "index.html")]
}
if !found {
2017-06-29 01:00:01 +02:00
p, found = s.Routes[filepath.Join(urlpath, "index.htm")]
}
return
}
2017-06-13 23:19:05 +02:00
// Exclude returns a boolean indicating that the site excludes a file.
func (s *Site) Exclude(path string) bool {
base := filepath.Base(path)
switch {
case path == ".":
return false
2017-07-14 17:38:14 +02:00
case utils.MatchList(s.config.Include, base):
return false
2017-07-14 17:38:14 +02:00
case utils.MatchList(s.config.Exclude, base):
return true
case strings.HasPrefix(base, "."), strings.HasPrefix(base, "_"):
return true
default:
return false
}
}