1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 04:46:32 +01:00
gojekyll/sites/site.go

193 lines
5.2 KiB
Go
Raw Normal View History

package sites
import (
2017-06-24 19:30:01 +02:00
"fmt"
"path/filepath"
"strings"
2017-06-19 20:44:34 +02:00
"github.com/osteele/gojekyll/collections"
"github.com/osteele/gojekyll/config"
2017-06-17 02:11:52 +02:00
"github.com/osteele/gojekyll/helpers"
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-01 01:37:31 +02:00
"github.com/osteele/liquid"
)
// Site is a Jekyll site.
type Site struct {
2017-06-29 13:27:43 +02:00
ConfigFile *string
Collections []*collections.Collection
2017-07-01 05:56:29 +02:00
// Variables map[string]interface{}
2017-06-29 17:00:59 +02:00
Routes map[string]pages.Document // URL path -> Page, only for output pages
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
docs []pages.Document // all documents, whether or not they are output
2017-06-29 17:00:59 +02:00
preparedToRender bool
2017-07-03 16:39:55 +02:00
drop map[string]interface{}
}
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-06-29 01:00:01 +02:00
// OutputPages returns a list of output pages.
func (s *Site) OutputPages() []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() []pages.Document { return s.docs }
2017-06-22 16:37:31 +02:00
2017-07-03 16:39:55 +02:00
// AbsDir is in the collections.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-01 20:55:50 +02:00
// Config is in the page.Container interface.
func (s *Site) Config() config.Config {
return s.config
}
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-06-16 04:31:36 +02:00
// NewSite creates a new site record, initialized with the site defaults.
2017-07-01 20:55:50 +02:00
func NewSite(flags config.Flags) *Site {
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
}
2017-06-24 20:00:19 +02:00
// FilenameURLs returns a map of relative filenames to URL paths
func (s *Site) FilenameURLs() map[string]string {
urls := map[string]string{}
for _, page := range s.Pages() {
urls[page.SiteRelPath()] = page.Permalink()
}
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 {
return helpers.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(relpath string) (pages.Document, bool) {
2017-06-29 01:00:01 +02:00
for _, p := range s.Routes {
2017-06-22 16:37:31 +02:00
if p.SiteRelPath() == relpath {
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-06-30 18:53:34 +02:00
type pluginContext struct {
engine liquid.Engine
}
// Engine is in the PluginContext interface.
func (c pluginContext) TemplateEngine() liquid.Engine { return c.engine }
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,
}
s.pipeline, err = pipelines.NewPipeline(s.config, options)
2017-06-30 18:53:34 +02:00
ctx := pluginContext{s.pipeline.TemplateEngine()}
for _, name := range s.config.Plugins {
if !plugins.Install(name, ctx) {
fmt.Printf("warning: gojekyll does not emulate the %s plugin.\n", name)
}
}
2017-06-29 13:27:43 +02:00
return
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 {
// 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 {
2017-06-13 18:38:06 +02:00
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
}
}