forked from rhysd/actionlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action_metadata.go
293 lines (255 loc) · 10.2 KB
/
action_metadata.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
package actionlint
import (
"fmt"
"io"
"os"
"path/filepath"
"strings"
"sync"
"gopkg.in/yaml.v3"
)
//go:generate go run ./scripts/generate-popular-actions ./popular_actions.go
// ActionMetadataInput is input metadata in "inputs" section in action.yml metadata file.
// https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs
type ActionMetadataInput struct {
// Name is a name of this input.
Name string `json:"name"`
// Required is true when this input is mandatory to run the action.
Required bool `json:"required"`
}
// ActionMetadataInputs is a map from input ID to its metadata. Keys are in lower case since input
// names are case-insensitive.
// https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs
type ActionMetadataInputs map[string]*ActionMetadataInput
// UnmarshalYAML implements yaml.Unmarshaler.
func (inputs *ActionMetadataInputs) UnmarshalYAML(n *yaml.Node) error {
if n.Kind != yaml.MappingNode {
return expectedMapping("inputs", n)
}
type actionInputMetadata struct {
Required bool `yaml:"required"`
Default *string `yaml:"default"`
}
md := make(ActionMetadataInputs, len(n.Content)/2)
for i := 0; i < len(n.Content); i += 2 {
k, v := n.Content[i].Value, n.Content[i+1]
var m actionInputMetadata
if err := v.Decode(&m); err != nil {
return err
}
id := strings.ToLower(k)
if _, ok := md[id]; ok {
return fmt.Errorf("input %q is duplicated", k)
}
md[id] = &ActionMetadataInput{k, m.Required && m.Default == nil}
}
*inputs = md
return nil
}
// ActionMetadataOutput is output metadata in "outputs" section in action.yml metadata file.
// https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#outputs-for-composite-actions
type ActionMetadataOutput struct {
Name string `json:"name"`
}
// ActionMetadataOutputs is a map from output ID to its metadata. Keys are in lower case since output
// names are case-insensitive.
// https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#outputs-for-composite-actions
type ActionMetadataOutputs map[string]*ActionMetadataOutput
// UnmarshalYAML implements yaml.Unmarshaler.
func (inputs *ActionMetadataOutputs) UnmarshalYAML(n *yaml.Node) error {
if n.Kind != yaml.MappingNode {
return expectedMapping("outputs", n)
}
md := make(ActionMetadataOutputs, len(n.Content)/2)
for i := 0; i < len(n.Content); i += 2 {
k := n.Content[i].Value
id := strings.ToLower(k)
if _, ok := md[id]; ok {
return fmt.Errorf("output %q is duplicated", k)
}
md[id] = &ActionMetadataOutput{k}
}
*inputs = md
return nil
}
// ActionMetadataRuns is "runs" section of action.yaml. It defines how the action is run.
// https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs
type ActionMetadataRuns struct {
// Using is `using` configuration of action.yaml. It defines what runner is used for the action.
Using string `yaml:"using"`
// Main is `main` configuration of action.yaml for JavaScript action.
Main string `yaml:"main"`
// Pre is `pre` configuration of action.yaml for JavaScript action.
Pre string `yaml:"pre"`
// PreIf is `pre-if` configuration of action.yaml for JavaScript action.
PreIf string `yaml:"pre-if"`
// Post is `post` configuration of action.yaml for JavaScript action.
Post string `yaml:"post"`
// PostIf is `post-if` configuration of action.yaml for JavaScript action.
PostIf string `yaml:"post-if"`
// Steps is `steps` configuration of action.yaml for Composite action.
Steps []any `yaml:"steps"`
// Image is `image` of action.yaml for Docker action.
Image string `yaml:"image"`
// PreEntrypoint is `pre-entrypoint` of action.yaml for Docker action.
PreEntrypoint string `yaml:"pre-entrypoint"`
// Entrypoint is `entrypoint` of action.yaml for Docker action.
Entrypoint string `yaml:"entrypoint"`
// PostEntrypoint is `post-entrypoint` of action.yaml for Docker action.
PostEntrypoint string `yaml:"post-entrypoint"`
// Args is `args` of action.yaml for Docker action.
Args []any `yaml:"args"`
// Env is `env` of action.yaml for Docker action.
Env map[string]any `yaml:"env"`
}
// ActionMetadataBranding is "branding" section of action.yaml.
// https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#branding
type ActionMetadataBranding struct {
Icon string `yaml:"icon"`
Color string `yaml:"color"`
}
// ActionMetadata represents structure of action.yaml.
// https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
type ActionMetadata struct {
dir string
file string
// Name is "name" field of action.yaml.
Name string `yaml:"name" json:"name"`
// Description is "description" field of action.yaml.
Description string `yaml:"description" json:"-"`
// Inputs is "inputs" field of action.yaml.
Inputs ActionMetadataInputs `yaml:"inputs" json:"inputs"`
// Outputs is "outputs" field of action.yaml. Key is name of output. Description is omitted
// since actionlint does not use it.
Outputs ActionMetadataOutputs `yaml:"outputs" json:"outputs"`
// SkipInputs is flag to specify behavior of inputs check. When it is true, inputs for this
// action will not be checked.
SkipInputs bool `yaml:"-" json:"skip_inputs"`
// SkipOutputs is flag to specify a bit loose typing to outputs object. If it is set to
// true, the outputs object accepts any properties along with strictly typed props.
SkipOutputs bool `yaml:"-" json:"skip_outputs"`
// Runs is "runs" field of action.yaml.
Runs ActionMetadataRuns `yaml:"runs" json:"-"`
// Branding is "branding" field of action.yaml.
Branding ActionMetadataBranding `yaml:"branding" json:"-"`
}
// Dir returns a directory path of the action.
func (md *ActionMetadata) Dir() string {
return md.dir
}
// Path returns a file path of the action's metadata file.
func (md *ActionMetadata) Path() string {
return filepath.Join(md.dir, md.file)
}
// LocalActionsCache is cache for local actions' metadata. It avoids repeating to find/read/parse
// local action's metadata file (action.yml).
// This cache is not available across multiple repositories. One LocalActionsCache instance needs
// to be created per one repository.
type LocalActionsCache struct {
mu sync.RWMutex
proj *Project // might be nil
cache map[string]*ActionMetadata
dbg io.Writer
}
// NewLocalActionsCache creates new LocalActionsCache instance for the given project.
func NewLocalActionsCache(proj *Project, dbg io.Writer) *LocalActionsCache {
return &LocalActionsCache{
proj: proj,
cache: map[string]*ActionMetadata{},
dbg: dbg,
}
}
func newNullLocalActionsCache(dbg io.Writer) *LocalActionsCache {
// Null cache. Cache never hits. It is used when project is not found
return &LocalActionsCache{dbg: dbg}
}
func (c *LocalActionsCache) debug(format string, args ...interface{}) {
if c.dbg == nil {
return
}
format = "[LocalActionsCache] " + format + "\n"
fmt.Fprintf(c.dbg, format, args...)
}
func (c *LocalActionsCache) readCache(key string) (*ActionMetadata, bool) {
c.mu.RLock()
m, ok := c.cache[key]
c.mu.RUnlock()
return m, ok
}
func (c *LocalActionsCache) writeCache(key string, val *ActionMetadata) {
c.mu.Lock()
c.cache[key] = val
c.mu.Unlock()
}
// FindMetadata finds metadata for given spec. The spec should indicate for local action hence it
// should start with "./". The first return value can be nil even if error did not occur.
// LocalActionCache caches that the action was not found. At first search, it returns an error that
// the action was not found. But at the second search, it does not return an error even if the result
// is nil. This behavior prevents repeating to report the same error from multiple places.
// Calling this method is thread-safe.
func (c *LocalActionsCache) FindMetadata(spec string) (*ActionMetadata, bool, error) {
if c.proj == nil || !strings.HasPrefix(spec, "./") {
return nil, false, nil
}
if m, ok := c.readCache(spec); ok {
c.debug("Cache hit for %s: %v", spec, m)
return m, true, nil
}
dir := filepath.Join(c.proj.RootDir(), filepath.FromSlash(spec))
b, f, ok := c.readLocalActionMetadataFile(dir)
if !ok {
c.debug("No action metadata found in %s", dir)
// Remember action was not found
c.writeCache(spec, nil)
// Do not complain about the action does not exist (#25, #40).
// It seems a common pattern that the local action does not exist in the repository
// (e.g. Git submodule) and it is cloned at running workflow (due to a private repository).
return nil, false, nil
}
var meta ActionMetadata
if err := yaml.Unmarshal(b, &meta); err != nil {
c.writeCache(spec, nil) // Remember action was invalid
msg := strings.ReplaceAll(err.Error(), "\n", " ")
return nil, false, fmt.Errorf("could not parse action metadata in %q: %s", dir, msg)
}
meta.file = f
meta.dir = dir
c.debug("New metadata parsed from action %s: %v", dir, &meta)
c.writeCache(spec, &meta)
return &meta, false, nil
}
func (c *LocalActionsCache) readLocalActionMetadataFile(dir string) ([]byte, string, bool) {
for _, f := range []string{"action.yaml", "action.yml"} {
p := filepath.Join(dir, f)
if b, err := os.ReadFile(p); err == nil {
return b, f, true
}
}
return nil, "", false
}
// LocalActionsCacheFactory is a factory to create LocalActionsCache instances. LocalActionsCache
// should be created for each repositories. LocalActionsCacheFactory creates new LocalActionsCache
// instance per repository (project).
type LocalActionsCacheFactory struct {
caches map[string]*LocalActionsCache
dbg io.Writer
}
// GetCache returns LocalActionsCache instance for the given project. One LocalActionsCache is
// created per one repository. Created instances are cached and will be used when caches are
// requested for the same projects. This method is not thread safe.
func (f *LocalActionsCacheFactory) GetCache(p *Project) *LocalActionsCache {
if p == nil {
return newNullLocalActionsCache(f.dbg)
}
r := p.RootDir()
if c, ok := f.caches[r]; ok {
return c
}
c := NewLocalActionsCache(p, f.dbg)
f.caches[r] = c
return c
}
// NewLocalActionsCacheFactory creates a new LocalActionsCacheFactory instance.
func NewLocalActionsCacheFactory(dbg io.Writer) *LocalActionsCacheFactory {
return &LocalActionsCacheFactory{map[string]*LocalActionsCache{}, dbg}
}