-
Notifications
You must be signed in to change notification settings - Fork 18
/
file.go
92 lines (73 loc) · 2.46 KB
/
file.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package command
import (
"github.com/cirruslabs/cirrus-ci-agent/api"
"github.com/cirruslabs/cirrus-cli/pkg/parser/nameable"
"github.com/cirruslabs/cirrus-cli/pkg/parser/node"
"github.com/cirruslabs/cirrus-cli/pkg/parser/parseable"
"github.com/cirruslabs/cirrus-cli/pkg/parser/parserkit"
"github.com/cirruslabs/cirrus-cli/pkg/parser/schema"
jsschema "github.com/lestrrat-go/jsschema"
"strings"
)
type FileCommand struct {
proto *api.Command
instruction *api.FileInstruction
parseable.DefaultParser
}
func NewFileCommand(mergedEnv map[string]string) *FileCommand {
fileCommand := &FileCommand{
proto: &api.Command{},
instruction: &api.FileInstruction{},
}
fileCommand.OptionalField(nameable.NewSimpleNameable("name"), schema.String(""), func(node *node.Node) error {
name, err := node.GetExpandedStringValue(mergedEnv)
if err != nil {
return err
}
fileCommand.proto.Name = name
return nil
})
pathSchema := schema.String("Destination path.")
fileCommand.RequiredField(nameable.NewSimpleNameable("path"), pathSchema, func(node *node.Node) error {
path, err := node.GetExpandedStringValue(mergedEnv)
if err != nil {
return err
}
fileCommand.instruction.DestinationPath = path
return nil
})
variableSchema := schema.String("Environment variable name.")
fileCommand.RequiredField(nameable.NewSimpleNameable("variable_name"), variableSchema, func(node *node.Node) error {
variableName, err := node.GetStringValue()
if err != nil {
return err
}
variableName = strings.TrimPrefix(variableName, "$")
fileCommand.instruction.Source = &api.FileInstruction_FromEnvironmentVariable{
FromEnvironmentVariable: variableName,
}
return nil
})
return fileCommand
}
func (fileCommand *FileCommand) Parse(node *node.Node, parserKit *parserkit.ParserKit) error {
if err := fileCommand.DefaultParser.Parse(node, parserKit); err != nil {
return err
}
if fileCommand.proto.Name == "" {
cacheNameable := nameable.NewRegexNameable("^(.*)file$")
fileCommand.proto.Name = cacheNameable.FirstGroupOrDefault(node.Name, "file")
}
return nil
}
func (fileCommand *FileCommand) Proto() *api.Command {
fileCommand.proto.Instruction = &api.Command_FileInstruction{
FileInstruction: fileCommand.instruction,
}
return fileCommand.proto
}
func (fileCommand *FileCommand) Schema() *jsschema.Schema {
modifiedSchema := fileCommand.DefaultParser.Schema()
modifiedSchema.Type = jsschema.PrimitiveTypes{jsschema.ObjectType}
return modifiedSchema
}