-
Notifications
You must be signed in to change notification settings - Fork 2
/
outputs.go
59 lines (53 loc) · 1.74 KB
/
outputs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package nescript
import (
"encoding/json"
"regexp"
"strconv"
"strings"
)
// Output is a key/value map of data, where the value can be any type. This
// should be generated from NewOutput or from the helper methods of a result.
type Output map[string]any
type EvalFunc func(Output, string) (bool, error)
var (
// setOutputRegex determines the allowed syntax for a line outputting data.
// E.g. ::set-output name=hello type=string::world!
setOutputRegex *regexp.Regexp = regexp.MustCompile(`::set-output name=([^\s][^::][a-zA-Z_-]+)(?:\stype=([a-zA-Z]+))?::(.*)`)
)
// NewOutput creates an Output from a given input string (such as stdout). It
// will type cast select types if a type is given in the set-output message (or
// a string if not).
func NewOutput(source string) Output {
outputs := make(map[string]any)
lines := strings.Split(source, "\n")
for _, l := range lines {
matches := setOutputRegex.FindAllStringSubmatch(l, -1)
if len(matches) > 0 {
match := matches[0]
name := match[1]
t := match[2]
value := match[3]
switch strings.ToLower(t) {
case "json", "j":
rawJSON := json.RawMessage(value)
var jsonValue any
json.Unmarshal(rawJSON, &jsonValue)
outputs[name] = jsonValue
case "int", "i":
if v, err := strconv.Atoi(value); err == nil {
outputs[name] = v
}
default:
outputs[name] = value
}
}
}
return outputs
}
// Evaluate takes an evaultion function (such as expr) and a string expression
// and uses the output data given to evaluate to a boolean. This will error is
// the expression can not be evaluation with the given data, or the output would
// not be a boolean.
func (o Output) Evaluate(evaluator EvalFunc, expression string) (bool, error) {
return evaluator(o, expression)
}