@@ -82,7 +82,8 @@ public String createApi(Raml raml, String name, JSONObject config) {
82
82
final Resource rootResource = getRootResource (api ).get ();
83
83
deleteDefaultModels (api );
84
84
createModels (api , raml .getSchemas (), false );
85
- createResources (api , createResourcePath (api , rootResource , raml .getBasePath ()), raml .getResources (), false );
85
+ createResources (api , createResourcePath (api , rootResource , raml .getBasePath ()),
86
+ new HashMap <String , UriParameter >(), raml .getResources (), false );
86
87
} catch (Throwable t ) {
87
88
LOG .error ("Error creating API, rolling back" , t );
88
89
rollback (api );
@@ -99,7 +100,8 @@ public void updateApi(String apiId, Raml raml, JSONObject config) {
99
100
Optional <Resource > rootResource = getRootResource (api );
100
101
101
102
createModels (api , raml .getSchemas (), true );
102
- createResources (api , createResourcePath (api , rootResource .get (), raml .getBasePath ()), raml .getResources (), true );
103
+ createResources (api , createResourcePath (api , rootResource .get (), raml .getBasePath ()),
104
+ new HashMap <String , UriParameter >(), raml .getResources (), true );
103
105
104
106
cleanupResources (api , this .paths );
105
107
cleanupModels (api , this .models );
@@ -143,13 +145,17 @@ private void createModel(RestApi api, String schemaName, String schemaValue) {
143
145
createModel (api , schemaName , null , schemaValue , isJson ? "application/json" : "text/xml" );
144
146
}
145
147
146
- private void createResources (RestApi api , Resource rootResource , Map <String , org .raml .model .Resource > resources , boolean update ) {
148
+ private void createResources (RestApi api , Resource rootResource , Map <String , UriParameter > ancestorRequestParameters ,
149
+ Map <String , org .raml .model .Resource > resources , boolean update ) {
147
150
for (Map .Entry <String , org .raml .model .Resource > entry : resources .entrySet ()) {
148
151
final org .raml .model .Resource resource = entry .getValue ();
149
152
final Resource parentResource = createResourcePath (api , rootResource , entry .getKey ());
150
153
151
- createMethods (api , parentResource , resource .getActions (), update );
152
- createResources (api , parentResource , resource .getResources (), update );
154
+ Map <String , UriParameter > requestParameters = new HashMap <String , UriParameter >(resource .getUriParameters ());
155
+ requestParameters .putAll (ancestorRequestParameters );
156
+
157
+ createMethods (api , parentResource , requestParameters , resource .getActions (), update );
158
+ createResources (api , parentResource , requestParameters , resource .getResources (), update );
153
159
}
154
160
}
155
161
@@ -179,9 +185,10 @@ private Resource createResourcePath(RestApi api, Resource resource, String fullP
179
185
return parentResource ;
180
186
}
181
187
182
- private void createMethods (RestApi api , Resource resource , Map <ActionType , Action > actions , boolean update ) {
188
+ private void createMethods (RestApi api , Resource resource , Map <String , UriParameter > requestParameters ,
189
+ Map <ActionType , Action > actions , boolean update ) {
183
190
for (Map .Entry <ActionType , Action > entry : actions .entrySet ()) {
184
- createMethod (api , resource , entry .getKey (), entry .getValue (), update );
191
+ createMethod (api , resource , entry .getKey (), entry .getValue (), requestParameters , update );
185
192
}
186
193
187
194
if (update ) {
@@ -207,7 +214,8 @@ private void cleanupMethods (Resource resource, Map<ActionType, Action> actions)
207
214
}
208
215
}
209
216
210
- private void createMethod (final RestApi api , final Resource resource , final ActionType httpMethod , final Action action , boolean update ) {
217
+ private void createMethod (final RestApi api , final Resource resource , final ActionType httpMethod , final Action action ,
218
+ final Map <String , UriParameter > requestParameters , boolean update ) {
211
219
Method method ;
212
220
213
221
if (update && methodExists (resource , httpMethod .toString ())) {
@@ -257,7 +265,7 @@ private void createMethod(final RestApi api, final Resource resource, final Acti
257
265
method = resource .putMethod (input , httpMethod .toString ());
258
266
}
259
267
260
- for (Map .Entry <String , UriParameter > entry : action . getResource (). getUriParameters () .entrySet ()) {
268
+ for (Map .Entry <String , UriParameter > entry : requestParameters .entrySet ()) {
261
269
updateMethod (api , method , "path" , entry .getKey (), entry .getValue ().isRequired ());
262
270
}
263
271
0 commit comments