@@ -192,9 +192,15 @@ func ReadOrganizationID(writer http.ResponseWriter, request *http.Request, auth
192
192
return 0 , false
193
193
}
194
194
195
- successful := CheckPermissions (writer , request , ctypes .OrgID (organizationID ), auth )
195
+ orgID , err := types .Uint64ToUint32 (organizationID )
196
+ if err != nil {
197
+ HandleOrgIDError (writer , err )
198
+ return 0 , false
199
+ }
196
200
197
- return ctypes .OrgID (organizationID ), successful
201
+ successful := CheckPermissions (writer , request , ctypes .OrgID (orgID ), auth )
202
+
203
+ return ctypes .OrgID (orgID ), successful
198
204
}
199
205
200
206
// ReadClusterNames does the same as `readClusterName`, except for multiple clusters.
@@ -223,6 +229,30 @@ func ReadClusterNames(writer http.ResponseWriter, request *http.Request) ([]ctyp
223
229
return clusterNamesConverted , true
224
230
}
225
231
232
+ // parseAndValidateOrgID parses and validates a single organization ID string.
233
+ func parseAndValidateOrgID (writer http.ResponseWriter , orgStr string ) (ctypes.OrgID , bool ) {
234
+ v , err := strconv .ParseUint (orgStr , 10 , 64 )
235
+ if err != nil {
236
+ handleOrgIDParsingError (writer , orgStr , "integer array expected" )
237
+ return 0 , false
238
+ }
239
+ orgInt , err := types .Uint64ToUint32 (v )
240
+ if err != nil {
241
+ handleOrgIDParsingError (writer , orgStr , "integer array expected" )
242
+ return 0 , false
243
+ }
244
+ return ctypes .OrgID (orgInt ), true
245
+ }
246
+
247
+ // handleOrgIDParsingError handles the error for parsing organization IDs.
248
+ func handleOrgIDParsingError (writer http.ResponseWriter , orgStr , errString string ) {
249
+ types .HandleServerError (writer , & types.RouterParsingError {
250
+ ParamName : "organizations" ,
251
+ ParamValue : orgStr ,
252
+ ErrString : errString ,
253
+ })
254
+ }
255
+
226
256
// ReadOrganizationIDs does the same as `readOrganizationID`, except for multiple organizations.
227
257
func ReadOrganizationIDs (writer http.ResponseWriter , request * http.Request ) ([]ctypes.OrgID , bool ) {
228
258
organizationsParam , err := GetRouterParam (request , "organizations" )
@@ -233,16 +263,11 @@ func ReadOrganizationIDs(writer http.ResponseWriter, request *http.Request) ([]c
233
263
234
264
organizationsConverted := make ([]ctypes.OrgID , 0 )
235
265
for _ , orgStr := range SplitRequestParamArray (organizationsParam ) {
236
- orgInt , err := strconv .ParseUint (orgStr , 10 , 64 )
237
- if err != nil {
238
- types .HandleServerError (writer , & types.RouterParsingError {
239
- ParamName : "organizations" ,
240
- ParamValue : orgStr ,
241
- ErrString : "integer array expected" ,
242
- })
266
+ orgID , ok := parseAndValidateOrgID (writer , orgStr )
267
+ if ! ok {
243
268
return []ctypes.OrgID {}, false
244
269
}
245
- organizationsConverted = append (organizationsConverted , ctypes . OrgID ( orgInt ) )
270
+ organizationsConverted = append (organizationsConverted , orgID )
246
271
}
247
272
248
273
return organizationsConverted , true
0 commit comments