hugo/hugolib/site.go

663 lines
15 KiB
Go
Raw Normal View History

2013-07-04 15:32:55 +00:00
// Copyright © 2013 Steve Francia <spf@spf13.com>.
//
// Licensed under the Simple Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://opensource.org/licenses/Simple-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package hugolib
import (
"bitbucket.org/pkg/inflect"
"bytes"
"fmt"
"github.com/spf13/hugo/source"
"github.com/spf13/hugo/target"
helpers "github.com/spf13/hugo/template"
"github.com/spf13/hugo/template/bundle"
"github.com/spf13/hugo/transform"
2013-07-04 15:32:55 +00:00
"github.com/spf13/nitro"
"html/template"
"io"
2013-07-04 15:32:55 +00:00
"os"
"path"
2013-07-04 15:32:55 +00:00
"strings"
"time"
)
var DefaultTimer = nitro.Initalize()
func MakePermalink(domain string, path string) string {
return strings.TrimRight(domain, "/") + "/" + strings.TrimLeft(path, "/")
}
func mkdirIf(path string) error {
return os.MkdirAll(path, 0777)
}
func FatalErr(str string) {
fmt.Println(str)
os.Exit(1)
}
func PrintErr(str string, a ...interface{}) {
fmt.Fprintln(os.Stderr, str, a)
}
2013-09-01 04:13:04 +00:00
// Site contains all the information relevent for constructing a static
// site. The basic flow of information is as follows:
//
// 1. A list of Files is parsed and then converted into Pages.
//
// 2. Pages contain sections (based on the file they were generated from),
// aliases and slugs (included in a pages frontmatter) which are the
// various targets that will get generated. There will be canonical
// listing.
//
// 3. Indexes are created via configuration and will present some aspect of
// the final page and typically a perm url.
//
// 4. All Pages are passed through a template based on their desired
// layout based on numerous different elements.
//
// 5. The entire collection of files is written to disk.
2013-07-04 15:32:55 +00:00
type Site struct {
Config Config
Pages Pages
Tmpl bundle.Template
Indexes IndexList
Source source.Input
Sections Index
Info SiteInfo
Shortcodes map[string]ShortcodeFunc
timer *nitro.B
Transformer *transform.Transformer
Target target.Output
Alias target.AliasPublisher
2013-07-04 15:32:55 +00:00
}
type SiteInfo struct {
BaseUrl template.URL
Indexes OrderedIndexList
2013-07-04 15:32:55 +00:00
Recent *Pages
LastChange time.Time
Title string
2013-07-26 13:51:07 +00:00
Config *Config
2013-07-04 15:32:55 +00:00
}
func (s *Site) getFromIndex(kind string, name string) Pages {
return s.Indexes[kind][name]
}
func (s *Site) timerStep(step string) {
if s.timer == nil {
s.timer = DefaultTimer
}
s.timer.Step(step)
2013-07-04 15:32:55 +00:00
}
func (s *Site) Build() (err error) {
if err = s.Process(); err != nil {
return
}
if err = s.Render(); err != nil {
2013-09-01 04:13:04 +00:00
fmt.Printf("Error rendering site: %s\nAvailable templates:\n", err)
for _, template := range s.Tmpl.Templates() {
fmt.Printf("\t%s\n", template.Name())
}
return
}
return nil
2013-07-04 15:32:55 +00:00
}
func (s *Site) Analyze() {
s.Process()
2013-09-04 03:52:50 +00:00
s.initTarget()
s.Alias = &target.HTMLRedirectAlias{
PublishDir: s.absPublishDir(),
}
2013-09-04 03:52:50 +00:00
s.ShowPlan(os.Stdout)
2013-07-04 15:32:55 +00:00
}
func (s *Site) prepTemplates() {
s.Tmpl = bundle.NewTemplate()
s.Tmpl.LoadTemplates(s.absLayoutDir())
}
func (s *Site) addTemplate(name, data string) error {
return s.Tmpl.AddTemplate(name, data)
}
func (s *Site) Process() (err error) {
s.initialize()
s.prepTemplates()
s.timerStep("initialize & template prep")
if err = s.CreatePages(); err != nil {
return err
}
s.setupPrevNext()
s.timerStep("import pages")
if err = s.BuildSiteMeta(); err != nil {
return
}
s.timerStep("build indexes")
return
2013-07-04 15:32:55 +00:00
}
func (s *Site) Render() (err error) {
if err = s.RenderAliases(); err != nil {
return
}
s.timerStep("render and write aliases")
s.ProcessShortcodes()
s.timerStep("render shortcodes")
s.timerStep("absolute URLify")
if err = s.RenderIndexes(); err != nil {
return
}
s.RenderIndexesIndexes()
s.timerStep("render and write indexes")
s.RenderLists()
s.timerStep("render and write lists")
if err = s.RenderPages(); err != nil {
return
}
s.timerStep("render and write pages")
if err = s.RenderHomePage(); err != nil {
return
}
s.timerStep("render and write homepage")
return
2013-07-04 15:32:55 +00:00
}
func (s *Site) checkDescriptions() {
for _, p := range s.Pages {
2013-07-04 15:32:55 +00:00
if len(p.Description) < 60 {
2013-09-04 03:52:50 +00:00
fmt.Println(p.FileName + " ")
2013-07-04 15:32:55 +00:00
}
}
}
func (s *Site) initialize() {
s.checkDirectories()
staticDir := s.Config.GetAbsPath(s.Config.StaticDir + "/")
s.Source = &source.Filesystem{
AvoidPaths: []string{staticDir},
Base: s.absContentDir(),
2013-07-04 15:32:55 +00:00
}
2013-09-12 23:17:53 +00:00
s.initializeSiteInfo()
s.Shortcodes = make(map[string]ShortcodeFunc)
}
func (s *Site) initializeSiteInfo() {
2013-08-13 12:43:42 +00:00
s.Info = SiteInfo{
BaseUrl: template.URL(s.Config.BaseUrl),
2013-08-13 12:43:42 +00:00
Title: s.Config.Title,
Recent: &s.Pages,
Config: &s.Config,
}
2013-07-04 15:32:55 +00:00
}
// Check if File / Directory Exists
func exists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return false, err
}
func (s *Site) absLayoutDir() string {
return s.Config.GetAbsPath(s.Config.LayoutDir)
}
func (s *Site) absContentDir() string {
return s.Config.GetAbsPath(s.Config.ContentDir)
}
func (s *Site) absPublishDir() string {
return s.Config.GetAbsPath(s.Config.PublishDir)
}
2013-07-04 15:32:55 +00:00
func (s *Site) checkDirectories() {
if b, _ := dirExists(s.absLayoutDir()); !b {
FatalErr("No layout directory found, expecting to find it at " + s.absLayoutDir())
2013-07-04 15:32:55 +00:00
}
if b, _ := dirExists(s.absContentDir()); !b {
FatalErr("No source directory found, expecting to find it at " + s.absContentDir())
2013-07-04 15:32:55 +00:00
}
mkdirIf(s.absPublishDir())
2013-07-04 15:32:55 +00:00
}
func (s *Site) ProcessShortcodes() {
for _, page := range s.Pages {
page.Content = template.HTML(ShortcodesHandle(string(page.Content), page, s.Tmpl))
2013-07-04 15:32:55 +00:00
}
}
func (s *Site) CreatePages() (err error) {
for _, file := range s.Source.Files() {
page, err := ReadFrom(file.Contents, file.Name)
if err != nil {
return err
}
2013-07-04 15:32:55 +00:00
page.Site = s.Info
page.Tmpl = s.Tmpl
if err = s.setUrlPath(page); err != nil {
return err
}
s.setOutFile(page)
if s.Config.BuildDrafts || !page.Draft {
2013-07-04 15:32:55 +00:00
s.Pages = append(s.Pages, page)
}
}
s.Pages.Sort()
return
2013-07-04 15:32:55 +00:00
}
2013-08-02 20:30:26 +00:00
func (s *Site) setupPrevNext() {
for i, page := range s.Pages {
2013-08-02 20:30:26 +00:00
if i < len(s.Pages)-1 {
page.Next = s.Pages[i+1]
2013-08-02 20:30:26 +00:00
}
if i > 0 {
page.Prev = s.Pages[i-1]
2013-08-02 20:30:26 +00:00
}
}
}
func (s *Site) setUrlPath(p *Page) error {
y := strings.TrimPrefix(p.FileName, s.absContentDir())
x := strings.Split(y, "/")
if len(x) <= 1 {
return fmt.Errorf("Zero length page name. filename: %s", y)
}
p.Section = strings.Trim(x[1], "/")
p.Path = path.Join(x[:len(x)-1]...)
return nil
}
// If Url is provided it is assumed to be the complete relative path
// and will override everything
// Otherwise path + slug is used if provided
// Lastly path + filename is used if provided
func (s *Site) setOutFile(p *Page) {
// Always use Url if it's specified
if len(strings.TrimSpace(p.Url)) > 2 {
p.OutFile = strings.TrimSpace(p.Url)
if strings.HasSuffix(p.OutFile, "/") {
p.OutFile = p.OutFile + "index.html"
}
return
}
var outfile string
if len(strings.TrimSpace(p.Slug)) > 0 {
outfile = strings.TrimSpace(p.Slug) + "." + p.Extension
} else {
// Fall back to filename
_, t := path.Split(p.FileName)
outfile = replaceExtension(strings.TrimSpace(t), p.Extension)
}
p.OutFile = p.Path + "/" + strings.TrimSpace(outfile)
}
func (s *Site) BuildSiteMeta() (err error) {
2013-07-04 15:32:55 +00:00
s.Indexes = make(IndexList)
s.Sections = make(Index)
for _, plural := range s.Config.Indexes {
2013-07-04 15:32:55 +00:00
s.Indexes[plural] = make(Index)
for _, p := range s.Pages {
2013-07-04 15:32:55 +00:00
vals := p.GetParam(plural)
if vals != nil {
v, ok := vals.([]string)
if ok {
for _, idx := range v {
s.Indexes[plural].Add(idx, p)
}
} else {
PrintErr("Invalid " + plural + " in " + p.File.FileName)
2013-07-04 15:32:55 +00:00
}
}
}
for k, _ := range s.Indexes[plural] {
s.Indexes[plural][k].Sort()
}
}
for _, p := range s.Pages {
s.Sections.Add(p.Section, p)
2013-07-04 15:32:55 +00:00
}
for k, _ := range s.Sections {
s.Sections[k].Sort()
}
s.Info.Indexes = s.Indexes.BuildOrderedIndexList()
if len(s.Pages) == 0 {
return
}
2013-07-04 15:32:55 +00:00
s.Info.LastChange = s.Pages[0].Date
// populate pages with site metadata
for _, p := range s.Pages {
p.Site = s.Info
}
return
2013-07-04 15:32:55 +00:00
}
2013-08-13 17:46:05 +00:00
func (s *Site) possibleIndexes() (indexes []string) {
for _, p := range s.Pages {
for k, _ := range p.Params {
if !inStringArray(indexes, k) {
indexes = append(indexes, k)
}
}
}
return
}
func inStringArray(arr []string, el string) bool {
for _, v := range arr {
if v == el {
return true
}
}
return false
}
2013-08-10 14:35:34 +00:00
func (s *Site) RenderAliases() error {
for _, p := range s.Pages {
2013-08-10 14:35:34 +00:00
for _, a := range p.Aliases {
if err := s.WriteAlias(a, p.Permalink()); err != nil {
2013-08-31 04:24:25 +00:00
return err
}
2013-08-10 14:35:34 +00:00
}
}
return nil
}
func (s *Site) RenderPages() (err error) {
for _, p := range s.Pages {
var layout string
if !p.IsRenderable() {
layout = "__" + p.FileName
_, err := s.Tmpl.New(layout).Parse(string(p.Content))
if err != nil {
return err
}
} else {
layout = p.Layout()
}
content, err := s.RenderThingOrDefault(p, layout, "_default/single.html")
if err != nil {
return err
}
err = s.WritePublic(p.OutFile, content)
2013-08-31 04:24:25 +00:00
if err != nil {
return err
2013-08-31 04:24:25 +00:00
}
2013-07-04 15:32:55 +00:00
}
return nil
2013-07-04 15:32:55 +00:00
}
func (s *Site) RenderIndexes() error {
for singular, plural := range s.Config.Indexes {
2013-07-04 15:32:55 +00:00
for k, o := range s.Indexes[plural] {
n := s.NewNode()
n.Title = strings.Title(k)
url := helpers.Urlize(plural + "/" + k)
n.Url = url + ".html"
plink := n.Url
n.Permalink = permalink(s, plink)
n.RSSlink = permalink(s, url+".xml")
2013-07-04 15:32:55 +00:00
n.Date = o[0].Date
n.Data[singular] = o
n.Data["Pages"] = o
layout := "indexes/" + singular + ".html"
x, err := s.RenderThing(n, layout)
if err != nil {
return err
}
var base string
base = plural + "/" + k
err = s.WritePublic(base+".html", x)
2013-08-31 04:24:25 +00:00
if err != nil {
return err
}
2013-07-04 15:32:55 +00:00
if a := s.Tmpl.Lookup("rss.xml"); a != nil {
// XML Feed
y := s.NewXMLBuffer()
n.Url = helpers.Urlize(plural + "/" + k + ".xml")
n.Permalink = permalink(s, n.Url)
2013-07-04 15:32:55 +00:00
s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
err = s.WritePublic(base+".xml", y)
2013-08-31 04:24:25 +00:00
if err != nil {
return err
}
2013-07-04 15:32:55 +00:00
}
}
}
return nil
2013-07-04 15:32:55 +00:00
}
func (s *Site) RenderIndexesIndexes() (err error) {
layout := "indexes/indexes.html"
if s.Tmpl.Lookup(layout) != nil {
for singular, plural := range s.Config.Indexes {
n := s.NewNode()
n.Title = strings.Title(plural)
url := helpers.Urlize(plural)
n.Url = url + "/index.html"
n.Permalink = permalink(s, n.Url)
n.Data["Singular"] = singular
n.Data["Plural"] = plural
n.Data["Index"] = s.Indexes[plural]
n.Data["OrderedIndex"] = s.Info.Indexes[plural]
x, err := s.RenderThing(n, layout)
2013-08-31 04:24:25 +00:00
if err != nil {
return err
}
err = s.WritePublic(plural+"/index.html", x)
2013-08-31 04:24:25 +00:00
if err != nil {
return err
}
}
}
return
}
func (s *Site) RenderLists() error {
2013-07-04 15:32:55 +00:00
for section, data := range s.Sections {
n := s.NewNode()
n.Title = strings.Title(inflect.Pluralize(section))
n.Url = helpers.Urlize(section + "/" + "index.html")
n.Permalink = permalink(s, n.Url)
n.RSSlink = permalink(s, section+".xml")
2013-07-04 15:32:55 +00:00
n.Date = data[0].Date
n.Data["Pages"] = data
layout := "indexes/" + section + ".html"
2013-07-04 15:32:55 +00:00
content, err := s.RenderThingOrDefault(n, layout, "_default/index.html")
if err != nil {
return err
}
err = s.WritePublic(section, content)
2013-08-31 04:24:25 +00:00
if err != nil {
return err
}
2013-07-04 15:32:55 +00:00
if a := s.Tmpl.Lookup("rss.xml"); a != nil {
// XML Feed
2013-09-04 03:52:50 +00:00
n.Url = helpers.Urlize(section + ".xml")
n.Permalink = template.HTML(string(n.Site.BaseUrl) + n.Url)
2013-07-04 15:32:55 +00:00
y := s.NewXMLBuffer()
s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
err = s.WritePublic(section+"/index.xml", y)
2013-08-31 04:24:25 +00:00
return err
2013-07-04 15:32:55 +00:00
}
}
return nil
2013-07-04 15:32:55 +00:00
}
func (s *Site) RenderHomePage() error {
2013-07-04 15:32:55 +00:00
n := s.NewNode()
n.Title = n.Site.Title
n.Url = helpers.Urlize(string(n.Site.BaseUrl))
n.RSSlink = permalink(s, "index.xml")
n.Permalink = permalink(s, "")
if len(s.Pages) > 0 {
n.Date = s.Pages[0].Date
if len(s.Pages) < 9 {
n.Data["Pages"] = s.Pages
} else {
n.Data["Pages"] = s.Pages[:9]
}
2013-07-04 15:32:55 +00:00
}
x, err := s.RenderThing(n, "index.html")
if err != nil {
return err
}
err = s.WritePublic("/", x)
2013-08-31 04:24:25 +00:00
if err != nil {
return err
}
2013-07-04 15:32:55 +00:00
if a := s.Tmpl.Lookup("rss.xml"); a != nil {
// XML Feed
n.Url = helpers.Urlize("index.xml")
n.Title = "Recent Content"
n.Permalink = permalink(s, "index.xml")
2013-07-04 15:32:55 +00:00
y := s.NewXMLBuffer()
s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
err = s.WritePublic("index.xml", y)
2013-08-31 04:24:25 +00:00
return err
2013-07-04 15:32:55 +00:00
}
if a := s.Tmpl.Lookup("404.html"); a != nil {
n.Url = helpers.Urlize("404.html")
n.Title = "404 Page not found"
n.Permalink = permalink(s, "404.html")
x, err := s.RenderThing(n, "404.html")
if err != nil {
return err
}
err = s.WritePublic("404.html", x)
2013-08-31 04:24:25 +00:00
return err
}
return nil
2013-07-04 15:32:55 +00:00
}
func (s *Site) Stats() {
fmt.Printf("%d pages created \n", len(s.Pages))
for _, pl := range s.Config.Indexes {
fmt.Printf("%d %s index created\n", len(s.Indexes[pl]), pl)
2013-07-04 15:32:55 +00:00
}
}
func permalink(s *Site, plink string) template.HTML {
return template.HTML(MakePermalink(string(s.Info.BaseUrl), plink))
}
func (s *Site) NewNode() *Node {
return &Node{
Data: make(map[string]interface{}),
Site: s.Info,
}
2013-07-04 15:32:55 +00:00
}
func (s *Site) RenderThing(d interface{}, layout string) (*bytes.Buffer, error) {
if s.Tmpl.Lookup(layout) == nil {
return nil, fmt.Errorf("Layout not found: %s", layout)
}
2013-07-04 15:32:55 +00:00
buffer := new(bytes.Buffer)
err := s.Tmpl.ExecuteTemplate(buffer, layout, d)
return buffer, err
2013-07-04 15:32:55 +00:00
}
func (s *Site) RenderThingOrDefault(d interface{}, layout string, defaultLayout string) (*bytes.Buffer, error) {
content, err := s.RenderThing(d, layout)
if err != nil {
var err2 error
content, err2 = s.RenderThing(d, defaultLayout)
if err2 == nil {
return content, err2
}
}
return content, err
}
2013-07-04 15:32:55 +00:00
func (s *Site) NewXMLBuffer() *bytes.Buffer {
header := "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>\n"
return bytes.NewBufferString(header)
}
2013-09-04 03:52:50 +00:00
func (s *Site) initTarget() {
if s.Target == nil {
s.Target = &target.Filesystem{
PublishDir: s.absPublishDir(),
UglyUrls: s.Config.UglyUrls,
}
}
2013-09-04 03:52:50 +00:00
}
func (s *Site) WritePublic(path string, content io.Reader) (err error) {
2013-09-04 03:52:50 +00:00
s.initTarget()
if s.Config.Verbose {
fmt.Println(path)
2013-07-04 15:32:55 +00:00
}
if s.Transformer == nil {
s.Transformer = &transform.Transformer{BaseURL: s.Config.BaseUrl}
}
final := new(bytes.Buffer)
s.Transformer.Apply(content, final)
return s.Target.Publish(path, final)
2013-07-04 15:32:55 +00:00
}
2013-09-12 23:17:53 +00:00
func (s *Site) WriteAlias(path string, permalink template.HTML) (err error) {
2013-09-12 23:17:53 +00:00
if s.Alias == nil {
s.initTarget()
s.Alias = &target.HTMLRedirectAlias{
PublishDir: s.absPublishDir(),
}
2013-09-12 23:17:53 +00:00
}
if s.Config.Verbose {
fmt.Println(path)
}
return s.Alias.Publish(path, permalink)
2013-09-12 23:17:53 +00:00
}