mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 08:34:42 +01:00
92 lines
2.0 KiB
Go
92 lines
2.0 KiB
Go
package site
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/osteele/gojekyll/pages"
|
|
"github.com/osteele/gojekyll/templates"
|
|
"github.com/osteele/liquid/evaluator"
|
|
)
|
|
|
|
// ToLiquid returns the site variable for template evaluation.
|
|
func (s *Site) ToLiquid() interface{} {
|
|
if len(s.drop) > 0 {
|
|
return s.drop
|
|
}
|
|
s.Lock()
|
|
defer s.Unlock()
|
|
if len(s.drop) == 0 {
|
|
s.initializeDrop()
|
|
}
|
|
return s.drop
|
|
}
|
|
|
|
// MarshalYAML is part of the yaml.Marshaler interface
|
|
// The variables subcommand uses this.
|
|
func (s *Site) MarshalYAML() (interface{}, error) {
|
|
return s.ToLiquid(), nil
|
|
}
|
|
|
|
func (s *Site) initializeDrop() {
|
|
vars := templates.MergeVariableMaps(s.config.Variables, map[string]interface{}{
|
|
"data": s.data,
|
|
"documents": s.docs,
|
|
"html_files": s.htmlFiles(),
|
|
"html_pages": s.htmlPages(),
|
|
"pages": s.Pages(),
|
|
"static_files": s.staticFiles(),
|
|
// TODO read time from _config, if it's available
|
|
"time": time.Now(),
|
|
})
|
|
collections := []interface{}{}
|
|
for _, c := range s.Collections {
|
|
vars[c.Name] = c.Pages()
|
|
collections = append(collections, c.ToLiquid())
|
|
}
|
|
evaluator.SortByProperty(collections, "label", true)
|
|
vars["collections"] = collections
|
|
s.drop = vars
|
|
s.setPostVariables()
|
|
}
|
|
|
|
func (s *Site) setPageContent() error {
|
|
for _, c := range s.Collections {
|
|
if err := c.SetPageContent(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// The following functions are only used in the drop, therefore they're
|
|
// non-public and they're listed here.
|
|
//
|
|
// Since the drop is cached, there's no effort to cache these too.
|
|
|
|
func (s *Site) htmlFiles() (out []*pages.StaticFile) {
|
|
for _, p := range s.staticFiles() {
|
|
if p.OutputExt() == ".html" {
|
|
out = append(out, p)
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func (s *Site) htmlPages() (out []pages.Page) {
|
|
for _, p := range s.Pages() {
|
|
if p.OutputExt() == ".html" {
|
|
out = append(out, p)
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func (s *Site) staticFiles() (out []*pages.StaticFile) {
|
|
for _, d := range s.docs {
|
|
if sd, ok := d.(*pages.StaticFile); ok {
|
|
out = append(out, sd)
|
|
}
|
|
}
|
|
return
|
|
}
|