@@ -140,66 +140,69 @@ def _parse_parameter_objects(
140
140
https://swagger.io/specification/#parameter-object
141
141
"""
142
142
for param_obj in deepcopy (parameter_objects ):
143
- param_name = param_obj ["name" ]
144
- try :
145
- param_location = param_obj ["in" ]
146
- param_def = ParamDef .from_param_obj (param_obj )
147
- # In case path parameters are incorrectly documented as required: false, we force make them required as path
148
- # parameters will always be required for our client
149
- is_required = True if param_location == "path" else None
150
- param_type_annotation = param_type_util .resolve_type_annotation (
151
- param_name , param_def , _is_required = is_required
152
- )
153
- if param_location in ["header" , "cookies" ]:
154
- # We currently don't support these
155
- continue
156
- elif param_location == "path" :
157
- if param_name not in [x [0 ] for x in path_param_fields ]:
158
- # Handle duplicates. Some API specs incorrectly document duplicated parameters
159
- path_param_fields .append (DataclassModelField (param_name , param_type_annotation ))
160
- elif param_location == "query" :
161
- if method .upper () != "GET" :
162
- # Annotate query params for non GET endpoints
163
- param_type_annotation = param_type_util .annotate_type (param_type_annotation , "query" )
164
-
165
- if "schema" in param_obj :
166
- # defined as model. We unpack the model details
167
- schema_obj = param_obj ["schema" ]
168
- if "items" in schema_obj :
169
- schema_obj = schema_obj ["items" ]
170
-
171
- if "properties" in schema_obj :
172
- properties = schema_obj ["properties" ]
173
-
174
- for k , v in properties .items ():
175
- if "name" not in properties [k ]:
176
- properties [k ]["name" ] = k
177
- properties [k ]["in" ] = param_location
178
-
179
- # Replace the param objects and parse it again
180
- parameter_objects .clear ()
181
- parameter_objects .extend (properties .values ())
182
- _parse_parameter_objects (
183
- method , parameter_objects , path_param_fields , body_or_query_param_fields
184
- )
143
+ # NOTE: param_obj will be empty here if its $ref wasn't successfully resolved. We will ignore these
144
+ if param_obj :
145
+ param_name = ""
146
+ try :
147
+ param_name = param_obj ["name" ]
148
+ param_location = param_obj ["in" ]
149
+ param_def = ParamDef .from_param_obj (param_obj )
150
+ # In case path parameters are incorrectly documented as required: false, we force make them required as
151
+ # path parameters will always be required for our client
152
+ is_required = True if param_location == "path" else None
153
+ param_type_annotation = param_type_util .resolve_type_annotation (
154
+ param_name , param_def , _is_required = is_required
155
+ )
156
+ if param_location in ["header" , "cookies" ]:
157
+ # We currently don't support these
158
+ continue
159
+ elif param_location == "path" :
160
+ if param_name not in [x [0 ] for x in path_param_fields ]:
161
+ # Handle duplicates. Some API specs incorrectly document duplicated parameters
162
+ path_param_fields .append (DataclassModelField (param_name , param_type_annotation ))
163
+ elif param_location == "query" :
164
+ if method .upper () != "GET" :
165
+ # Annotate query params for non GET endpoints
166
+ param_type_annotation = param_type_util .annotate_type (param_type_annotation , "query" )
167
+
168
+ if "schema" in param_obj :
169
+ # defined as model. We unpack the model details
170
+ schema_obj = param_obj ["schema" ]
171
+ if "items" in schema_obj :
172
+ schema_obj = schema_obj ["items" ]
173
+
174
+ if "properties" in schema_obj :
175
+ properties = schema_obj ["properties" ]
176
+
177
+ for k , v in properties .items ():
178
+ if "name" not in properties [k ]:
179
+ properties [k ]["name" ] = k
180
+ properties [k ]["in" ] = param_location
181
+
182
+ # Replace the param objects and parse it again
183
+ parameter_objects .clear ()
184
+ parameter_objects .extend (properties .values ())
185
+ _parse_parameter_objects (
186
+ method , parameter_objects , path_param_fields , body_or_query_param_fields
187
+ )
188
+ else :
189
+ _add_body_or_query_param_field (
190
+ body_or_query_param_fields , param_name , param_type_annotation , param_obj = param_obj
191
+ )
192
+
185
193
else :
186
194
_add_body_or_query_param_field (
187
195
body_or_query_param_fields , param_name , param_type_annotation , param_obj = param_obj
188
196
)
189
-
190
197
else :
191
- _add_body_or_query_param_field (
192
- body_or_query_param_fields , param_name , param_type_annotation , param_obj = param_obj
193
- )
194
- else :
195
- raise NotImplementedError (f"Unsupported param 'in': { param_location } " )
196
- except Exception :
197
- logger .error (
198
- "Encountered an error while processing a param object in 'parameters':\n "
199
- f"- param name: { param_name } \n "
200
- f"- param object: { param_obj } "
201
- )
202
- raise
198
+ raise NotImplementedError (f"Unsupported param 'in': { param_location } " )
199
+ except Exception :
200
+ logger .error (
201
+ "Encountered an error while processing a param object in 'parameters':\n "
202
+ f"- param name: { param_name } \n "
203
+ f"- param object: { param_obj } "
204
+ )
205
+ raise
203
206
204
207
205
208
def _parse_request_body_object (
0 commit comments