2018-02-02 05:33:06 +01:00
|
|
|
package configs
|
|
|
|
|
|
|
|
import (
|
2018-02-03 02:22:25 +01:00
|
|
|
"fmt"
|
|
|
|
|
2018-02-02 05:33:06 +01:00
|
|
|
version "github.com/hashicorp/go-version"
|
2019-09-10 00:58:44 +02:00
|
|
|
"github.com/hashicorp/hcl/v2"
|
2018-02-03 02:22:25 +01:00
|
|
|
"github.com/zclconf/go-cty/cty"
|
|
|
|
"github.com/zclconf/go-cty/cty/convert"
|
2018-02-02 05:33:06 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// VersionConstraint represents a version constraint on some resource
|
|
|
|
// (e.g. Terraform Core, a provider, a module, ...) that carries with it
|
|
|
|
// a source range so that a helpful diagnostic can be printed in the event
|
|
|
|
// that a particular constraint does not match.
|
|
|
|
type VersionConstraint struct {
|
2018-02-03 02:22:25 +01:00
|
|
|
Required version.Constraints
|
2018-02-02 05:33:06 +01:00
|
|
|
DeclRange hcl.Range
|
|
|
|
}
|
2018-02-03 02:22:25 +01:00
|
|
|
|
|
|
|
func decodeVersionConstraint(attr *hcl.Attribute) (VersionConstraint, hcl.Diagnostics) {
|
|
|
|
ret := VersionConstraint{
|
|
|
|
DeclRange: attr.Range,
|
|
|
|
}
|
|
|
|
|
|
|
|
val, diags := attr.Expr.Value(nil)
|
2019-03-14 17:12:27 +01:00
|
|
|
if diags.HasErrors() {
|
|
|
|
return ret, diags
|
|
|
|
}
|
2018-02-03 02:22:25 +01:00
|
|
|
var err error
|
|
|
|
val, err = convert.Convert(val, cty.String)
|
|
|
|
if err != nil {
|
|
|
|
diags = append(diags, &hcl.Diagnostic{
|
|
|
|
Severity: hcl.DiagError,
|
|
|
|
Summary: "Invalid version constraint",
|
|
|
|
Detail: fmt.Sprintf("A string value is required for %s.", attr.Name),
|
|
|
|
Subject: attr.Expr.Range().Ptr(),
|
|
|
|
})
|
|
|
|
return ret, diags
|
|
|
|
}
|
|
|
|
|
|
|
|
if val.IsNull() {
|
|
|
|
// A null version constraint is strange, but we'll just treat it
|
|
|
|
// like an empty constraint set.
|
|
|
|
return ret, diags
|
|
|
|
}
|
|
|
|
|
2019-06-21 20:30:17 +02:00
|
|
|
if !val.IsWhollyKnown() {
|
|
|
|
// If there is a syntax error, HCL sets the value of the given attribute
|
|
|
|
// to cty.DynamicVal. A diagnostic for the syntax error will already
|
|
|
|
// bubble up, so we will move forward gracefully here.
|
|
|
|
return ret, diags
|
|
|
|
}
|
|
|
|
|
2018-02-03 02:22:25 +01:00
|
|
|
constraintStr := val.AsString()
|
|
|
|
constraints, err := version.NewConstraint(constraintStr)
|
|
|
|
if err != nil {
|
|
|
|
// NewConstraint doesn't return user-friendly errors, so we'll just
|
|
|
|
// ignore the provided error and produce our own generic one.
|
|
|
|
diags = append(diags, &hcl.Diagnostic{
|
|
|
|
Severity: hcl.DiagError,
|
|
|
|
Summary: "Invalid version constraint",
|
|
|
|
Detail: "This string does not use correct version constraint syntax.", // Not very actionable :(
|
|
|
|
Subject: attr.Expr.Range().Ptr(),
|
|
|
|
})
|
|
|
|
return ret, diags
|
|
|
|
}
|
|
|
|
|
|
|
|
ret.Required = constraints
|
|
|
|
return ret, diags
|
|
|
|
}
|