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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
|
# -*- coding: utf-8 -*-
"""
* Copyright (c) 2017 SUSE LLC
*
* openATTIC is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2.
*
* This package is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
"""
import inspect
import logging
import re
import requests
from requests.auth import AuthBase
from requests.exceptions import ConnectionError, InvalidURL, Timeout
from .settings import Settings
try:
from requests.packages.urllib3.exceptions import SSLError
except ImportError:
from urllib3.exceptions import SSLError # type: ignore
from typing import List, Optional
from mgr_util import build_url
logger = logging.getLogger('rest_client')
class TimeoutRequestsSession(requests.Session):
"""
Set timeout argument for all requests if this is not already done.
"""
def request(self, *args, **kwargs):
if ((args[8] if len(args) > 8 else None) is None) \
and kwargs.get('timeout') is None:
if Settings.REST_REQUESTS_TIMEOUT > 0:
kwargs['timeout'] = Settings.REST_REQUESTS_TIMEOUT
return super(TimeoutRequestsSession, self).request(*args, **kwargs)
class RequestException(Exception):
def __init__(self,
message,
status_code=None,
content=None,
conn_errno=None,
conn_strerror=None):
super(RequestException, self).__init__(message)
self.status_code = status_code
self.content = content
self.conn_errno = conn_errno
self.conn_strerror = conn_strerror
class BadResponseFormatException(RequestException):
def __init__(self, message):
super(BadResponseFormatException, self).__init__(
"Bad response format" if message is None else message, None)
class _ResponseValidator(object):
"""Simple JSON schema validator
This class implements a very simple validator for the JSON formatted
messages received by request responses from a RestClient instance.
The validator validates the JSON response against a "structure" string that
specifies the structure that the JSON response must comply. The validation
procedure raises a BadResponseFormatException in case of a validation
failure.
The structure syntax is given by the following grammar:
Structure ::= Level
Level ::= Path | Path '&' Level
Path ::= Step | Step '>'+ Path
Step ::= Key | '?' Key | '*' | '(' Level ')'
Key ::= <string> | Array+
Array ::= '[' <int> ']' | '[' '*' ']' | '[' '+' ']'
The symbols enclosed in ' ' are tokens of the language, and the + symbol
denotes repetition of of the preceding token at least once.
Examples of usage:
Example 1:
Validator args:
structure = "return > *"
response = { 'return': { ... } }
In the above example the structure will validate against any response
that contains a key named "return" in the root of the response
dictionary and its value is also a dictionary.
Example 2:
Validator args:
structure = "[*]"
response = [...]
In the above example the structure will validate against any response
that is an array of any size.
Example 3:
Validator args:
structure = "return[*]"
response = { 'return': [....] }
In the above example the structure will validate against any response
that contains a key named "return" in the root of the response
dictionary and its value is an array.
Example 4:
Validator args:
structure = "return[0] > token"
response = { 'return': [ { 'token': .... } ] }
In the above example the structure will validate against any response
that contains a key named "return" in the root of the response
dictionary and its value is an array, and the first element of the
array is a dictionary that contains the key 'token'.
Example 5:
Validator args:
structure = "return[0][*] > key1"
response = { 'return': [ [ { 'key1': ... } ], ...] }
In the above example the structure will validate against any response
that contains a key named "return" in the root of the response
dictionary where its value is an array, and the first value of this
array is also an array where all it's values must be a dictionary
containing a key named "key1".
Example 6:
Validator args:
structure = "return > (key1[*] & key2 & ?key3 > subkey)"
response = { 'return': { 'key1': [...], 'key2: .... } ] }
In the above example the structure will validate against any response
that contains a key named "return" in the root of the response
dictionary and its value is a dictionary that must contain a key named
"key1" that is an array, a key named "key2", and optionally a key named
"key3" that is a dictionary that contains a key named "subkey".
Example 7:
Validator args:
structure = "return >> roles[*]"
response = { 'return': { 'key1': { 'roles': [...] }, 'key2': { 'roles': [...] } } }
In the above example the structure will validate against any response
that contains a key named "return" in the root of the response
dictionary, and its value is a dictionary that for any key present in
the dictionary their value is also a dictionary that must contain a key
named 'roles' that is an array. Please note that you can use any
number of successive '>' to denote the level in the JSON tree that you
want to match next step in the path.
"""
@staticmethod
def validate(structure, response):
if structure is None:
return
_ResponseValidator._validate_level(structure, response)
@staticmethod
def _validate_level(level, resp):
if not isinstance(resp, dict) and not isinstance(resp, list):
raise BadResponseFormatException(
"{} is neither a dict nor a list".format(resp))
paths = _ResponseValidator._parse_level_paths(level)
for path in paths:
path_sep = path.find('>')
if path_sep != -1:
level_next = path[path_sep + 1:].strip()
else:
path_sep = len(path)
level_next = None # type: ignore
key = path[:path_sep].strip()
if key == '*':
continue
elif key == '': # check all keys
for k in resp.keys(): # type: ignore
_ResponseValidator._validate_key(k, level_next, resp)
else:
_ResponseValidator._validate_key(key, level_next, resp)
@staticmethod
def _validate_array(array_seq, level_next, resp):
if array_seq:
if not isinstance(resp, list):
raise BadResponseFormatException(
"{} is not an array".format(resp))
if array_seq[0].isdigit():
idx = int(array_seq[0])
if len(resp) <= idx:
raise BadResponseFormatException(
"length of array {} is lower than the index {}".format(
resp, idx))
_ResponseValidator._validate_array(array_seq[1:], level_next,
resp[idx])
elif array_seq[0] == '*':
_ResponseValidator.validate_all_resp(resp, array_seq, level_next)
elif array_seq[0] == '+':
if len(resp) < 1:
raise BadResponseFormatException(
"array should not be empty")
_ResponseValidator.validate_all_resp(resp, array_seq, level_next)
else:
raise Exception(
"Response structure is invalid: only <int> | '*' are "
"allowed as array index arguments")
else:
if level_next:
_ResponseValidator._validate_level(level_next, resp)
@staticmethod
def validate_all_resp(resp, array_seq, level_next):
for r in resp:
_ResponseValidator._validate_array(array_seq[1:],
level_next, r)
@staticmethod
def _validate_key(key, level_next, resp):
array_access = [a.strip() for a in key.split("[")]
key = array_access[0]
if key:
optional = key[0] == '?'
if optional:
key = key[1:]
if key not in resp:
if optional:
return
raise BadResponseFormatException(
"key {} is not in dict {}".format(key, resp))
resp_next = resp[key]
else:
resp_next = resp
if len(array_access) > 1:
_ResponseValidator._validate_array(
[a[0:-1] for a in array_access[1:]], level_next, resp_next)
else:
if level_next:
_ResponseValidator._validate_level(level_next, resp_next)
@staticmethod
def _parse_level_paths(level):
# type: (str) -> List[str]
level = level.strip()
if level[0] == '(':
level = level[1:]
if level[-1] == ')':
level = level[:-1]
paths = []
lp = 0
nested = 0
for i, c in enumerate(level):
if c == '&' and nested == 0:
paths.append(level[lp:i].strip())
lp = i + 1
elif c == '(':
nested += 1
elif c == ')':
nested -= 1
paths.append(level[lp:].strip())
return paths
class _Request(object):
def __init__(self, method, path, path_params, rest_client, resp_structure):
self.method = method
self.path = path
self.path_params = path_params
self.rest_client = rest_client
self.resp_structure = resp_structure
def _gen_path(self):
new_path = self.path
matches = re.finditer(r'\{(\w+?)\}', self.path)
for match in matches:
if match:
param_key = match.group(1)
if param_key in self.path_params:
new_path = new_path.replace(
match.group(0), self.path_params[param_key])
else:
raise RequestException(
'Invalid path. Param "{}" was not specified'
.format(param_key), None)
return new_path
def __call__(self,
req_data=None,
method=None,
params=None,
data=None,
raw_content=False,
headers=None):
method = method if method else self.method
if not method:
raise Exception('No HTTP request method specified')
if req_data:
if method == 'get':
if params:
raise Exception('Ambiguous source of GET params')
params = req_data
else:
if data:
raise Exception('Ambiguous source of {} data'.format(
method.upper()))
data = req_data
resp = self.rest_client.do_request(method, self._gen_path(), params,
data, raw_content, headers)
if raw_content and self.resp_structure:
raise Exception("Cannot validate response in raw format")
_ResponseValidator.validate(self.resp_structure, resp)
return resp
class RestClient(object):
def __init__(self,
host: str,
port: int,
client_name: Optional[str] = None,
ssl: bool = False,
auth: Optional[AuthBase] = None,
ssl_verify: bool = True) -> None:
super(RestClient, self).__init__()
self.client_name = client_name if client_name else ''
self.host = host
self.port = port
self.base_url = build_url(
scheme='https' if ssl else 'http', host=host, port=port)
logger.debug("REST service base URL: %s", self.base_url)
self.headers = {'Accept': 'application/json'}
self.auth = auth
self.session = TimeoutRequestsSession()
self.session.verify = ssl_verify
def _login(self, request=None):
pass
def _is_logged_in(self):
pass
def _reset_login(self):
pass
def is_service_online(self, request=None):
pass
@staticmethod
def requires_login(func):
def func_wrapper(self, *args, **kwargs):
retries = 2
while True:
try:
if not self._is_logged_in():
self._login()
resp = func(self, *args, **kwargs)
return resp
except RequestException as e:
if isinstance(e, BadResponseFormatException):
raise e
retries -= 1
if e.status_code not in [401, 403] or retries == 0:
raise e
self._reset_login()
return func_wrapper
def do_request(self,
method,
path,
params=None,
data=None,
raw_content=False,
headers=None):
url = '{}{}'.format(self.base_url, path)
logger.debug('%s REST API %s req: %s data: %s', self.client_name,
method.upper(), path, data)
request_headers = self.headers.copy()
if headers:
request_headers.update(headers)
try:
resp = self.send_request(method, url, request_headers, params, data)
if resp.ok:
logger.debug("%s REST API %s res status: %s content: %s",
self.client_name, method.upper(),
resp.status_code, resp.text)
if raw_content:
return resp.content
try:
return resp.json() if resp.text else None
except ValueError:
logger.error(
"%s REST API failed %s req while decoding JSON "
"response : %s",
self.client_name, method.upper(), resp.text)
raise RequestException(
"{} REST API failed request while decoding JSON "
"response: {}".format(self.client_name, resp.text),
resp.status_code, resp.text)
else:
logger.error(
"%s REST API failed %s req status: %s", self.client_name,
method.upper(), resp.status_code)
from pprint import pformat as pf
raise RequestException(
"{} REST API failed request with status code {}\n"
"{}" # TODO remove
.format(self.client_name, resp.status_code, pf(
resp.content)),
self._handle_response_status_code(resp.status_code),
resp.content)
except ConnectionError as ex:
self.handle_connection_error(ex, method)
except InvalidURL as ex:
logger.exception("%s REST API failed %s: %s", self.client_name,
method.upper(), str(ex))
raise RequestException(str(ex))
except Timeout as ex:
msg = "{} REST API {} timed out after {} seconds (url={}).".format(
self.client_name, ex.request.method, Settings.REST_REQUESTS_TIMEOUT,
ex.request.url)
logger.exception(msg)
raise RequestException(msg)
def send_request(self, method, url, request_headers, params, data):
if method.lower() == 'get':
resp = self.session.get(
url, headers=request_headers, params=params, auth=self.auth)
elif method.lower() == 'post':
resp = self.session.post(
url,
headers=request_headers,
params=params,
data=data,
auth=self.auth)
elif method.lower() == 'put':
resp = self.session.put(
url,
headers=request_headers,
params=params,
data=data,
auth=self.auth)
elif method.lower() == 'delete':
resp = self.session.delete(
url,
headers=request_headers,
params=params,
data=data,
auth=self.auth)
else:
raise RequestException('Method "{}" not supported'.format(
method.upper()), None)
return resp
def handle_connection_error(self, exception, method):
if exception.args:
if isinstance(exception.args[0], SSLError):
errno = "n/a"
strerror = "SSL error. Probably trying to access a non " \
"SSL connection."
logger.error("%s REST API failed %s, SSL error (url=%s).",
self.client_name, method.upper(), exception.request.url)
else:
try:
match = re.match(r'.*: \[Errno (-?\d+)\] (.+)',
exception.args[0].reason.args[0])
except AttributeError:
match = None
if match:
errno = match.group(1)
strerror = match.group(2)
logger.error(
"%s REST API failed %s, connection error (url=%s): "
"[errno: %s] %s",
self.client_name, method.upper(), exception.request.url,
errno, strerror)
else:
errno = "n/a"
strerror = "n/a"
logger.error(
"%s REST API failed %s, connection error (url=%s).",
self.client_name, method.upper(), exception.request.url)
else:
errno = "n/a"
strerror = "n/a"
logger.error("%s REST API failed %s, connection error (url=%s).",
self.client_name, method.upper(), exception.request.url)
if errno != "n/a":
exception_msg = (
"{} REST API cannot be reached: {} [errno {}]. "
"Please check your configuration and that the API endpoint"
" is accessible"
.format(self.client_name, strerror, errno))
else:
exception_msg = (
"{} REST API cannot be reached. Please check "
"your configuration and that the API endpoint is"
" accessible"
.format(self.client_name))
raise RequestException(
exception_msg, conn_errno=errno, conn_strerror=strerror)
@staticmethod
def _handle_response_status_code(status_code: int) -> int:
"""
Method to be overridden by subclasses that need specific handling.
"""
return status_code
@staticmethod
def api(path, **api_kwargs):
def call_decorator(func):
def func_wrapper(self, *args, **kwargs):
method = api_kwargs.get('method', None)
resp_structure = api_kwargs.get('resp_structure', None)
args_name = inspect.getfullargspec(func).args
args_dict = dict(zip(args_name[1:], args))
for key, val in kwargs.items():
args_dict[key] = val
return func(
self,
*args,
request=_Request(method, path, args_dict, self,
resp_structure),
**kwargs)
return func_wrapper
return call_decorator
@staticmethod
def api_get(path, resp_structure=None):
return RestClient.api(
path, method='get', resp_structure=resp_structure)
@staticmethod
def api_post(path, resp_structure=None):
return RestClient.api(
path, method='post', resp_structure=resp_structure)
@staticmethod
def api_put(path, resp_structure=None):
return RestClient.api(
path, method='put', resp_structure=resp_structure)
@staticmethod
def api_delete(path, resp_structure=None):
return RestClient.api(
path, method='delete', resp_structure=resp_structure)
|