2016-10-24 16:29:48 -04:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2017-02-17 07:30:50 -05:00
|
|
|
package tplimpl
|
2016-10-24 16:29:48 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"html/template"
|
|
|
|
"strings"
|
2017-03-27 14:43:49 -04:00
|
|
|
texttemplate "text/template"
|
2016-10-24 16:29:48 -04:00
|
|
|
"text/template/parse"
|
|
|
|
)
|
|
|
|
|
|
|
|
// decl keeps track of the variable mappings, i.e. $mysite => .Site etc.
|
|
|
|
type decl map[string]string
|
|
|
|
|
2018-08-13 14:50:07 -04:00
|
|
|
const (
|
|
|
|
paramsIdentifier = "Params"
|
|
|
|
)
|
2016-10-24 16:29:48 -04:00
|
|
|
|
2018-08-13 14:50:07 -04:00
|
|
|
// Containers that may contain Params that we will not touch.
|
|
|
|
var reservedContainers = map[string]bool{
|
|
|
|
// Aka .Site.Data.Params which must stay case sensitive.
|
|
|
|
"Data": true,
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type templateContext struct {
|
2017-03-27 14:43:49 -04:00
|
|
|
decl decl
|
|
|
|
visited map[string]bool
|
|
|
|
lookupFn func(name string) *parse.Tree
|
2017-02-18 03:08:00 -05:00
|
|
|
}
|
|
|
|
|
2017-03-27 14:43:49 -04:00
|
|
|
func (c templateContext) getIfNotVisited(name string) *parse.Tree {
|
2017-02-18 03:08:00 -05:00
|
|
|
if c.visited[name] {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
c.visited[name] = true
|
2017-03-27 14:43:49 -04:00
|
|
|
return c.lookupFn(name)
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|
|
|
|
|
2017-03-27 14:43:49 -04:00
|
|
|
func newTemplateContext(lookupFn func(name string) *parse.Tree) *templateContext {
|
|
|
|
return &templateContext{lookupFn: lookupFn, decl: make(map[string]string), visited: make(map[string]bool)}
|
2016-10-24 16:29:48 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-03-27 14:43:49 -04:00
|
|
|
func createParseTreeLookup(templ *template.Template) func(nn string) *parse.Tree {
|
|
|
|
return func(nn string) *parse.Tree {
|
|
|
|
tt := templ.Lookup(nn)
|
|
|
|
if tt != nil {
|
|
|
|
return tt.Tree
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func applyTemplateTransformersToHMLTTemplate(templ *template.Template) error {
|
|
|
|
return applyTemplateTransformers(templ.Tree, createParseTreeLookup(templ))
|
|
|
|
}
|
|
|
|
|
|
|
|
func applyTemplateTransformersToTextTemplate(templ *texttemplate.Template) error {
|
|
|
|
return applyTemplateTransformers(templ.Tree,
|
|
|
|
func(nn string) *parse.Tree {
|
|
|
|
tt := templ.Lookup(nn)
|
|
|
|
if tt != nil {
|
|
|
|
return tt.Tree
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func applyTemplateTransformers(templ *parse.Tree, lookupFn func(name string) *parse.Tree) error {
|
|
|
|
if templ == nil {
|
2016-10-24 16:29:48 -04:00
|
|
|
return errors.New("expected template, but none provided")
|
|
|
|
}
|
|
|
|
|
2017-03-27 14:43:49 -04:00
|
|
|
c := newTemplateContext(lookupFn)
|
2016-10-24 16:29:48 -04:00
|
|
|
|
2017-03-27 14:43:49 -04:00
|
|
|
c.paramsKeysToLower(templ.Root)
|
2016-10-24 16:29:48 -04:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-06-23 17:07:52 -04:00
|
|
|
// paramsKeysToLower is made purposely non-generic to make it not so tempting
|
|
|
|
// to do more of these hard-to-maintain AST transformations.
|
|
|
|
func (c *templateContext) paramsKeysToLower(n parse.Node) {
|
|
|
|
switch x := n.(type) {
|
|
|
|
case *parse.ListNode:
|
|
|
|
if x != nil {
|
|
|
|
c.paramsKeysToLowerForNodes(x.Nodes...)
|
|
|
|
}
|
|
|
|
case *parse.ActionNode:
|
|
|
|
c.paramsKeysToLowerForNodes(x.Pipe)
|
|
|
|
case *parse.IfNode:
|
|
|
|
c.paramsKeysToLowerForNodes(x.Pipe, x.List, x.ElseList)
|
|
|
|
case *parse.WithNode:
|
|
|
|
c.paramsKeysToLowerForNodes(x.Pipe, x.List, x.ElseList)
|
|
|
|
case *parse.RangeNode:
|
|
|
|
c.paramsKeysToLowerForNodes(x.Pipe, x.List, x.ElseList)
|
|
|
|
case *parse.TemplateNode:
|
|
|
|
subTempl := c.getIfNotVisited(x.Name)
|
|
|
|
if subTempl != nil {
|
|
|
|
c.paramsKeysToLowerForNodes(subTempl.Root)
|
|
|
|
}
|
|
|
|
case *parse.PipeNode:
|
2018-12-19 04:25:53 -05:00
|
|
|
if len(x.Decl) == 1 && len(x.Cmds) == 1 {
|
|
|
|
// maps $site => .Site etc.
|
|
|
|
c.decl[x.Decl[0].Ident[0]] = x.Cmds[0].String()
|
2018-06-23 17:07:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, cmd := range x.Cmds {
|
|
|
|
c.paramsKeysToLower(cmd)
|
|
|
|
}
|
|
|
|
|
|
|
|
case *parse.CommandNode:
|
|
|
|
for _, elem := range x.Args {
|
|
|
|
switch an := elem.(type) {
|
|
|
|
case *parse.FieldNode:
|
|
|
|
c.updateIdentsIfNeeded(an.Ident)
|
|
|
|
case *parse.VariableNode:
|
|
|
|
c.updateIdentsIfNeeded(an.Ident)
|
|
|
|
case *parse.PipeNode:
|
|
|
|
c.paramsKeysToLower(an)
|
2019-01-18 12:48:19 -05:00
|
|
|
case *parse.ChainNode:
|
|
|
|
// site.Params...
|
|
|
|
if len(an.Field) > 1 && an.Field[0] == paramsIdentifier {
|
|
|
|
c.updateIdentsIfNeeded(an.Field)
|
|
|
|
}
|
2018-06-23 17:07:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-24 16:29:48 -04:00
|
|
|
func (c *templateContext) paramsKeysToLowerForNodes(nodes ...parse.Node) {
|
|
|
|
for _, node := range nodes {
|
|
|
|
c.paramsKeysToLower(node)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *templateContext) updateIdentsIfNeeded(idents []string) {
|
|
|
|
index := c.decl.indexOfReplacementStart(idents)
|
|
|
|
|
|
|
|
if index == -1 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := index; i < len(idents); i++ {
|
|
|
|
idents[i] = strings.ToLower(idents[i])
|
|
|
|
}
|
2018-08-13 14:50:07 -04:00
|
|
|
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// indexOfReplacementStart will return the index of where to start doing replacement,
|
|
|
|
// -1 if none needed.
|
|
|
|
func (d decl) indexOfReplacementStart(idents []string) int {
|
|
|
|
|
|
|
|
l := len(idents)
|
|
|
|
|
|
|
|
if l == 0 {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
2018-08-13 14:50:07 -04:00
|
|
|
if l == 1 {
|
|
|
|
first := idents[0]
|
|
|
|
if first == "" || first == paramsIdentifier || first[0] == '$' {
|
|
|
|
// This can not be a Params.x
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
}
|
2016-10-24 16:29:48 -04:00
|
|
|
|
2018-08-13 14:50:07 -04:00
|
|
|
var lookFurther bool
|
|
|
|
var needsVarExpansion bool
|
|
|
|
for _, ident := range idents {
|
|
|
|
if ident[0] == '$' {
|
|
|
|
lookFurther = true
|
|
|
|
needsVarExpansion = true
|
|
|
|
break
|
|
|
|
} else if ident == paramsIdentifier {
|
|
|
|
lookFurther = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !lookFurther {
|
2016-10-24 16:29:48 -04:00
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
2018-08-13 14:50:07 -04:00
|
|
|
var resolvedIdents []string
|
|
|
|
|
|
|
|
if !needsVarExpansion {
|
|
|
|
resolvedIdents = idents
|
|
|
|
} else {
|
|
|
|
var ok bool
|
|
|
|
resolvedIdents, ok = d.resolveVariables(idents)
|
|
|
|
if !ok {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var paramFound bool
|
|
|
|
for i, ident := range resolvedIdents {
|
|
|
|
if ident == paramsIdentifier {
|
|
|
|
if i > 0 {
|
|
|
|
container := resolvedIdents[i-1]
|
|
|
|
if reservedContainers[container] {
|
|
|
|
// .Data.Params.someKey
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
paramFound = true
|
|
|
|
break
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|
2018-08-13 14:50:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if !paramFound {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
var paramSeen bool
|
|
|
|
idx := -1
|
|
|
|
for i, ident := range idents {
|
|
|
|
if ident == "" || ident[0] == '$' {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if ident == paramsIdentifier {
|
|
|
|
paramSeen = true
|
|
|
|
idx = -1
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if paramSeen {
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
if idx == -1 {
|
|
|
|
idx = i
|
|
|
|
}
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-13 14:50:07 -04:00
|
|
|
return idx
|
|
|
|
|
|
|
|
}
|
2016-10-24 16:29:48 -04:00
|
|
|
|
2018-08-13 14:50:07 -04:00
|
|
|
func (d decl) resolveVariables(idents []string) ([]string, bool) {
|
2016-10-24 16:29:48 -04:00
|
|
|
var (
|
2018-08-13 14:50:07 -04:00
|
|
|
replacements []string
|
|
|
|
replaced []string
|
2016-10-24 16:29:48 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// An Ident can start out as one of
|
|
|
|
// [Params] [$blue] [$colors.Blue]
|
|
|
|
// We need to resolve the variables, so
|
|
|
|
// $blue => [Params Colors Blue]
|
|
|
|
// etc.
|
|
|
|
replacements = []string{idents[0]}
|
|
|
|
|
|
|
|
// Loop until there are no more $vars to resolve.
|
|
|
|
for i := 0; i < len(replacements); i++ {
|
|
|
|
|
|
|
|
if i > 20 {
|
|
|
|
// bail out
|
2018-08-13 14:50:07 -04:00
|
|
|
return nil, false
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
potentialVar := replacements[i]
|
|
|
|
|
|
|
|
if potentialVar == "$" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if potentialVar == "" || potentialVar[0] != '$' {
|
|
|
|
// leave it as is
|
|
|
|
replaced = append(replaced, strings.Split(potentialVar, ".")...)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
replacement, ok := d[potentialVar]
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
// Temporary range vars. We do not care about those.
|
2018-08-13 14:50:07 -04:00
|
|
|
return nil, false
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|
|
|
|
|
2018-08-19 07:30:42 -04:00
|
|
|
if !d.isKeyword(replacement) {
|
|
|
|
// This can not be .Site.Params etc.
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
2016-10-24 16:29:48 -04:00
|
|
|
replacement = strings.TrimPrefix(replacement, ".")
|
|
|
|
|
|
|
|
if replacement == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if replacement[0] == '$' {
|
|
|
|
// Needs further expansion
|
|
|
|
replacements = append(replacements, strings.Split(replacement, ".")...)
|
|
|
|
} else {
|
|
|
|
replaced = append(replaced, strings.Split(replacement, ".")...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-13 14:50:07 -04:00
|
|
|
return append(replaced, idents[1:]...), true
|
2016-10-24 16:29:48 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-08-13 14:50:07 -04:00
|
|
|
func (d decl) isKeyword(s string) bool {
|
|
|
|
return !strings.ContainsAny(s, " -\"")
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|