Welcome to mirror list, hosted at ThFree Co, Russian Federation.

template.go « internal - github.com/gohugoio/go-i18n.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fe992355563044baa3c5e8ecae342f92dc884ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package internal

import (
	"bytes"
	"strings"
	"sync"
	gotemplate "text/template"
)

// Template stores the template for a string.
type Template struct {
	Src        string
	LeftDelim  string
	RightDelim string

	parseOnce      sync.Once
	parsedTemplate *gotemplate.Template
	parseError     error
}

func (t *Template) Execute(funcs gotemplate.FuncMap, data interface{}) (string, error) {
	leftDelim := t.LeftDelim
	if leftDelim == "" {
		leftDelim = "{{"
	}
	if !strings.Contains(t.Src, leftDelim) {
		// Fast path to avoid parsing a template that has no actions.
		return t.Src, nil
	}

	var gt *gotemplate.Template
	var err error
	if funcs == nil {
		t.parseOnce.Do(func() {
			// If funcs is nil, then we only need to parse this template once.
			t.parsedTemplate, t.parseError = gotemplate.New("").Delims(t.LeftDelim, t.RightDelim).Parse(t.Src)
		})
		gt, err = t.parsedTemplate, t.parseError
	} else {
		gt, err = gotemplate.New("").Delims(t.LeftDelim, t.RightDelim).Funcs(funcs).Parse(t.Src)
	}

	if err != nil {
		return "", err
	}
	var buf bytes.Buffer
	if err := gt.Execute(&buf, data); err != nil {
		return "", err
	}
	return buf.String(), nil
}