forked from hashicorp/packer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixer_pp_manifest_filename.go
59 lines (46 loc) · 1.22 KB
/
fixer_pp_manifest_filename.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
package fix
import (
"github.com/mitchellh/mapstructure"
)
// FixerManifestFilename renames any Filename to Output
type FixerManifestFilename struct{}
func (FixerManifestFilename) Fix(input map[string]interface{}) (map[string]interface{}, error) {
if input["post-processors"] == nil {
return input, nil
}
// Our template type we'll use for this fixer only
type template struct {
PP `mapstructure:",squash"`
}
// Decode the input into our structure, if we can
var tpl template
if err := mapstructure.Decode(input, &tpl); err != nil {
return nil, err
}
// Go through each post-processor and get out all the complex configs
pps := tpl.ppList()
for _, pp := range pps {
ppTypeRaw, ok := pp["type"]
if !ok {
continue
}
if ppType, ok := ppTypeRaw.(string); !ok {
continue
} else if ppType != "manifest" {
continue
}
filenameRaw, ok := pp["filename"]
if !ok {
continue
}
if filename, ok := filenameRaw.(string); ok {
delete(pp, "filename")
pp["output"] = filename
}
}
input["post-processors"] = tpl.PostProcessors
return input, nil
}
func (FixerManifestFilename) Synopsis() string {
return `Updates "manifest" post-processor so any "filename" field is renamed to "output".`
}