mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
* Add templates
* Move API structs to codersdk
* Back to green tests!
* It all works, but now with tea! 🧋
* It works!
* Add cancellation to provisionerd
* Tests pass!
* Add deletion of workspaces and projects
* Fix agent lock
* Add clog
* Fix linting errors
* Remove unused CLI tests
* Rename daemon to start
* Fix leaking command
* Fix promptui test
* Update agent connection frequency
* Skip login tests on Windows
* Increase tunnel connect timeout
* Fix templater
* Lower test requirements
* Fix embed
* Disable promptui tests for Windows
* Fix write newline
* Fix PTY write newline
* Fix CloseReader
* Fix compilation on Windows
* Fix linting error
* Remove bubbletea
* Cleanup readwriter
* Use embedded templates instead of serving over API
* Move templates to examples
* Improve workspace create flow
* Fix Windows build
* Fix tests
* Fix linting errors
* Fix untar with extracting max size
* Fix newline char
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package parameter
|
|
|
|
import (
|
|
"sort"
|
|
|
|
"github.com/hashicorp/hcl/v2"
|
|
"github.com/hashicorp/hcl/v2/hclsyntax"
|
|
"golang.org/x/xerrors"
|
|
)
|
|
|
|
// Contains parses possible values for a conditional.
|
|
func Contains(condition string) ([]string, bool, error) {
|
|
if condition == "" {
|
|
return nil, false, nil
|
|
}
|
|
expression, diags := hclsyntax.ParseExpression([]byte(condition), "", hcl.InitialPos)
|
|
if len(diags) > 0 {
|
|
return nil, false, xerrors.Errorf("parse condition: %s", diags.Error())
|
|
}
|
|
functionCallExpression, valid := expression.(*hclsyntax.FunctionCallExpr)
|
|
if !valid {
|
|
return nil, false, nil
|
|
}
|
|
if functionCallExpression.Name != "contains" {
|
|
return nil, false, nil
|
|
}
|
|
if len(functionCallExpression.Args) < 2 {
|
|
return nil, false, nil
|
|
}
|
|
value, diags := functionCallExpression.Args[0].Value(&hcl.EvalContext{})
|
|
if len(diags) > 0 {
|
|
return nil, false, xerrors.Errorf("parse value: %s", diags.Error())
|
|
}
|
|
possible := make([]string, 0)
|
|
for _, subValue := range value.AsValueSlice() {
|
|
if subValue.Type().FriendlyName() != "string" {
|
|
continue
|
|
}
|
|
possible = append(possible, subValue.AsString())
|
|
}
|
|
sort.Strings(possible)
|
|
return possible, true, nil
|
|
}
|