-
Notifications
You must be signed in to change notification settings - Fork 5
/
spec.go
277 lines (257 loc) · 7.73 KB
/
spec.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
package vervet
import (
"fmt"
"io/fs"
"os"
"path/filepath"
"sort"
"time"
"github.com/bmatcuk/doublestar/v4"
"github.com/getkin/kin-openapi/openapi3"
"golang.org/x/exp/maps"
)
// SpecGlobPattern defines the expected directory structure for the versioned
// OpenAPI specs of a single resource: subdirectories by date, of the form
// YYYY-mm-dd, each containing a spec.yaml file.
const SpecGlobPattern = "**/[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]/spec.yaml"
// SpecVersions stores a collection of versioned OpenAPI specs.
type SpecVersions struct {
index VersionIndex
documents map[Version]*openapi3.T
}
// LoadSpecVersions returns SpecVersions loaded from a directory structure
// containing one or more Resource subdirectories.
func LoadSpecVersions(root string) (*SpecVersions, error) {
epPaths, err := findResources(root)
if err != nil {
return nil, err
}
return LoadSpecVersionsFileset(epPaths)
}
// LoadSpecVersionsFileset returns SpecVersions loaded from a set of spec
// files.
func LoadSpecVersionsFileset(epPaths []string) (*SpecVersions, error) {
resourceMap := map[string][]string{}
for i := range epPaths {
resourcePath := filepath.Dir(filepath.Dir(epPaths[i]))
if resourcePath == "." {
continue
}
resourceMap[resourcePath] = append(resourceMap[resourcePath], epPaths[i])
}
resourceNames := []string{}
for k := range resourceMap {
resourceNames = append(resourceNames, k)
}
sort.Strings(resourceNames)
var resourceVersions resourceVersionsSlice
for _, resourcePath := range resourceNames {
specFiles := resourceMap[resourcePath]
eps, err := LoadResourceVersionsFileset(specFiles)
if err != nil {
return nil, fmt.Errorf("failed to load resource at %q: %w", resourcePath, err)
}
resourceVersions = append(resourceVersions, eps)
}
if err := resourceVersions.validate(); err != nil {
return nil, err
}
return newSpecVersions(resourceVersions)
}
// Versions returns the distinct API versions in this collection of OpenAPI
// documents.
func (sv *SpecVersions) Versions() VersionSlice {
return sv.index.Versions()
}
// At returns the OpenAPI document that matches the given version. If the
// version is not an exact match for an API release, the OpenAPI document
// effective on the given version date for the version stability level is
// returned. Returns ErrNoMatchingVersion if there is no release matching this
// version.
func (sv *SpecVersions) At(v Version) (*openapi3.T, error) {
resolvedVersion, err := sv.index.Resolve(v)
if err != nil {
return nil, err
}
doc, ok := sv.documents[resolvedVersion]
if !ok {
panic(fmt.Sprintf("missing expected document for version %v", resolvedVersion))
}
return doc, nil
}
func (sv *SpecVersions) resolveOperations() error {
type operationKey struct {
path, operation string
}
type operationVersion struct {
// src document where the active operation was declared
src *openapi3.T
// pathItem where the active operation was declared
pathItem *openapi3.PathItem
// operation where the active operation was declared
operation *openapi3.Operation
// spec version where the active operation was declared
version Version
}
type operationVersionMap map[operationKey]operationVersion
activeOpsByStability := map[Stability]operationVersionMap{}
for _, v := range sv.index.versions {
doc := sv.documents[v]
currentActiveOps, ok := activeOpsByStability[v.Stability]
if !ok {
currentActiveOps = operationVersionMap{}
activeOpsByStability[v.Stability] = currentActiveOps
}
// Operations declared in this spec become active for the next version
// at this stability.
nextActiveOps := operationVersionMap{}
for _, path := range doc.Paths.InMatchingOrder() {
pathItem := doc.Paths.Value(path)
for _, opName := range operationNames {
op := getOperationByName(pathItem, opName)
if op != nil {
nextActiveOps[operationKey{path, opName}] = operationVersion{
doc, pathItem, op, v,
}
}
}
}
// Operations currently active for this versions's stability get
// carried forward and remain active.
for opKey, opValue := range currentActiveOps {
currentPathItem := doc.Paths.Value(opKey.path)
// skip promoting sunset operations into current document
lc, ok := opValue.operation.Extensions[ExtSnykApiLifecycle].(string)
if lc, err := ParseLifecycle(lc); ok && err == nil && lc == LifecycleSunset {
continue
}
if currentPathItem == nil {
currentPathItem = &openapi3.PathItem{
Extensions: opValue.pathItem.Extensions,
Description: opValue.pathItem.Description,
Summary: opValue.pathItem.Summary,
Servers: opValue.pathItem.Servers,
Parameters: opValue.pathItem.Parameters,
}
doc.Paths.Set(opKey.path, currentPathItem)
}
currentOp := getOperationByName(currentPathItem, opKey.operation)
if currentOp == nil {
// The added operation may reference components from its source
// document; import those that are missing here.
err := mergeComponents(doc, opValue.src, false)
if err != nil {
return fmt.Errorf(`
Cannot rollup endpoints as there are conflicts in components."
"This is a known problem with Vervet.
Please rename conflicting components as a workaround:
%w`, err)
}
setOperationByName(currentPathItem, opKey.operation, opValue.operation)
}
}
// Update currently active operations from any declared in this version.
for opKey, nextOpValue := range nextActiveOps {
currentActiveOps[opKey] = nextOpValue
}
}
return nil
}
var operationNames = []string{
"connect", "delete", "get", "head", "options", "patch", "post", "put", "trace",
}
func getOperationByName(path *openapi3.PathItem, op string) *openapi3.Operation {
switch op {
case "connect":
return path.Connect
case "delete":
return path.Delete
case "get":
return path.Get
case "head":
return path.Head
case "options":
return path.Options
case "patch":
return path.Patch
case "post":
return path.Post
case "put":
return path.Put
case "trace":
return path.Trace
default:
return nil
}
}
func setOperationByName(path *openapi3.PathItem, opName string, op *openapi3.Operation) {
switch opName {
case "connect":
path.Connect = op
case "delete":
path.Delete = op
case "get":
path.Get = op
case "head":
path.Head = op
case "options":
path.Options = op
case "patch":
path.Patch = op
case "post":
path.Post = op
case "put":
path.Put = op
case "trace":
path.Trace = op
default:
panic("unsupported operation: " + opName)
}
}
func newSpecVersions(specs resourceVersionsSlice) (*SpecVersions, error) {
versions := specs.versions()
var versionDates []time.Time
for _, v := range versions {
if len(versionDates) == 0 || versionDates[len(versionDates)-1] != v.Date {
versionDates = append(versionDates, v.Date)
}
}
documentVersions := map[Version]*openapi3.T{}
for _, spec := range specs {
for _, doc := range spec.versions {
for _, stability := range doc.Version.Stability.Resolvable() {
v := Version{Date: doc.Version.Date, Stability: stability}
doc, err := specs.at(v)
if err == ErrNoMatchingVersion {
continue
} else if err != nil {
return nil, err
}
documentVersions[v] = doc
if doc.Extensions == nil {
doc.Extensions = map[string]interface{}{}
}
doc.Extensions[ExtSnykApiVersion] = v.String()
documentVersions[v] = doc
}
}
}
sv := &SpecVersions{
index: NewVersionIndex(maps.Keys(documentVersions)),
documents: documentVersions,
}
err := sv.resolveOperations()
return sv, err
}
func findResources(root string) ([]string, error) {
var paths []string
err := doublestar.GlobWalk(os.DirFS(root), SpecGlobPattern,
func(path string, d fs.DirEntry) error {
paths = append(paths, filepath.Join(root, path))
return nil
})
if err != nil {
return nil, err
}
return paths, nil
}