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 (
|
|
|
|
"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"
|
2019-01-02 06:33:26 -05:00
|
|
|
|
2019-11-21 15:59:38 -05:00
|
|
|
"github.com/gohugoio/hugo/common/maps"
|
2019-01-02 06:33:26 -05:00
|
|
|
"github.com/gohugoio/hugo/tpl"
|
|
|
|
"github.com/mitchellh/mapstructure"
|
2019-11-21 15:59:38 -05:00
|
|
|
"github.com/pkg/errors"
|
2016-10-24 16:29:48 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2019-04-02 04:30:24 -04:00
|
|
|
type templateType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
templateUndefined templateType = iota
|
|
|
|
templateShortcode
|
|
|
|
templatePartial
|
|
|
|
)
|
|
|
|
|
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
|
2019-04-16 03:13:55 -04:00
|
|
|
notFound map[string]bool
|
2017-03-27 14:43:49 -04:00
|
|
|
lookupFn func(name string) *parse.Tree
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
// The last error encountered.
|
|
|
|
err error
|
|
|
|
|
2019-04-02 04:30:24 -04:00
|
|
|
typ templateType
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
// Set when we're done checking for config header.
|
|
|
|
configChecked bool
|
|
|
|
|
|
|
|
// Contains some info about the template
|
|
|
|
tpl.Info
|
2019-04-02 04:30:24 -04:00
|
|
|
|
|
|
|
// Store away the return node in partials.
|
|
|
|
returnNode *parse.CommandNode
|
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
|
2019-04-16 03:13:55 -04:00
|
|
|
templ := c.lookupFn(name)
|
|
|
|
if templ == nil {
|
|
|
|
// This may be a inline template defined outside of this file
|
|
|
|
// and not yet parsed. Unusual, but it happens.
|
|
|
|
// Store the name to try again later.
|
|
|
|
c.notFound[name] = true
|
|
|
|
}
|
|
|
|
|
|
|
|
return templ
|
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 {
|
2019-01-02 06:33:26 -05:00
|
|
|
return &templateContext{
|
|
|
|
Info: tpl.Info{Config: tpl.DefaultConfig},
|
|
|
|
lookupFn: lookupFn,
|
|
|
|
decl: make(map[string]string),
|
2019-04-16 03:13:55 -04:00
|
|
|
visited: make(map[string]bool),
|
|
|
|
notFound: 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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-16 03:13:55 -04:00
|
|
|
func applyTemplateTransformersToHMLTTemplate(typ templateType, templ *template.Template) (*templateContext, error) {
|
2019-04-02 04:30:24 -04:00
|
|
|
return applyTemplateTransformers(typ, templ.Tree, createParseTreeLookup(templ))
|
2017-03-27 14:43:49 -04:00
|
|
|
}
|
|
|
|
|
2019-04-16 03:13:55 -04:00
|
|
|
func applyTemplateTransformersToTextTemplate(typ templateType, templ *texttemplate.Template) (*templateContext, error) {
|
2019-04-02 04:30:24 -04:00
|
|
|
return applyTemplateTransformers(typ, templ.Tree,
|
2017-03-27 14:43:49 -04:00
|
|
|
func(nn string) *parse.Tree {
|
|
|
|
tt := templ.Lookup(nn)
|
|
|
|
if tt != nil {
|
|
|
|
return tt.Tree
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-04-16 03:13:55 -04:00
|
|
|
func applyTemplateTransformers(typ templateType, templ *parse.Tree, lookupFn func(name string) *parse.Tree) (*templateContext, error) {
|
2017-03-27 14:43:49 -04:00
|
|
|
if templ == nil {
|
2019-04-16 03:13:55 -04:00
|
|
|
return nil, errors.New("expected template, but none provided")
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|
|
|
|
|
2017-03-27 14:43:49 -04:00
|
|
|
c := newTemplateContext(lookupFn)
|
2019-04-02 04:30:24 -04:00
|
|
|
c.typ = typ
|
|
|
|
|
|
|
|
_, err := c.applyTransformations(templ.Root)
|
2016-10-24 16:29:48 -04:00
|
|
|
|
2019-04-02 04:30:24 -04:00
|
|
|
if err == nil && c.returnNode != nil {
|
|
|
|
// This is a partial with a return statement.
|
|
|
|
c.Info.HasReturn = true
|
|
|
|
templ.Root = c.wrapInPartialReturnWrapper(templ.Root)
|
|
|
|
}
|
2016-10-24 16:29:48 -04:00
|
|
|
|
2019-04-16 03:13:55 -04:00
|
|
|
return c, err
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|
|
|
|
|
2019-04-02 04:30:24 -04:00
|
|
|
const (
|
|
|
|
partialReturnWrapperTempl = `{{ $_hugo_dot := $ }}{{ $ := .Arg }}{{ with .Arg }}{{ $_hugo_dot.Set ("PLACEHOLDER") }}{{ end }}`
|
|
|
|
)
|
|
|
|
|
|
|
|
var partialReturnWrapper *parse.ListNode
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
templ, err := texttemplate.New("").Parse(partialReturnWrapperTempl)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
partialReturnWrapper = templ.Tree.Root
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *templateContext) wrapInPartialReturnWrapper(n *parse.ListNode) *parse.ListNode {
|
|
|
|
wrapper := partialReturnWrapper.CopyList()
|
|
|
|
withNode := wrapper.Nodes[2].(*parse.WithNode)
|
|
|
|
retn := withNode.List.Nodes[0]
|
|
|
|
setCmd := retn.(*parse.ActionNode).Pipe.Cmds[0]
|
|
|
|
setPipe := setCmd.Args[1].(*parse.PipeNode)
|
|
|
|
// Replace PLACEHOLDER with the real return value.
|
|
|
|
// Note that this is a PipeNode, so it will be wrapped in parens.
|
|
|
|
setPipe.Cmds = []*parse.CommandNode{c.returnNode}
|
|
|
|
withNode.List.Nodes = append(n.Nodes, retn)
|
|
|
|
|
|
|
|
return wrapper
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-03-06 03:07:49 -05:00
|
|
|
// The truth logic in Go's template package is broken for certain values
|
|
|
|
// for the if and with keywords. This works around that problem by wrapping
|
|
|
|
// the node passed to if/with in a getif conditional.
|
|
|
|
// getif works slightly different than the Go built-in in that it also
|
|
|
|
// considers any IsZero methods on the values (as in time.Time).
|
|
|
|
// See https://github.com/gohugoio/hugo/issues/5738
|
|
|
|
func (c *templateContext) wrapWithGetIf(p *parse.PipeNode) {
|
|
|
|
if len(p.Cmds) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// getif will return an empty string if not evaluated as truthful,
|
|
|
|
// which is when we need the value in the with clause.
|
|
|
|
firstArg := parse.NewIdentifier("getif")
|
|
|
|
secondArg := p.CopyPipe()
|
|
|
|
newCmd := p.Cmds[0].Copy().(*parse.CommandNode)
|
|
|
|
|
|
|
|
// secondArg is a PipeNode and will behave as it was wrapped in parens, e.g:
|
|
|
|
// {{ getif (len .Params | eq 2) }}
|
|
|
|
newCmd.Args = []parse.Node{firstArg, secondArg}
|
|
|
|
|
|
|
|
p.Cmds = []*parse.CommandNode{newCmd}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
// applyTransformations do 3 things:
|
2019-03-06 03:07:49 -05:00
|
|
|
// 1) Make all .Params.CamelCase and similar into lowercase.
|
|
|
|
// 2) Wraps every with and if pipe in getif
|
2019-01-02 06:33:26 -05:00
|
|
|
// 3) Collects some information about the template content.
|
2019-04-02 04:30:24 -04:00
|
|
|
func (c *templateContext) applyTransformations(n parse.Node) (bool, error) {
|
2018-06-23 17:07:52 -04:00
|
|
|
switch x := n.(type) {
|
|
|
|
case *parse.ListNode:
|
|
|
|
if x != nil {
|
2019-03-06 03:07:49 -05:00
|
|
|
c.applyTransformationsToNodes(x.Nodes...)
|
2018-06-23 17:07:52 -04:00
|
|
|
}
|
|
|
|
case *parse.ActionNode:
|
2019-03-06 03:07:49 -05:00
|
|
|
c.applyTransformationsToNodes(x.Pipe)
|
2018-06-23 17:07:52 -04:00
|
|
|
case *parse.IfNode:
|
2019-03-06 03:07:49 -05:00
|
|
|
c.applyTransformationsToNodes(x.Pipe, x.List, x.ElseList)
|
|
|
|
c.wrapWithGetIf(x.Pipe)
|
2018-06-23 17:07:52 -04:00
|
|
|
case *parse.WithNode:
|
2019-03-06 03:07:49 -05:00
|
|
|
c.applyTransformationsToNodes(x.Pipe, x.List, x.ElseList)
|
|
|
|
c.wrapWithGetIf(x.Pipe)
|
2018-06-23 17:07:52 -04:00
|
|
|
case *parse.RangeNode:
|
2019-03-06 03:07:49 -05:00
|
|
|
c.applyTransformationsToNodes(x.Pipe, x.List, x.ElseList)
|
2018-06-23 17:07:52 -04:00
|
|
|
case *parse.TemplateNode:
|
|
|
|
subTempl := c.getIfNotVisited(x.Name)
|
|
|
|
if subTempl != nil {
|
2019-03-06 03:07:49 -05:00
|
|
|
c.applyTransformationsToNodes(subTempl.Root)
|
2018-06-23 17:07:52 -04:00
|
|
|
}
|
|
|
|
case *parse.PipeNode:
|
2019-01-02 06:33:26 -05:00
|
|
|
c.collectConfig(x)
|
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
|
|
|
}
|
|
|
|
|
2019-04-02 04:30:24 -04:00
|
|
|
for i, cmd := range x.Cmds {
|
|
|
|
keep, _ := c.applyTransformations(cmd)
|
|
|
|
if !keep {
|
|
|
|
x.Cmds = append(x.Cmds[:i], x.Cmds[i+1:]...)
|
|
|
|
}
|
2018-06-23 17:07:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
case *parse.CommandNode:
|
2019-01-02 06:33:26 -05:00
|
|
|
c.collectInner(x)
|
2019-04-02 04:30:24 -04:00
|
|
|
keep := c.collectReturnNode(x)
|
2019-01-02 06:33:26 -05:00
|
|
|
|
2018-06-23 17:07:52 -04:00
|
|
|
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:
|
2019-03-06 03:07:49 -05:00
|
|
|
c.applyTransformations(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
|
|
|
}
|
|
|
|
}
|
2019-04-02 04:30:24 -04:00
|
|
|
return keep, c.err
|
2018-06-23 17:07:52 -04:00
|
|
|
}
|
2019-01-02 06:33:26 -05:00
|
|
|
|
2019-04-02 04:30:24 -04:00
|
|
|
return true, c.err
|
2018-06-23 17:07:52 -04:00
|
|
|
}
|
|
|
|
|
2019-03-06 03:07:49 -05:00
|
|
|
func (c *templateContext) applyTransformationsToNodes(nodes ...parse.Node) {
|
2016-10-24 16:29:48 -04:00
|
|
|
for _, node := range nodes {
|
2019-03-06 03:07:49 -05:00
|
|
|
c.applyTransformations(node)
|
2016-10-24 16:29:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
func (c *templateContext) hasIdent(idents []string, ident string) bool {
|
|
|
|
for _, id := range idents {
|
|
|
|
if id == ident {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// collectConfig collects and parses any leading template config variable declaration.
|
|
|
|
// This will be the first PipeNode in the template, and will be a variable declaration
|
|
|
|
// on the form:
|
|
|
|
// {{ $_hugo_config:= `{ "version": 1 }` }}
|
|
|
|
func (c *templateContext) collectConfig(n *parse.PipeNode) {
|
2019-04-02 04:30:24 -04:00
|
|
|
if c.typ != templateShortcode {
|
2019-01-02 06:33:26 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if c.configChecked {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.configChecked = true
|
|
|
|
|
|
|
|
if len(n.Decl) != 1 || len(n.Cmds) != 1 {
|
|
|
|
// This cannot be a config declaration
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
v := n.Decl[0]
|
|
|
|
|
|
|
|
if len(v.Ident) == 0 || v.Ident[0] != "$_hugo_config" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd := n.Cmds[0]
|
|
|
|
|
|
|
|
if len(cmd.Args) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if s, ok := cmd.Args[0].(*parse.StringNode); ok {
|
|
|
|
errMsg := "failed to decode $_hugo_config in template"
|
2019-11-21 15:59:38 -05:00
|
|
|
m, err := maps.ToStringMapE(s.Text)
|
2019-01-02 06:33:26 -05:00
|
|
|
if err != nil {
|
|
|
|
c.err = errors.Wrap(err, errMsg)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := mapstructure.WeakDecode(m, &c.Info.Config); err != nil {
|
|
|
|
c.err = errors.Wrap(err, errMsg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// collectInner determines if the given CommandNode represents a
|
|
|
|
// shortcode call to its .Inner.
|
|
|
|
func (c *templateContext) collectInner(n *parse.CommandNode) {
|
2019-04-02 04:30:24 -04:00
|
|
|
if c.typ != templateShortcode {
|
2019-01-02 06:33:26 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if c.Info.IsInner || len(n.Args) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, arg := range n.Args {
|
|
|
|
var idents []string
|
|
|
|
switch nt := arg.(type) {
|
|
|
|
case *parse.FieldNode:
|
|
|
|
idents = nt.Ident
|
|
|
|
case *parse.VariableNode:
|
|
|
|
idents = nt.Ident
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.hasIdent(idents, "Inner") {
|
|
|
|
c.Info.IsInner = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-02 04:30:24 -04:00
|
|
|
func (c *templateContext) collectReturnNode(n *parse.CommandNode) bool {
|
|
|
|
if c.typ != templatePartial || c.returnNode != nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(n.Args) < 2 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
ident, ok := n.Args[0].(*parse.IdentifierNode)
|
|
|
|
if !ok || ident.Ident != "return" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
c.returnNode = n
|
|
|
|
// Remove the "return" identifiers
|
|
|
|
c.returnNode.Args = c.returnNode.Args[1:]
|
|
|
|
|
|
|
|
return false
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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) {
|
2019-11-21 13:45:03 -05:00
|
|
|
continue
|
2018-08-19 07:30:42 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|