-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmodels.go
178 lines (152 loc) · 4.41 KB
/
models.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package aviator
import (
"os"
"os/exec"
)
type AviatorYaml struct {
Spruce []Spruce `yaml:"spruce"`
Squash Squash `yaml:"squash"`
Fly Fly `yaml:"fly"`
Kube Kube `yaml:"kubectl"`
Exec []Executable `yaml:"exec"`
}
type Spruce struct {
Base string `yaml:"base"`
Merge []Merge `yaml:"merge"`
ForEach ForEach `yaml:"for_each"`
Prune []string `yaml:"prune"`
CherryPicks []string `yaml:"cherry_pick"`
SkipEval bool `yaml:"skip_eval"`
GoPatch bool `yaml:"go_patch"`
To string `yaml:"to"`
ToDir string `yaml:"to_dir"`
Modify Modify `yaml:"modify"`
}
type Merge struct {
With With `yaml:"with"`
WithIn string `yaml:"with_in"`
WithAllIn string `yaml:"with_all_in"`
Except []string `yaml:"except"`
Regexp string `yaml:"regexp"`
}
type With struct {
Files []string `yaml:"files"`
InDir string `yaml:"in_dir"`
Skip bool `yaml:"skip_non_existing"`
}
type ForEach struct {
Files []string `yaml:"files"`
InDir string `yaml:"in_dir"`
Skip bool `yaml:"skip_non_existing"`
In string `yaml:"in"`
Except []string `yaml:"except"`
SubDirs bool `yaml:"include_sub_dirs"`
EnableMatching bool `yaml:"enable_matching"`
CopyParents bool `yaml:"copy_parents"`
ForAll string `yaml:"for_all"`
Regexp string `yaml:"regexp"`
}
type Fly struct {
Name string `yaml:"name"`
Target string `yaml:"target"`
Config string `yaml:"config"`
TeamName string `yaml:"team_name"`
Vars []string `yaml:"load_vars_from"`
Expose bool `yaml:"expose"`
Var map[string]string `yaml:"vars"`
NonInteractive bool `yaml:"non_interactive"`
CheckCreds bool `yaml:"check_creds"`
//Validate Pipeline
ValidatePipeline bool `yaml:"validate_pipeline"`
Strict bool `yaml:"strict"`
//Format Pipeline
FormatPipeline bool `yaml:"format_pipeline"`
Write bool `yaml:"write"`
}
type Kube struct {
Apply KubeApply `yaml:"apply"`
}
type KubeApply struct {
File string `yaml:"file"`
Force bool `yaml:"force"`
DryRun bool `yaml:"dry_run"`
Overwrite bool `yaml:"no_overwrite"`
Recursive bool `yaml:"recursive"`
Output string `yaml:"output"`
Kustomize bool `yaml:"kustomize"`
Validate bool `yaml:"validate"`
}
type MergeConf struct {
Files []string
Prune []string
CherryPicks []string
SkipEval bool
FallbackAppend bool
EnableGoPatch bool
}
type Modify struct {
Delete []string `yaml:"delete"`
Set []PathVal `yaml:"set"`
Update []PathVal `yaml:"update"`
}
type PathVal struct {
Path string `yaml:"path"`
Value string `yaml:"value"`
}
type Squash struct {
Contents []SquashContent `yaml:"contents"`
To string `yaml:"to"`
}
type SquashContent struct {
Files []string `yaml:"files"`
Except []string `yaml:"except"`
Dir string `yaml:"dir"`
}
type Executable struct {
Executable string `yaml:"executable"`
GlobalOptions []Option `yaml:"global_options"`
Command Command `yaml:"command"`
Args []string `yaml:"args"`
}
type Option struct {
Name string `yaml:"name"`
Value string `yaml:"value"`
}
type Command struct {
Name string `yaml:"name"`
Options []Option `yaml:"options"`
}
//go:generate counterfeiter . SpruceProcessor
type SpruceProcessor interface {
Process([]Spruce) error
ProcessWithOpts([]Spruce, bool, bool, bool) error
}
//go:generate counterfeiter . Executor
type Executor interface {
Command(interface{}) ([]*exec.Cmd, error)
}
//go:generate counterfeiter . SpruceClient
type SpruceClient interface {
MergeWithOpts(MergeConf) ([]byte, error)
}
//go:generate counterfeiter . FileStore
type FileStore interface {
ReadFile(string) ([]byte, bool)
WriteFile(string, []byte) error
ReadDir(string) ([]os.FileInfo, error)
Walk(string) ([]string, error)
}
//go:generate counterfeiter . Validator
type Validator interface {
ValidateSpruce([]Spruce) error
}
//go:generate counterfeiter . Modifier
type Modifier interface {
Modify([]byte, Modify) ([]byte, error)
}
//go:generate counterfeiter . GomlClient
type GomlClient interface {
Delete([]byte, string) ([]byte, error)
Set([]byte, string, string) ([]byte, error)
Update([]byte, string, string) ([]byte, error)
}