mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 08:44:41 +01:00
71 lines
1.8 KiB
Go
71 lines
1.8 KiB
Go
package pages
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/osteele/gojekyll/frontmatter"
|
|
"github.com/osteele/gojekyll/templates"
|
|
)
|
|
|
|
// file is embedded in StaticFile and page
|
|
type file struct {
|
|
site Site
|
|
filename string // target filepath
|
|
relpath string // slash-separated path relative to site or container source
|
|
outputExt string
|
|
permalink string // cached permalink
|
|
fileModTime time.Time
|
|
frontMatter map[string]interface{}
|
|
}
|
|
|
|
// NewFile creates a Page or StaticFile.
|
|
//
|
|
// filename is the absolute filename. relpath is the path relative to the site or collection directory.
|
|
func NewFile(s Site, filename string, relpath string, defaults map[string]interface{}) (Document, error) {
|
|
fm, err := frontmatter.FileHasFrontMatter(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
info, err := os.Stat(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
fields := file{
|
|
site: s,
|
|
filename: filename,
|
|
frontMatter: defaults,
|
|
fileModTime: info.ModTime(),
|
|
relpath: relpath,
|
|
outputExt: s.OutputExt(relpath),
|
|
}
|
|
if fm || !s.Config().RequiresFrontMatter(relpath) {
|
|
return makePage(filename, fields)
|
|
}
|
|
fields.permalink = "/" + relpath
|
|
p := &StaticFile{fields}
|
|
return p, nil
|
|
}
|
|
|
|
func (f *file) String() string {
|
|
return fmt.Sprintf("%T{Path=%v, Permalink=%v}", f, f.relpath, f.permalink)
|
|
}
|
|
|
|
func (f *file) OutputExt() string { return f.outputExt }
|
|
func (f *file) Permalink() string { return f.permalink }
|
|
func (f *file) Published() bool { return templates.VariableMap(f.frontMatter).Bool("published", true) }
|
|
func (f *file) SourcePath() string { return f.filename }
|
|
|
|
// const requiresReloadError = error.Error("requires reload")
|
|
|
|
func (f *file) Reload() error {
|
|
info, err := os.Stat(f.filename)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
f.fileModTime = info.ModTime()
|
|
return nil
|
|
}
|