19
19
-- Module for parsing swagger file
20
20
21
21
local _M = {}
22
+ local utils = require " lib/utils"
22
23
23
24
-- Convert passed-in swagger body to valid lua table
24
25
-- @param swagger swagger file to parse
@@ -38,16 +39,34 @@ function _M.parseSwagger(swagger)
38
39
for verb , value in pairs (verbObj ) do
39
40
decoded .resources [path ].operations [verb ] = {}
40
41
local verbObj = decoded .resources [path ].operations [verb ]
42
+ verbObj .policies = utils .deepCloneTable (policies ) or {}
43
+ verbObj .security = security
41
44
if backends ~= nil then
42
45
local backend = (backends [" all" ] ~= nil ) and backends [" all" ] or backends [value .operationId ]
43
46
verbObj .backendUrl = backend .backendUrl
44
47
verbObj .backendMethod = (backend .backendMethod == ' keep' ) and verb or backend .backendMethod
48
+ if backend .policy ~= nil then
49
+ local globalReqMappingPolicy = nil ;
50
+ for _ , policy in pairs (verbObj .policies ) do
51
+ if policy .type == ' reqMapping' then
52
+ globalReqMappingPolicy = policy ;
53
+ end
54
+ end
55
+ if globalReqMappingPolicy ~= nil then
56
+ for _ , v in pairs (backend .policy .value ) do
57
+ globalReqMappingPolicy .value [# globalReqMappingPolicy .value + 1 ] = v
58
+ end
59
+ else
60
+ verbObj .policies [# verbObj .policies + 1 ] = {
61
+ type = ' reqMapping' ,
62
+ value = backend .policy .value
63
+ }
64
+ end
65
+ end
45
66
else
46
67
verbObj .backendUrl = ' '
47
68
verbObj .backendMethod = verb
48
69
end
49
- verbObj .policies = policies
50
- verbObj .security = security
51
70
end
52
71
end
53
72
return decoded
@@ -66,10 +85,18 @@ function parseBackends(swagger)
66
85
local caseObj = v .case
67
86
for _ , case in pairs (caseObj ) do
68
87
for _ , op in pairs (case .operations ) do
69
- res [op ] = {
70
- backendUrl = case .execute [1 ][" invoke" ][" target-url" ],
71
- backendMethod = case .execute [1 ][" invoke" ].verb
72
- }
88
+ res [op ] = {}
89
+ for _ , opPolicy in pairs (case .execute ) do
90
+ if opPolicy .invoke ~= nil then
91
+ res [op ].backendUrl = opPolicy .invoke [" target-url" ]
92
+ res [op ].backendMethod = opPolicy .invoke .verb
93
+ elseif opPolicy [" set-variable" ] ~= nil then
94
+ local reqMappingPolicy = parseRequestMapping (case )
95
+ if reqMappingPolicy ~= nil then
96
+ res [op ].policy = reqMappingPolicy
97
+ end
98
+ end
99
+ end
73
100
end
74
101
end
75
102
return res
91
118
function parsePolicies (swagger )
92
119
local policies = {}
93
120
-- parse rate limit
94
- policies = parseRateLimit (swagger , policies )
95
- policies = parseRequestMapping (swagger , policies )
121
+ local rlObj = swagger [" x-gateway-rate-limit" ]
122
+ rlObj = (rlObj == nil ) and swagger [" x-ibm-rate-limit" ] or rlObj
123
+ local rateLimitPolicy = parseRateLimit (rlObj )
124
+ if rateLimitPolicy ~= nil then
125
+ policies [# policies + 1 ] = rateLimitPolicy
126
+ end
127
+ -- parse set-variable
128
+ local configObj = swagger [" x-gateway-configuration" ]
129
+ configObj = (configObj == nil ) and swagger [" x-ibm-configuration" ] or configObj
130
+ if configObj ~= nil then
131
+ local reqMappingPolicy = parseRequestMapping (configObj .assembly )
132
+ if reqMappingPolicy ~= nil then
133
+ policies [# policies + 1 ] = reqMappingPolicy
134
+ end
135
+ end
96
136
return policies
97
137
end
98
138
99
139
--- Parse rate limit
100
- function parseRateLimit (swagger , policies )
101
- local rlObj = swagger [" x-gateway-rate-limit" ]
102
- rlObj = (rlObj == nil ) and swagger [" x-ibm-rate-limit" ] or rlObj
103
- local unit
104
- if rlObj ~= nil then
140
+ function parseRateLimit (rlObj )
141
+ if rlObj ~= nil and rlObj [1 ] ~= nil then
105
142
rlObj = rlObj [1 ]
106
143
if rlObj .unit == " second" then
107
144
unit = 1
@@ -114,7 +151,7 @@ function parseRateLimit(swagger, policies)
114
151
else
115
152
unit = 60 -- default to minute
116
153
end
117
- policies [ # policies + 1 ] = {
154
+ return {
118
155
type = " rateLimit" ,
119
156
value = {
120
157
interval = unit * rlObj .units ,
@@ -124,14 +161,14 @@ function parseRateLimit(swagger, policies)
124
161
}
125
162
}
126
163
end
127
- return policies
164
+ return nil
128
165
end
129
166
130
167
--- Parse request mapping
131
- function parseRequestMapping (swagger , policies )
168
+ function parseRequestMapping (configObj )
132
169
local valueList = {}
133
- if swagger [ " x-ibm-configuration " ] ~= nil then
134
- for _ , obj in pairs (swagger [ " x-ibm-configuration " ]. assembly .execute ) do
170
+ if configObj ~= nil then
171
+ for _ , obj in pairs (configObj .execute ) do
135
172
for policy , v in pairs (obj ) do
136
173
if policy == " set-variable" then
137
174
for _ , actionObj in pairs (v .actions ) do
@@ -156,12 +193,13 @@ function parseRequestMapping(swagger, policies)
156
193
end
157
194
end
158
195
if next (valueList ) ~= nil then
159
- policies [ # policies + 1 ] = {
196
+ return {
160
197
type = " reqMapping" ,
161
198
value = valueList
162
199
}
200
+ else
201
+ return nil
163
202
end
164
- return policies
165
203
end
166
204
167
205
--- Parse security in swagger
@@ -170,19 +208,34 @@ function parseSecurity(swagger)
170
208
local security = {}
171
209
if swagger [" securityDefinitions" ] ~= nil then
172
210
local secObject = swagger [" securityDefinitions" ]
173
- for key , sec in pairs (secObject ) do
174
- if sec .type == ' apiKey' then
175
- security [# security + 1 ] = {
176
- type = sec .type ,
177
- scope = " api" ,
178
- header = sec .name
179
- }
180
- elseif sec .type == ' oauth2' then
181
- security [# security + 1 ] = {
182
- type = sec .type ,
183
- scope = " api" ,
184
- provider = key
185
- }
211
+ if utils .tableLength (secObject ) == 2 then
212
+ secObj = {
213
+ type = ' clientSecret' ,
214
+ scope = ' api'
215
+ }
216
+ for key , sec in pairs (secObject ) do
217
+ if key == ' client_id' then
218
+ secObj .idFieldName = sec .name
219
+ elseif key == ' client_secret' then
220
+ secObj .secretFieldName = sec .name
221
+ end
222
+ end
223
+ security [# security + 1 ] = secObj
224
+ else
225
+ for key , sec in pairs (secObject ) do
226
+ if sec .type == ' apiKey' then
227
+ security [# security + 1 ] = {
228
+ type = sec .type ,
229
+ scope = " api" ,
230
+ header = sec .name
231
+ }
232
+ elseif sec .type == ' oauth2' then
233
+ security [# security + 1 ] = {
234
+ type = sec .type ,
235
+ scope = " api" ,
236
+ provider = key
237
+ }
238
+ end
186
239
end
187
240
end
188
241
end
0 commit comments