page: Add GetPage function

This commit is contained in:
adnano 2022-06-27 14:15:10 -04:00
parent 315ff5eaac
commit 299aa6cb5c
3 changed files with 32 additions and 22 deletions

View file

@ -13,7 +13,6 @@ import (
func (s *Site) funcs() map[string]interface{} { func (s *Site) funcs() map[string]interface{} {
return map[string]interface{}{ return map[string]interface{}{
"exec": executeString, "exec": executeString,
"page": s.page,
"path": func() _path { return _path{} }, "path": func() _path { return _path{} },
"partial": s.templates.ExecutePartial, "partial": s.templates.ExecutePartial,
"reverse": reverse, "reverse": reverse,

49
page.go
View file

@ -31,6 +31,7 @@ type Page struct {
Next *Page `yaml:"-"` Next *Page `yaml:"-"`
Pages []*Page `yaml:"-"` Pages []*Page `yaml:"-"`
Dirs []*Page `yaml:"-"` Dirs []*Page `yaml:"-"`
pages map[string]*Page
feeds map[string][]byte feeds map[string][]byte
index bool index bool
} }
@ -64,6 +65,7 @@ func (p *Page) _read(fsys fs.FS, path string, task *Task, cfg *Site) error {
return err return err
} }
p.Dirs = append(p.Dirs, dir) p.Dirs = append(p.Dirs, dir)
p.addPage(name, dir)
} else if ext := pathpkg.Ext(name); task.Match(ext) { } else if ext := pathpkg.Ext(name); task.Match(ext) {
// Ignore pages beginning with "_" with the exception of _index pages // Ignore pages beginning with "_" with the exception of _index pages
namePrefix := strings.TrimSuffix(name, ext) namePrefix := strings.TrimSuffix(name, ext)
@ -163,12 +165,20 @@ func (p *Page) _read(fsys fs.FS, path string, task *Task, cfg *Site) error {
} }
page.URL = task.URL + page.Path page.URL = task.URL + page.Path
p.Pages = append(p.Pages, page) p.Pages = append(p.Pages, page)
p.addPage(name, page)
} }
} }
} }
return nil return nil
} }
func (p *Page) addPage(name string, page *Page) {
if p.pages == nil {
p.pages = map[string]*Page{}
}
p.pages[name] = page
}
// process processes the directory's contents. // process processes the directory's contents.
func (p *Page) process(cfg *Site, task *Task) error { func (p *Page) process(cfg *Site, task *Task) error {
// Build feeds before templates are applied to the page contents // Build feeds before templates are applied to the page contents
@ -369,25 +379,30 @@ func execute(command []string, input io.Reader, output io.Writer) error {
return nil return nil
} }
func (p *Page) getPage(path string) *Page { // GetPage returns the page with the given path.
// XXX: This is inefficient func (p *Page) GetPage(path string) *Page {
if p.Path == path { path = pathpkg.Clean(path)
if path == "." {
return p return p
} }
for _, page := range p.Pages { if strings.HasPrefix(path, "/") {
if page.FilePath == path { path = strings.TrimPrefix(path, "/")
return page if p.FilePath != "." && !strings.HasPrefix(path, p.FilePath) {
return nil
}
path = strings.TrimPrefix(path, p.FilePath)
if path == "" {
return p
}
path = strings.TrimPrefix(path, "/")
}
page := p
for _, part := range strings.Split(path, "/") {
page = page.pages[part]
if page == nil {
break
} }
} }
for _, dir := range p.Dirs { return page
if dir.Path == path {
return dir
}
}
for _, dir := range p.Dirs {
if page := dir.getPage(path); page != nil {
return page
}
}
return nil
} }

View file

@ -125,7 +125,3 @@ func LoadSite(config string) (*Site, error) {
return site, nil return site, nil
} }
func (s *Site) page(path string) *Page {
return s.Root.getPage(path)
}