-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathcheck_request_parameter_x_extensible_enum_value_removed.go
85 lines (78 loc) · 2.22 KB
/
check_request_parameter_x_extensible_enum_value_removed.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
package checker
import (
"github.com/tufin/oasdiff/diff"
"golang.org/x/exp/slices"
)
const (
RequestParameterXExtensibleEnumValueRemovedId = "request-parameter-x-extensible-enum-value-removed"
)
func RequestParameterXExtensibleEnumValueRemovedCheck(diffReport *diff.Diff, operationsSources *diff.OperationsSourcesMap, config *Config) Changes {
result := make(Changes, 0)
if diffReport.PathsDiff == nil {
return result
}
for path, pathItem := range diffReport.PathsDiff.Modified {
if pathItem.OperationsDiff == nil {
continue
}
for operation, operationItem := range pathItem.OperationsDiff.Modified {
if operationItem.ParametersDiff == nil {
continue
}
if operationItem.ParametersDiff.Modified == nil {
continue
}
for paramLocation, paramItems := range operationItem.ParametersDiff.Modified {
for paramName, paramItem := range paramItems {
if paramItem.SchemaDiff == nil {
continue
}
if paramItem.SchemaDiff.ExtensionsDiff == nil {
continue
}
if paramItem.SchemaDiff.ExtensionsDiff.Modified == nil {
continue
}
if paramItem.SchemaDiff.ExtensionsDiff.Modified[diff.XExtensibleEnumExtension] == nil {
continue
}
from, ok := paramItem.SchemaDiff.Base.Extensions[diff.XExtensibleEnumExtension].([]interface{})
if !ok {
continue
}
to, ok := paramItem.SchemaDiff.Revision.Extensions[diff.XExtensibleEnumExtension].([]interface{})
if !ok {
continue
}
fromSlice := make([]string, len(from))
for i, item := range from {
fromSlice[i] = item.(string)
}
toSlice := make([]string, len(to))
for i, item := range to {
toSlice[i] = item.(string)
}
deletedVals := make([]string, 0)
for _, fromVal := range fromSlice {
if !slices.Contains(toSlice, fromVal) {
deletedVals = append(deletedVals, fromVal)
}
}
for _, enumVal := range deletedVals {
result = append(result, NewApiChange(
RequestParameterXExtensibleEnumValueRemovedId,
config,
[]any{enumVal, paramLocation, paramName},
"",
operationsSources,
operationItem.Revision,
operation,
path,
))
}
}
}
}
}
return result
}