-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.go
51 lines (39 loc) · 880 Bytes
/
parser.go
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 vipertemplate
import (
"text/template"
"github.com/spf13/viper"
bufferspool "github.com/sv-tools/buffers-pool"
)
type parser struct {
viper *viper.Viper
visited map[string]struct{}
funcs template.FuncMap
data interface{}
}
func (p *parser) parse(key string) (interface{}, error) {
if _, ok := p.visited[key]; ok {
return nil, newError(key, ErrCircularDependency)
}
val := p.viper.Get(key)
if val == nil {
return nil, nil
}
text, ok := val.(string)
if !ok {
return val, nil
}
tmpl, err := template.New(key).Funcs(p.funcs).Parse(text)
if err != nil {
return "", err
}
p.visited[key] = struct{}{}
buf := bufferspool.Get()
defer bufferspool.Put(buf)
if err := tmpl.Execute(buf, p.data); err != nil {
return "", err
}
return buf.String(), nil
}
func (p *parser) get(key string) (interface{}, error) {
return p.parse(key)
}