2017-02-08 11:50:39 +01:00
|
|
|
package context
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2017-02-08 13:11:10 +01:00
|
|
|
"fmt"
|
2017-02-08 11:50:39 +01:00
|
|
|
"io/ioutil"
|
|
|
|
"path"
|
2017-02-08 13:11:10 +01:00
|
|
|
"strings"
|
2017-02-08 12:58:53 +01:00
|
|
|
|
2017-02-08 13:11:10 +01:00
|
|
|
"github.com/ghodss/yaml"
|
2017-02-08 12:58:53 +01:00
|
|
|
"github.com/polydawn/meep"
|
2017-02-14 19:00:06 +01:00
|
|
|
"github.com/tazjin/kontemplate/util"
|
2017-02-08 11:50:39 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type ResourceSet struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Values map[string]interface{} `json:"values"`
|
2017-02-08 17:14:40 +01:00
|
|
|
|
|
|
|
// Fields for resource set collections
|
|
|
|
Include []ResourceSet `json:"include"`
|
2017-02-08 17:32:19 +01:00
|
|
|
Parent string
|
2017-02-08 11:50:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type Context struct {
|
|
|
|
Name string `json:"context"`
|
|
|
|
Global map[string]interface{} `json:"global"`
|
|
|
|
ResourceSets []ResourceSet `json:"include"`
|
|
|
|
BaseDir string
|
|
|
|
}
|
|
|
|
|
|
|
|
type ContextLoadingError struct {
|
|
|
|
meep.AllTraits
|
|
|
|
Filename string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to load and deserialise a Context from the specified file.
|
|
|
|
func LoadContextFromFile(filename string) (*Context, error) {
|
|
|
|
file, err := ioutil.ReadFile(filename)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, meep.New(
|
|
|
|
&ContextLoadingError{Filename: filename},
|
|
|
|
meep.Cause(err),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
var c Context
|
|
|
|
|
2017-02-08 13:11:10 +01:00
|
|
|
if strings.HasSuffix(filename, "json") {
|
|
|
|
err = json.Unmarshal(file, &c)
|
|
|
|
} else if strings.HasSuffix(filename, "yaml") || strings.HasSuffix(filename, "yml") {
|
|
|
|
err = yaml.Unmarshal(file, &c)
|
|
|
|
} else {
|
|
|
|
return nil, meep.New(
|
|
|
|
&ContextLoadingError{Filename: filename},
|
|
|
|
meep.Cause(fmt.Errorf("File format not supported. Must be JSON or YAML.")),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-02-08 11:50:39 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, meep.New(
|
|
|
|
&ContextLoadingError{Filename: filename},
|
|
|
|
meep.Cause(err),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-04-04 14:28:22 +02:00
|
|
|
c.ResourceSets = flattenResourceSetCollections(&c.ResourceSets)
|
2017-02-08 11:50:39 +01:00
|
|
|
c.BaseDir = path.Dir(filename)
|
2017-04-04 14:28:22 +02:00
|
|
|
c.ResourceSets = loadAllDefaultValues(&c)
|
2017-02-08 11:50:39 +01:00
|
|
|
|
|
|
|
return &c, nil
|
|
|
|
}
|
2017-02-08 17:14:40 +01:00
|
|
|
|
|
|
|
// Flattens resource set collections, i.e. resource sets that themselves have an additional 'include' field set.
|
|
|
|
// Those will be regarded as a short-hand for including multiple resource sets from a subfolder.
|
|
|
|
// See https://github.com/tazjin/kontemplate/issues/9 for more information.
|
2017-04-04 14:28:22 +02:00
|
|
|
func flattenResourceSetCollections(rs *[]ResourceSet) []ResourceSet {
|
2017-02-08 17:14:40 +01:00
|
|
|
flattened := make([]ResourceSet, 0)
|
|
|
|
|
|
|
|
for _, r := range *rs {
|
|
|
|
if len(r.Include) == 0 {
|
|
|
|
flattened = append(flattened, r)
|
|
|
|
} else {
|
|
|
|
for _, subResourceSet := range r.Include {
|
2017-02-08 17:32:19 +01:00
|
|
|
subResourceSet.Parent = r.Name
|
2017-02-08 17:21:55 +01:00
|
|
|
subResourceSet.Name = path.Join(r.Name, subResourceSet.Name)
|
2017-02-14 19:00:06 +01:00
|
|
|
subResourceSet.Values = *util.Merge(&r.Values, &subResourceSet.Values)
|
2017-02-08 17:14:40 +01:00
|
|
|
flattened = append(flattened, subResourceSet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-04 14:28:22 +02:00
|
|
|
return flattened
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadAllDefaultValues(c *Context) []ResourceSet {
|
|
|
|
updated := make([]ResourceSet, len(c.ResourceSets))
|
|
|
|
|
|
|
|
for i, rs := range c.ResourceSets {
|
|
|
|
merged := loadDefaultValues(&rs, c)
|
|
|
|
rs.Values = *merged
|
|
|
|
updated[i] = rs
|
|
|
|
}
|
|
|
|
|
|
|
|
return updated
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loads and merges default values for a resource set collection from path/to/set/default.{json|yaml}.
|
|
|
|
// YAML takes precedence over JSON.
|
|
|
|
// Default values in resource set collections have the lowest priority possible.
|
|
|
|
func loadDefaultValues(rs *ResourceSet, c *Context) *map[string]interface{} {
|
|
|
|
var defaultVars map[string]interface{}
|
|
|
|
|
|
|
|
// Attempt to load YAML values
|
|
|
|
y, err := ioutil.ReadFile(path.Join(c.BaseDir, rs.Name, "default.yaml"))
|
|
|
|
if err == nil {
|
|
|
|
yaml.Unmarshal(y, &defaultVars)
|
|
|
|
return util.Merge(&defaultVars, &rs.Values)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to load JSON values
|
|
|
|
j, err := ioutil.ReadFile(path.Join(c.BaseDir, rs.Name, "default.json"))
|
|
|
|
if err == nil {
|
|
|
|
json.Unmarshal(j, &defaultVars)
|
|
|
|
return util.Merge(&defaultVars, &rs.Values)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The actual error is not inspected here. The reasoning for this is that in case of serious problems (e.g.
|
|
|
|
// permission issues with the folder / folder not existing) failure will occur a bit later anyways.
|
|
|
|
// Otherwise we'd have to differentiate between file-not-found-errors (no default values specified) and other
|
|
|
|
// errors here.
|
|
|
|
return &rs.Values
|
2017-02-08 17:14:40 +01:00
|
|
|
}
|