2022-03-10 17:31:29 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2022-03-11 10:39:07 +01:00
|
|
|
encjson "encoding/json"
|
2022-03-10 17:31:29 +01:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"text/template"
|
2022-03-11 10:39:07 +01:00
|
|
|
|
2022-03-10 17:31:29 +01:00
|
|
|
"github.com/hashicorp/hcl/v2"
|
|
|
|
"github.com/hashicorp/hcl/v2/hclsyntax"
|
2022-03-11 10:39:07 +01:00
|
|
|
"github.com/zclconf/go-cty/cty"
|
2022-03-10 17:31:29 +01:00
|
|
|
ctyjson "github.com/zclconf/go-cty/cty/json"
|
|
|
|
)
|
|
|
|
|
|
|
|
func checkErr(e error) {
|
|
|
|
if e != nil {
|
|
|
|
panic(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-11 10:39:07 +01:00
|
|
|
func checkDiags(diag hcl.Diagnostics) {
|
|
|
|
if diag.HasErrors() {
|
|
|
|
panic(diag.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-10 17:31:29 +01:00
|
|
|
func processGoTemplate(file string, config []byte) {
|
|
|
|
|
|
|
|
// The JSON configuration
|
|
|
|
var confData map[string]interface{}
|
2022-03-11 10:39:07 +01:00
|
|
|
err := encjson.Unmarshal(config, &confData)
|
2022-03-10 17:31:29 +01:00
|
|
|
checkErr(err)
|
|
|
|
|
|
|
|
// Read the template
|
|
|
|
data, err := os.ReadFile(file)
|
|
|
|
checkErr(err)
|
|
|
|
|
|
|
|
tpl, err := template.New("conf").Parse(string(data))
|
|
|
|
checkErr(err)
|
|
|
|
|
2022-03-11 10:39:07 +01:00
|
|
|
checkErr(tpl.Execute(os.Stdout, confData))
|
2022-03-10 17:31:29 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func processHCLTemplate(file string, config []byte) {
|
|
|
|
|
2022-03-11 10:39:07 +01:00
|
|
|
fct, err := os.ReadFile(file)
|
2022-03-10 17:31:29 +01:00
|
|
|
checkErr(err)
|
|
|
|
|
2022-03-11 10:39:07 +01:00
|
|
|
expr, diags := hclsyntax.ParseTemplate(fct, file, hcl.Pos{Line: 1, Column: 1})
|
|
|
|
checkDiags(diags)
|
2022-03-10 17:31:29 +01:00
|
|
|
|
2022-03-11 10:39:07 +01:00
|
|
|
// Retrieve values from JSON
|
|
|
|
var varsVal cty.Value
|
2022-03-10 17:31:29 +01:00
|
|
|
ctyType, err := ctyjson.ImpliedType(config)
|
2022-03-11 10:39:07 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
/* Maybe one day
|
|
|
|
cexpr, diags := hclsyntax.ParseExpression(config, "", hcl.Pos{Line: 1, Column: 1})
|
|
|
|
if diags.HasErrors() {
|
|
|
|
panic(diags.Error())
|
|
|
|
}
|
|
|
|
varsVal, diags = cexpr.Value(&hcl.EvalContext{})
|
|
|
|
fmt.Println(cexpr.Variables())
|
|
|
|
checkDiags(diags)
|
|
|
|
*/
|
|
|
|
} else {
|
|
|
|
varsVal, err = ctyjson.Unmarshal(config, ctyType)
|
|
|
|
checkErr(err)
|
|
|
|
}
|
2022-03-10 17:31:29 +01:00
|
|
|
|
|
|
|
ctx := &hcl.EvalContext{
|
|
|
|
Variables: varsVal.AsValueMap(),
|
|
|
|
}
|
|
|
|
|
|
|
|
for n := range ctx.Variables {
|
|
|
|
if !hclsyntax.ValidIdentifier(n) {
|
|
|
|
panic(fmt.Errorf("invalid template variable name %q: must start with a letter, followed by zero or more letters, digits, and underscores", n))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, traversal := range expr.Variables() {
|
|
|
|
root := traversal.RootName()
|
|
|
|
if _, ok := ctx.Variables[root]; !ok {
|
|
|
|
panic(fmt.Errorf("vars map does not contain key %q, referenced at %s", root, traversal[0].SourceRange()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val, diags := expr.Value(ctx)
|
|
|
|
if diags.HasErrors() {
|
|
|
|
panic(diags.Error())
|
|
|
|
}
|
|
|
|
|
2022-03-11 10:39:07 +01:00
|
|
|
fmt.Printf("%s", val.AsString())
|
2022-03-10 17:31:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// The template to process
|
|
|
|
templateType := os.Args[1]
|
|
|
|
templateFile := os.Args[2]
|
|
|
|
config := []byte(os.Args[3])
|
|
|
|
|
|
|
|
if templateType == "go" {
|
|
|
|
processGoTemplate(templateFile, config)
|
|
|
|
} else if templateType == "hcl" {
|
|
|
|
processHCLTemplate(templateFile, config)
|
|
|
|
} else {
|
|
|
|
panic(fmt.Errorf("Unsupported template type"))
|
|
|
|
}
|
2022-03-11 10:39:07 +01:00
|
|
|
}
|