-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi_client.py
463 lines (381 loc) · 13 KB
/
openapi_client.py
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
"""
Cognigy OpenAPI Authentication and Pagination Module
This module simplifies interactions with OpenAPI endpoints by handling:
1. Authentication: Supports both Basic Auth (Management UI) and API Key (Cognigy AI)
2. Pagination: Automatically manages paginated responses
3. HTTP Methods: Includes functions for GET, POST, PATCH, and DELETE requests
"""
import warnings
warnings.filterwarnings('ignore')
import requests
from requests.auth import HTTPBasicAuth
import json
import logging
def get_size_of_response(response):
"""
Helper function to get the size of a response in bytes, kb and mb.
"""
size_in_bytes = len(response.content)
size_in_mb = size_in_bytes / 1024 / 1024 # conversion in mb
logging.info(f"Response size: {size_in_mb} MB")
def load_management_ui_credentials(path_to_secrets_json):
"""
Loads and retrieves username and password from a JSON file containing secret information.
Args:
secrets_json (str): The path to the JSON file containing secret information.
Returns:
tuple: A tuple containing the username and password retrieved from the JSON file.
Example:
username, password = load_management_ui_credentials("path/to/secrets.json")
print("Username:", username)
print("Password:", password)
"""
with open(path_to_secrets_json) as f:
json_content = json.load(f)
return json_content["username"], json_content["password"]
def handle_pagination(response, base_url, endpoint, auth=None, headers=None, params=None):
"""
Helper function to handle pagination for API requests.
Args:
response (requests.Response): The initial API response.
base_url (str): The base URL of the API.
endpoint (str): The API endpoint.
auth (HTTPBasicAuth, optional): Authentication for the request.
headers (dict, optional): Headers for the request.
params (dict, optional): Parameters for the request.
Returns:
dict: The complete JSON response with all paginated items.
"""
if response.status_code != 200:
raise Exception(f"Error retrieving data from {base_url}/{endpoint}. Error: {response.text}")
json_content = response.json()
if "items" not in json_content:
return json_content
json_items = json_content["items"]
while json_content.get("nextCursor"):
params = params or {}
params["next"] = json_content["nextCursor"]
url = f'{base_url}/{endpoint}'
response = requests.get(
url,
params=params,
auth=auth,
headers=headers,
verify=True
)
if response.status_code != 200:
raise Exception(f"Error retrieving data from {url}. Error: {response.text}")
r_content = response.json()
json_items.extend(r_content['items'])
json_content['items'] = json_items
json_content['nextCursor'] = r_content.get("nextCursor")
return json_content
def get_request_basic_auth(base_url, endpoint, username, password, params={}):
"""
Method: GET
Component: Management UI
See: https://api.your-url/openapi
Args:
- base_url: url where OpenAPI is
- endpoint: enpoint to query
- username: username from the Management UI user
- password: password from the Management UI user
- params: dictionary
"""
headers = {
'Accept': 'application/json',
}
url = f'{base_url}/{endpoint}'
auth = HTTPBasicAuth(username, password)
response = requests.get(
url,
params=params,
auth=auth,
headers=headers,
verify=True
)
get_size_of_response(response)
return handle_pagination(response, base_url, endpoint, auth, headers, params)
def patch_request_basic_auth(base_url, endpoint, username, password, json_payload, params={}):
"""
Method: PATCH
Component: Management UI
See: https://api.your-url/openapi
Args:
- base_url: url where OpenAPI is
- endpoint: endpoint to query
- username: username from the Management UI user
- password: password from the Management UI user
- json_payload: dictionary containing the JSON data to be sent in the request body
- params: dictionary of query parameters (optional)
"""
headers = {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
url = f'{base_url}/{endpoint}'
auth = HTTPBasicAuth(username, password)
response = requests.patch(
url,
json=json_payload,
params=params,
auth=auth,
headers=headers,
verify=True
)
get_size_of_response(response)
return handle_pagination(response, base_url, endpoint, auth, headers, params)
def get_requests_api_key(base_url, endpoint, api_key, params={}):
"""
Method: GET
Component: Cognigy AI
See: https://api.your-url/openapi
Args:
- base_url: url where OpenAPI is
- endpoint: endpoint to query
- api_key: the API key for authentication
- params: optional parameters for the request
"""
headers = {
'Accept': 'application/json',
'X-API-Key': api_key
}
url = f'{base_url}/v2.0/{endpoint}'
response = requests.get(url, params=params, headers=headers, verify=True)
get_size_of_response(response)
return handle_pagination(response, f'{base_url}/v2.0', endpoint, headers=headers, params=params)
def post_requests_api_key(base_url, endpoint, api_key, params={}):
"""
Method: POST
Component: Cognigy AI
See: https://api.your-url/openapi
Args:
- base_url: url where OpenAPI is
- endpoint: enpoint to query
- api_key: api key to for authentication
- params: dictionary
Returns:
json: json response from the request
"""
headers = {
'Accept': 'application/json',
'X-API-Key': api_key
}
params = {
**{
'ignoreOwnership': 'true',
'api_key': api_key,
},
**params
}
url = f'{base_url}/v2.0/{endpoint}'
response = requests.post(
url,
params=params,
headers=headers,
verify=True
)
get_size_of_response(response)
if response.status_code == 204:
logging.info(f"Successful post request: {response.status_code}")
return True
else:
raise Exception(f"Error retrieving data from {url}. Error: {response.text}")
def delete_requests_api_key(base_url, endpoint, api_key, params={}):
"""
Method: DELETE
Component: Cognigy AI
See: https://api.your-url/openapi
Args:
base_url (str): The base URL where the API is hosted.
endpoint (str): The specific API endpoint to query.
api_key (str): The API key used for authentication.
params (dict): A dictionary of additional parameters to include in the request.
Returns:
dict: JSON response from the request, if applicable.
Raises:
Exception: If the request fails or the API returns an error.
"""
headers = {
'Accept': 'application/json',
'X-API-Key': api_key
}
params = {
'ignoreOwnership': 'true',
**params
}
url = f'{base_url}/v2.0/{endpoint}'
try:
response = requests.delete(
url,
params=params,
headers=headers,
verify=True
)
get_size_of_response(response)
if response.status_code in [200, 204]:
logging.info(f"Successful delete request: {response.status_code}")
return True
response.raise_for_status()
return response.json()
except requests.exceptions.RequestException as e:
logging.error(f"Error during API request to {url}: {e}")
raise Exception(f"Error retrieving data from {url}. Error: {e}")
def post_request_basic_auth(base_url, endpoint, username, password, json_payload, params={}):
"""
Method: POST
Component: Management UI
See: https://api.your-url/openapi
Args:
- base_url: url where OpenAPI is
- endpoint: endpoint to query
- username: username from the Management UI user
- password: password from the Management UI user
- json_payload: dictionary containing the JSON data to be sent in the request body
- params: dictionary of query parameters (optional)
"""
headers = {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
url = f'{base_url}/{endpoint}'
auth = HTTPBasicAuth(username, password)
response = requests.post(
url,
json=json_payload,
params=params,
auth=auth,
headers=headers,
verify=True
)
get_size_of_response(response)
if response.status_code in [200, 201, 204]:
logging.info(f"Successful post request: {response.status_code}")
return response.json() if response.content else True
else:
raise Exception(f"Error posting data to {url}. Error: {response.text}")
def put_request_basic_auth(base_url, endpoint, username, password, json_payload, params={}):
"""
Method: PUT
Component: Management UI
See: https://api.your-url/openapi
Args:
- base_url: url where OpenAPI is
- endpoint: endpoint to query
- username: username from the Management UI user
- password: password from the Management UI user
- json_payload: dictionary containing the JSON data to be sent in the request body
- params: dictionary of query parameters (optional)
"""
headers = {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
url = f'{base_url}/{endpoint}'
auth = HTTPBasicAuth(username, password)
response = requests.put(
url,
json=json_payload,
params=params,
auth=auth,
headers=headers,
verify=True
)
get_size_of_response(response)
return handle_pagination(response, base_url, endpoint, auth, headers, params)
def put_requests_api_key(base_url, endpoint, api_key, json_payload, params={}):
"""
Method: PUT
Component: Cognigy AI
See: https://api.your-url/openapi
Args:
- base_url: url where OpenAPI is
- endpoint: endpoint to query
- api_key: the API key for authentication
- json_payload: dictionary containing the JSON data to be sent in the request body
- params: optional parameters for the request
"""
headers = {
'Accept': 'application/json',
'Content-Type': 'application/json',
'X-API-Key': api_key
}
params = {
'ignoreOwnership': 'true',
**params
}
url = f'{base_url}/v2.0/{endpoint}'
response = requests.put(
url,
json=json_payload,
params=params,
headers=headers,
verify=True
)
get_size_of_response(response)
return handle_pagination(response, f'{base_url}/v2.0', endpoint, headers=headers, params=params)
def patch_requests_api_key(base_url, endpoint, api_key, json_payload, params={}):
"""
Method: PATCH
Component: Cognigy AI
See: https://api.your-url/openapi
Args:
- base_url: url where OpenAPI is
- endpoint: endpoint to query
- api_key: the API key for authentication
- json_payload: dictionary containing the JSON data to be sent in the request body
- params: optional parameters for the request
"""
headers = {
'Accept': 'application/json',
'Content-Type': 'application/json',
'X-API-Key': api_key
}
params = {
'ignoreOwnership': 'true',
**params
}
url = f'{base_url}/v2.0/{endpoint}'
response = requests.patch(
url,
json=json_payload,
params=params,
headers=headers,
verify=True
)
get_size_of_response(response)
return handle_pagination(response, f'{base_url}/v2.0', endpoint, headers=headers, params=params)
def delete_request_basic_auth(base_url, endpoint, username, password, params={}):
"""
Method: DELETE
Component: Management UI
See: https://api.your-url/openapi
Args:
- base_url: url where OpenAPI is
- endpoint: endpoint to query
- username: username from the Management UI user
- password: password from the Management UI user
- params: dictionary of query parameters (optional)
"""
headers = {
'Accept': 'application/json',
}
url = f'{base_url}/{endpoint}'
auth = HTTPBasicAuth(username, password)
try:
response = requests.delete(
url,
params=params,
auth=auth,
headers=headers,
verify=True
)
get_size_of_response(response)
if response.status_code in [200, 204]:
logging.info(f"Successful delete request: {response.status_code}")
return True
response.raise_for_status()
return response.json()
except requests.exceptions.RequestException as e:
logging.error(f"Error during DELETE request to {url}: {e}")
raise Exception(f"Error deleting data from {url}. Error: {e}")