forked from hairyhenderson/gomplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.go
295 lines (256 loc) · 7.22 KB
/
template.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
package gomplate
import (
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"text/template"
"github.com/duffpl/gomplate/v3/internal/config"
"github.com/duffpl/gomplate/v3/internal/iohelpers"
"github.com/duffpl/gomplate/v3/tmpl"
"github.com/spf13/afero"
"github.com/zealic/xignore"
)
// ignorefile name, like .gitignore
const gomplateignore = ".gomplateignore"
// for overriding in tests
var fs = afero.NewOsFs()
// tplate - models a gomplate template file...
type tplate struct {
name string
targetPath string
target io.Writer
contents string
mode os.FileMode
modeOverride bool
}
func addTmplFuncs(f template.FuncMap, root *template.Template, ctx interface{}) {
t := tmpl.New(root, ctx)
tns := func() *tmpl.Template { return t }
f["tmpl"] = tns
f["tpl"] = t.Inline
}
func (t *tplate) toGoTemplate(g *gomplate) (tmpl *template.Template, err error) {
if g.rootTemplate != nil {
tmpl = g.rootTemplate.New(t.name)
} else {
tmpl = template.New(t.name)
g.rootTemplate = tmpl
}
tmpl.Option("missingkey=error")
// the "tmpl" funcs get added here because they need access to the root template and context
addTmplFuncs(g.funcMap, g.rootTemplate, g.tmplctx)
tmpl.Funcs(g.funcMap)
tmpl.Delims(g.leftDelim, g.rightDelim)
_, err = tmpl.Parse(t.contents)
if err != nil {
return nil, err
}
for alias, path := range g.nestedTemplates {
// nolint: gosec
b, err := ioutil.ReadFile(path)
if err != nil {
return nil, err
}
_, err = tmpl.New(alias).Parse(string(b))
if err != nil {
return nil, err
}
}
return tmpl, nil
}
// loadContents - reads the template
func (t *tplate) loadContents(in io.Reader) ([]byte, error) {
if in == nil {
f, err := fs.OpenFile(t.name, os.O_RDONLY, 0)
if err != nil {
return nil, fmt.Errorf("failed to open %s: %w", t.name, err)
}
// nolint: errcheck
defer f.Close()
in = f
}
b, err := ioutil.ReadAll(in)
if err != nil {
return nil, fmt.Errorf("failed to load contents of %s: %w", t.name, err)
}
return b, nil
}
// gatherTemplates - gather and prepare input template(s) and output file(s) for rendering
// nolint: gocyclo
func gatherTemplates(cfg *config.Config, outFileNamer func(string) (string, error)) (templates []*tplate, err error) {
mode, modeOverride, err := cfg.GetMode()
if err != nil {
return nil, err
}
switch {
// the arg-provided input string gets a special name
case cfg.Input != "":
templates = []*tplate{{
name: "<arg>",
contents: cfg.Input,
mode: mode,
modeOverride: modeOverride,
targetPath: cfg.OutputFiles[0],
}}
case cfg.InputDir != "":
// input dirs presume output dirs are set too
templates, err = walkDir(cfg.InputDir, outFileNamer, cfg.ExcludeGlob, mode, modeOverride)
if err != nil {
return nil, err
}
case cfg.Input == "":
templates = make([]*tplate, len(cfg.InputFiles))
for i := range cfg.InputFiles {
templates[i], err = fileToTemplates(cfg.InputFiles[i], cfg.OutputFiles[i], mode, modeOverride)
if err != nil {
return nil, err
}
}
}
return processTemplates(cfg, templates)
}
// processTemplates - reads data into the given templates as necessary and opens
// outputs for writing as necessary
func processTemplates(cfg *config.Config, templates []*tplate) ([]*tplate, error) {
for _, t := range templates {
if t.contents == "" {
var in io.Reader
if t.name == "-" {
in = cfg.Stdin
}
b, err := t.loadContents(in)
if err != nil {
return nil, err
}
t.contents = string(b)
}
if t.target == nil {
out, err := openOutFile(cfg, t.targetPath, t.mode, t.modeOverride)
if err != nil {
return nil, err
}
t.target = out
}
}
return templates, nil
}
// walkDir - given an input dir `dir` and an output dir `outDir`, and a list
// of .gomplateignore and exclude globs (if any), walk the input directory and create a list of
// tplate objects, and an error, if any.
func walkDir(dir string, outFileNamer func(string) (string, error), excludeGlob []string, mode os.FileMode, modeOverride bool) ([]*tplate, error) {
dir = filepath.Clean(dir)
dirStat, err := fs.Stat(dir)
if err != nil {
return nil, fmt.Errorf("couldn't stat %s: %w", dir, err)
}
dirMode := dirStat.Mode()
templates := make([]*tplate, 0)
matcher := xignore.NewMatcher(fs)
// work around bug in xignore - a basedir of '.' doesn't work
basedir := dir
if basedir == "." {
basedir, _ = os.Getwd()
}
matches, err := matcher.Matches(basedir, &xignore.MatchesOptions{
Ignorefile: gomplateignore,
Nested: true, // allow nested ignorefile
AfterPatterns: excludeGlob,
})
if err != nil {
return nil, fmt.Errorf("ignore matching failed for %s: %w", basedir, err)
}
// Unmatched ignorefile rules's files
files := matches.UnmatchedFiles
for _, file := range files {
nextInPath := filepath.Join(dir, file)
nextOutPath, err := outFileNamer(file)
if err != nil {
return nil, err
}
fMode := mode
if mode == 0 {
stat, perr := fs.Stat(nextInPath)
if perr == nil {
fMode = stat.Mode()
} else {
fMode = dirMode
}
}
// Ensure file parent dirs
if err = fs.MkdirAll(filepath.Dir(nextOutPath), dirMode); err != nil {
return nil, err
}
templates = append(templates, &tplate{
name: nextInPath,
targetPath: nextOutPath,
mode: fMode,
modeOverride: modeOverride,
})
}
return templates, nil
}
func fileToTemplates(inFile, outFile string, mode os.FileMode, modeOverride bool) (*tplate, error) {
if inFile != "-" {
si, err := fs.Stat(inFile)
if err != nil {
return nil, err
}
if mode == 0 {
mode = si.Mode()
}
}
tmpl := &tplate{
name: inFile,
targetPath: outFile,
mode: mode,
modeOverride: modeOverride,
}
return tmpl, nil
}
func openOutFile(cfg *config.Config, filename string, mode os.FileMode, modeOverride bool) (out io.Writer, err error) {
if cfg.SuppressEmpty {
out = iohelpers.NewEmptySkipper(func() (io.Writer, error) {
if filename == "-" {
return cfg.Stdout, nil
}
return createOutFile(filename, mode, modeOverride)
})
return out, nil
}
if filename == "-" {
return cfg.Stdout, nil
}
return createOutFile(filename, mode, modeOverride)
}
func createOutFile(filename string, mode os.FileMode, modeOverride bool) (out io.WriteCloser, err error) {
mode = iohelpers.NormalizeFileMode(mode.Perm())
if modeOverride {
err = fs.Chmod(filename, mode)
if err != nil && !os.IsNotExist(err) {
return nil, fmt.Errorf("failed to chmod output file '%s' with mode %q: %w", filename, mode, err)
}
}
open := func() (out io.WriteCloser, err error) {
out, err = fs.OpenFile(filename, os.O_RDWR|os.O_CREATE|os.O_TRUNC, mode)
if err != nil {
return out, fmt.Errorf("failed to open output file '%s' for writing: %w", filename, err)
}
return out, err
}
// if the output file already exists, we'll use a SameSkipper
fi, err := fs.Stat(filename)
if err != nil {
// likely means the file just doesn't exist - further errors will be more useful
return iohelpers.LazyWriteCloser(open), nil
}
if fi.IsDir() {
// error because this is a directory
return nil, isDirError(fi.Name())
}
out = iohelpers.SameSkipper(iohelpers.LazyReadCloser(func() (io.ReadCloser, error) {
return fs.OpenFile(filename, os.O_RDONLY, mode)
}), open)
return out, err
}