packer-cn/fix/fixer_pp_manifest_filename.go

57 lines
1.1 KiB
Go
Raw Normal View History

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) {
// 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
}
2016-11-21 18:35:57 -05:00
// Go through each post-processor and get out all the complex configs
pps := tpl.postProcessors()
2016-11-21 18:35:57 -05:00
for _, pp := range pps {
ppTypeRaw, ok := pp["type"]
if !ok {
continue
}
2016-11-21 18:35:57 -05:00
if ppType, ok := ppTypeRaw.(string); !ok {
continue
} else if ppType != "manifest" {
continue
}
filenameRaw, ok := pp["filename"]
if !ok {
continue
}
2016-11-21 18:35:57 -05:00
if filename, ok := filenameRaw.(string); ok {
delete(pp, "filename")
pp["output"] = filename
}
}
input["post-processors"] = pps
return input, nil
}
func (FixerManifestFilename) Synopsis() string {
return `Updates "manifest" post-processor so any "filename" field is renamed to "output".`
}