2017-03-06 05:20:30 -05:00
|
|
|
// Copyright 2017-present The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache 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://www.apache.org/licenses/LICENSE-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 output
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"path"
|
|
|
|
"strings"
|
2017-03-18 11:46:10 -04:00
|
|
|
"sync"
|
2017-03-06 05:20:30 -05:00
|
|
|
)
|
|
|
|
|
2017-03-16 03:58:50 -04:00
|
|
|
// LayoutDescriptor describes how a layout should be chosen. This is
|
|
|
|
// typically built from a Page.
|
|
|
|
type LayoutDescriptor struct {
|
|
|
|
Type string
|
|
|
|
Section string
|
|
|
|
Kind string
|
|
|
|
Layout string
|
2017-03-06 05:20:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Layout calculates the layout template to use to render a given output type.
|
2017-03-06 07:18:33 -05:00
|
|
|
type LayoutHandler struct {
|
2017-03-06 13:54:46 -05:00
|
|
|
hasTheme bool
|
2017-03-18 11:46:10 -04:00
|
|
|
|
|
|
|
mu sync.RWMutex
|
|
|
|
cache map[layoutCacheKey][]string
|
|
|
|
}
|
|
|
|
|
|
|
|
type layoutCacheKey struct {
|
|
|
|
d LayoutDescriptor
|
|
|
|
layoutOverride string
|
|
|
|
f Format
|
2017-03-06 13:54:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewLayoutHandler(hasTheme bool) *LayoutHandler {
|
2017-03-18 11:46:10 -04:00
|
|
|
return &LayoutHandler{hasTheme: hasTheme, cache: make(map[layoutCacheKey][]string)}
|
2017-03-06 05:20:30 -05:00
|
|
|
}
|
|
|
|
|
2017-03-25 12:46:09 -04:00
|
|
|
// RSS:
|
|
|
|
// Home:"rss.xml", "_default/rss.xml", "_internal/_default/rss.xml"
|
|
|
|
// Section: "section/" + section + ".rss.xml", "_default/rss.xml", "rss.xml", "_internal/_default/rss.xml"
|
|
|
|
// Taxonomy "taxonomy/" + singular + ".rss.xml", "_default/rss.xml", "rss.xml", "_internal/_default/rss.xml"
|
|
|
|
// Tax term: taxonomy/" + singular + ".terms.rss.xml", "_default/rss.xml", "rss.xml", "_internal/_default/rss.xml"
|
|
|
|
|
2017-03-07 11:26:22 -05:00
|
|
|
const (
|
2017-03-25 12:46:09 -04:00
|
|
|
|
|
|
|
// The RSS templates doesn't map easily into the regular pages.
|
|
|
|
layoutsRSSHome = `NAME.SUFFIX _default/NAME.SUFFIX _internal/_default/rss.xml`
|
|
|
|
layoutsRSSSection = `section/SECTION.NAME.SUFFIX _default/NAME.SUFFIX NAME.SUFFIX _internal/_default/rss.xml`
|
|
|
|
layoutsRSSTaxonomy = `taxonomy/SECTION.NAME.SUFFIX _default/NAME.SUFFIX NAME.SUFFIX _internal/_default/rss.xml`
|
|
|
|
layoutsRSSTaxonomyTerm = `taxonomy/SECTION.terms.NAME.SUFFIX _default/NAME.SUFFIX NAME.SUFFIX _internal/_default/rss.xml`
|
|
|
|
|
2017-03-07 11:26:22 -05:00
|
|
|
layoutsHome = "index.NAME.SUFFIX index.SUFFIX _default/list.NAME.SUFFIX _default/list.SUFFIX"
|
|
|
|
layoutsSection = `
|
|
|
|
section/SECTION.NAME.SUFFIX section/SECTION.SUFFIX
|
|
|
|
SECTION/list.NAME.SUFFIX SECTION/list.SUFFIX
|
|
|
|
_default/section.NAME.SUFFIX _default/section.SUFFIX
|
|
|
|
_default/list.NAME.SUFFIX _default/list.SUFFIX
|
|
|
|
indexes/SECTION.NAME.SUFFIX indexes/SECTION.SUFFIX
|
|
|
|
_default/indexes.NAME.SUFFIX _default/indexes.SUFFIX
|
|
|
|
`
|
2017-03-25 12:46:09 -04:00
|
|
|
layoutsTaxonomy = `
|
2017-03-07 11:26:22 -05:00
|
|
|
taxonomy/SECTION.NAME.SUFFIX taxonomy/SECTION.SUFFIX
|
|
|
|
indexes/SECTION.NAME.SUFFIX indexes/SECTION.SUFFIX
|
|
|
|
_default/taxonomy.NAME.SUFFIX _default/taxonomy.SUFFIX
|
|
|
|
_default/list.NAME.SUFFIX _default/list.SUFFIX
|
|
|
|
`
|
2017-03-25 12:46:09 -04:00
|
|
|
layoutsTaxonomyTerm = `
|
2017-03-07 11:26:22 -05:00
|
|
|
taxonomy/SECTION.terms.NAME.SUFFIX taxonomy/SECTION.terms.SUFFIX
|
|
|
|
_default/terms.NAME.SUFFIX _default/terms.SUFFIX
|
|
|
|
indexes/indexes.NAME.SUFFIX indexes/indexes.SUFFIX
|
|
|
|
`
|
2017-03-06 05:20:30 -05:00
|
|
|
)
|
|
|
|
|
2017-03-16 03:58:50 -04:00
|
|
|
func (l *LayoutHandler) For(d LayoutDescriptor, layoutOverride string, f Format) []string {
|
2017-03-18 11:46:10 -04:00
|
|
|
|
|
|
|
// We will get lots of requests for the same layouts, so avoid recalculations.
|
|
|
|
key := layoutCacheKey{d, layoutOverride, f}
|
|
|
|
l.mu.RLock()
|
|
|
|
if cacheVal, found := l.cache[key]; found {
|
|
|
|
l.mu.RUnlock()
|
|
|
|
return cacheVal
|
|
|
|
}
|
|
|
|
l.mu.RUnlock()
|
|
|
|
|
2017-03-06 05:20:30 -05:00
|
|
|
var layouts []string
|
|
|
|
|
2017-03-16 03:58:50 -04:00
|
|
|
layout := d.Layout
|
2017-03-06 07:18:33 -05:00
|
|
|
|
|
|
|
if layoutOverride != "" {
|
|
|
|
layout = layoutOverride
|
|
|
|
}
|
|
|
|
|
2017-03-25 12:46:09 -04:00
|
|
|
isRSS := f.Name == RSSType.Name
|
|
|
|
|
|
|
|
if d.Kind == "page" {
|
|
|
|
if isRSS {
|
|
|
|
return []string{}
|
|
|
|
}
|
2017-03-16 03:58:50 -04:00
|
|
|
layouts = regularPageLayouts(d.Type, layout, f)
|
2017-03-25 12:46:09 -04:00
|
|
|
} else {
|
|
|
|
if isRSS {
|
|
|
|
layouts = resolveListTemplate(d, f,
|
|
|
|
layoutsRSSHome,
|
|
|
|
layoutsRSSSection,
|
|
|
|
layoutsRSSTaxonomy,
|
|
|
|
layoutsRSSTaxonomyTerm)
|
|
|
|
} else {
|
|
|
|
layouts = resolveListTemplate(d, f,
|
|
|
|
layoutsHome,
|
|
|
|
layoutsSection,
|
|
|
|
layoutsTaxonomy,
|
|
|
|
layoutsTaxonomyTerm)
|
|
|
|
}
|
2017-03-06 05:20:30 -05:00
|
|
|
}
|
|
|
|
|
2017-03-06 13:54:46 -05:00
|
|
|
if l.hasTheme {
|
|
|
|
layoutsWithThemeLayouts := []string{}
|
|
|
|
// First place all non internal templates
|
|
|
|
for _, t := range layouts {
|
|
|
|
if !strings.HasPrefix(t, "_internal/") {
|
|
|
|
layoutsWithThemeLayouts = append(layoutsWithThemeLayouts, t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Then place theme templates with the same names
|
|
|
|
for _, t := range layouts {
|
|
|
|
if !strings.HasPrefix(t, "_internal/") {
|
|
|
|
layoutsWithThemeLayouts = append(layoutsWithThemeLayouts, "theme/"+t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lastly place internal templates
|
|
|
|
for _, t := range layouts {
|
|
|
|
if strings.HasPrefix(t, "_internal/") {
|
|
|
|
layoutsWithThemeLayouts = append(layoutsWithThemeLayouts, t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return layoutsWithThemeLayouts
|
2017-03-06 05:20:30 -05:00
|
|
|
}
|
|
|
|
|
2017-03-18 11:46:10 -04:00
|
|
|
l.mu.Lock()
|
|
|
|
l.cache[key] = layouts
|
|
|
|
l.mu.Unlock()
|
|
|
|
|
2017-03-06 05:20:30 -05:00
|
|
|
return layouts
|
|
|
|
}
|
|
|
|
|
2017-03-25 12:46:09 -04:00
|
|
|
func resolveListTemplate(d LayoutDescriptor, f Format,
|
|
|
|
homeLayouts,
|
|
|
|
sectionLayouts,
|
|
|
|
taxonomyLayouts,
|
|
|
|
taxonomyTermLayouts string) []string {
|
|
|
|
var layouts []string
|
|
|
|
|
|
|
|
switch d.Kind {
|
|
|
|
case "home":
|
|
|
|
layouts = resolveTemplate(homeLayouts, d, f)
|
|
|
|
case "section":
|
|
|
|
layouts = resolveTemplate(sectionLayouts, d, f)
|
|
|
|
case "taxonomy":
|
|
|
|
layouts = resolveTemplate(taxonomyLayouts, d, f)
|
|
|
|
case "taxonomyTerm":
|
|
|
|
layouts = resolveTemplate(taxonomyTermLayouts, d, f)
|
|
|
|
}
|
|
|
|
|
|
|
|
return layouts
|
|
|
|
}
|
|
|
|
|
2017-03-16 03:58:50 -04:00
|
|
|
func resolveTemplate(templ string, d LayoutDescriptor, f Format) []string {
|
2017-03-07 11:26:22 -05:00
|
|
|
return strings.Fields(replaceKeyValues(templ,
|
2017-03-16 03:32:14 -04:00
|
|
|
"SUFFIX", f.MediaType.Suffix,
|
|
|
|
"NAME", strings.ToLower(f.Name),
|
2017-03-16 03:58:50 -04:00
|
|
|
"SECTION", d.Section))
|
2017-03-07 11:26:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func replaceKeyValues(s string, oldNew ...string) string {
|
|
|
|
replacer := strings.NewReplacer(oldNew...)
|
|
|
|
return replacer.Replace(s)
|
|
|
|
}
|
|
|
|
|
2017-03-16 03:32:14 -04:00
|
|
|
func regularPageLayouts(types string, layout string, f Format) (layouts []string) {
|
2017-03-06 05:20:30 -05:00
|
|
|
if layout == "" {
|
|
|
|
layout = "single"
|
|
|
|
}
|
|
|
|
|
2017-03-16 03:32:14 -04:00
|
|
|
suffix := f.MediaType.Suffix
|
|
|
|
name := strings.ToLower(f.Name)
|
2017-03-07 11:26:22 -05:00
|
|
|
|
2017-03-06 05:20:30 -05:00
|
|
|
if types != "" {
|
|
|
|
t := strings.Split(types, "/")
|
|
|
|
|
|
|
|
// Add type/layout.html
|
|
|
|
for i := range t {
|
|
|
|
search := t[:len(t)-i]
|
2017-03-07 11:26:22 -05:00
|
|
|
layouts = append(layouts, fmt.Sprintf("%s/%s.%s.%s", strings.ToLower(path.Join(search...)), layout, name, suffix))
|
|
|
|
layouts = append(layouts, fmt.Sprintf("%s/%s.%s", strings.ToLower(path.Join(search...)), layout, suffix))
|
|
|
|
|
2017-03-06 05:20:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add _default/layout.html
|
2017-03-07 11:26:22 -05:00
|
|
|
layouts = append(layouts, fmt.Sprintf("_default/%s.%s.%s", layout, name, suffix))
|
|
|
|
layouts = append(layouts, fmt.Sprintf("_default/%s.%s", layout, suffix))
|
2017-03-06 05:20:30 -05:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|