2016-11-21 18:34:50 -05:00
|
|
|
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) {
|
2018-09-06 14:55:11 -04:00
|
|
|
if input["post-processors"] == nil {
|
|
|
|
return input, nil
|
|
|
|
}
|
2016-11-21 18:34:50 -05:00
|
|
|
|
|
|
|
// Our template type we'll use for this fixer only
|
|
|
|
type template struct {
|
2018-09-05 15:08:40 -04:00
|
|
|
PP `mapstructure:",squash"`
|
2016-11-21 18:34:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
2018-09-06 14:55:11 -04:00
|
|
|
pps := tpl.ppList()
|
2016-11-21 18:34:50 -05:00
|
|
|
|
2016-11-21 18:35:57 -05:00
|
|
|
for _, pp := range pps {
|
|
|
|
ppTypeRaw, ok := pp["type"]
|
2016-11-21 18:34:50 -05:00
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-11-21 18:35:57 -05:00
|
|
|
if ppType, ok := ppTypeRaw.(string); !ok {
|
|
|
|
continue
|
|
|
|
} else if ppType != "manifest" {
|
2016-11-21 18:34:50 -05:00
|
|
|
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
|
2016-11-21 18:34:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-09-06 14:55:11 -04:00
|
|
|
input["post-processors"] = tpl.PostProcessors
|
2016-11-21 18:34:50 -05:00
|
|
|
return input, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (FixerManifestFilename) Synopsis() string {
|
|
|
|
return `Updates "manifest" post-processor so any "filename" field is renamed to "output".`
|
|
|
|
}
|