-
Notifications
You must be signed in to change notification settings - Fork 5
/
inliner.go
156 lines (128 loc) · 3.3 KB
/
inliner.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
package vervet
import (
"github.com/getkin/kin-openapi/openapi3"
"github.com/snyk/vervet/v8/internal/openapiwalker"
)
// Inliner inlines the component.
type Inliner struct {
refs map[string]struct{}
}
func (in *Inliner) ProcessCallbackRef(ref *openapi3.CallbackRef) error {
if in.matched(ref.Ref) {
return RemoveRefs(ref)
}
return nil
}
func (in *Inliner) ProcessExampleRef(ref *openapi3.ExampleRef) error {
if in.matched(ref.Ref) {
return RemoveRefs(ref)
}
return nil
}
func (in *Inliner) ProcessHeaderRef(ref *openapi3.HeaderRef) error {
if in.matched(ref.Ref) {
return RemoveRefs(ref)
}
return nil
}
func (in *Inliner) ProcessLinkRef(ref *openapi3.LinkRef) error {
if in.matched(ref.Ref) {
return RemoveRefs(ref)
}
return nil
}
func (in *Inliner) ProcessParameterRef(ref *openapi3.ParameterRef) error {
if in.matched(ref.Ref) {
return RemoveRefs(ref)
}
return nil
}
func (in *Inliner) ProcessRequestBodyRef(ref *openapi3.RequestBodyRef) error {
if in.matched(ref.Ref) {
return RemoveRefs(ref)
}
return nil
}
func (in *Inliner) ProcessResponseRef(ref *openapi3.ResponseRef) error {
if in.matched(ref.Ref) {
return RemoveRefs(ref)
}
return nil
}
func (in *Inliner) ProcessSchemaRef(ref *openapi3.SchemaRef) error {
if in.matched(ref.Ref) {
return RemoveRefs(ref)
}
return nil
}
func (in *Inliner) ProcessSecuritySchemeRef(ref *openapi3.SecuritySchemeRef) error {
if in.matched(ref.Ref) {
return RemoveRefs(ref)
}
return nil
}
// NewInliner returns a new Inliner instance.
func NewInliner() *Inliner {
return &Inliner{refs: map[string]struct{}{}}
}
// AddRef adds a JSON Reference URI to the set of references to be inlined.
func (in *Inliner) AddRef(ref string) {
in.refs[ref] = struct{}{}
}
// Inline inlines all the JSON References previously indicated with AddRef in
// the given OpenAPI document.
func (in *Inliner) Inline(doc *openapi3.T) error {
if len(in.refs) == 0 {
return nil
}
return openapiwalker.ProcessRefs(doc, in)
}
func (in *Inliner) matched(ref string) bool {
_, match := in.refs[ref]
return match
}
// RemoveRefs removes all $ref locations from an OpenAPI document object
// fragment. If the reference has already been resolved, this has the effect of
// "inlining" the formerly referenced object when serializing the OpenAPI
// document.
func RemoveRefs(target interface{}) error {
return openapiwalker.ProcessRefs(target, clearRefs{})
}
type clearRefs struct {
}
func (c clearRefs) ProcessCallbackRef(ref *openapi3.CallbackRef) error {
ref.Ref = ""
return nil
}
func (c clearRefs) ProcessExampleRef(ref *openapi3.ExampleRef) error {
ref.Ref = ""
return nil
}
func (c clearRefs) ProcessHeaderRef(ref *openapi3.HeaderRef) error {
ref.Ref = ""
return nil
}
func (c clearRefs) ProcessLinkRef(ref *openapi3.LinkRef) error {
ref.Ref = ""
return nil
}
func (c clearRefs) ProcessParameterRef(ref *openapi3.ParameterRef) error {
ref.Ref = ""
return nil
}
func (c clearRefs) ProcessRequestBodyRef(ref *openapi3.RequestBodyRef) error {
ref.Ref = ""
return nil
}
func (c clearRefs) ProcessResponseRef(ref *openapi3.ResponseRef) error {
ref.Ref = ""
return nil
}
func (c clearRefs) ProcessSchemaRef(ref *openapi3.SchemaRef) error {
ref.Ref = ""
return nil
}
func (c clearRefs) ProcessSecuritySchemeRef(ref *openapi3.SecuritySchemeRef) error {
ref.Ref = ""
return nil
}