You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

139 lines
4.4 KiB

"""
"""
import requests
from urllib.parse import urljoin, urlencode
from .exceptions import *
class ConnectionManager(object):
""" Represents a simple server connection.
Args:
base_url (str): The URL server
headers (dict): The header parameters of the requests to the server.
timeout (int): Timeout to use for requests to the server.
"""
def __init__(self, base_url, headers={}, timeout=60):
self.__base_url = base_url
self.__headers = headers
self.__timeout = timeout
def get_url(self):
""" Return base url in use for requests to the server. """
return self.__base_url
def get_timeout(self):
""" Return timeout in use for request to the server. """
return self.__timeout
def set_headers(self, params):
""" Update header request to the server.
:arg
params (dict): Parameters header request.
"""
self.__headers = params
def get_headers(self):
""" Return header request to the server. """
return self.__headers
def get_param_headers(self, key):
""" Return a single header parameter.
:arg
key (str): Key of the header parameters.
:return:
If the header parameters exist, return value him.
"""
return self.__headers[key] if key in self.__headers.keys() else None
def clean_headers(self):
""" Clear header parameters. """
self.__headers = {}
def exist_param_headers(self, key):
""" Check if the parameter exist in header.
:arg
key (str): Key of the header parameters.
:return:
If the header parameters exist, return True.
"""
return True if self.get_param_headers(key) else False
def add_param_headers(self, key, value):
""" Add a single parameter in header.
:arg
key (str): Key of the header parameters.
value (str): Value for the header parameter.
"""
request_headers = self.__headers.copy()
request_headers.update({key: value})
self.set_headers(request_headers)
def del_param_headers(self, key):
""" Remove a single header parameter.
:arg
key (str): Key of the header parameters.
"""
if self.get_param_headers(key):
del self.__headers[key]
def raw_get(self, path, **kwargs):
""" Submit get request to the path.
:arg
path (str): Path for request.
:return
Response the request.
:exception
HttpError: Can't connect to server.
"""
try:
return requests.get(urljoin(self.get_url(), path),
params=kwargs,
headers=self.get_headers(),
timeout=self.get_timeout())
except Exception as e:
raise KeycloakConnectionError(
"Can't connect to server (%s)" % e)
def raw_post(self, path, data, **kwargs):
""" Submit post request to the path.
:arg
path (str): Path for request.
data (dict): Payload for request.
:return
Response the request.
:exception
HttpError: Can't connect to server.
"""
try:
return requests.post(urljoin(self.get_url(), path),
params=kwargs,
data=data,
headers=self.get_headers(),
timeout=self.get_timeout())
except Exception as e:
raise KeycloakConnectionError(
"Can't connect to server (%s)" % e)
def raw_put(self, path, data, **kwargs):
""" Submit put request to the path.
:arg
path (str): Path for request.
data (dict): Payload for request.
:return
Response the request.
:exception
HttpError: Can't connect to server.
"""
try:
return requests.put(urljoin(self.get_url(), path),
params=kwargs,
data=data,
headers=self.get_headers(),
timeout=self.get_timeout())
except Exception as e:
raise KeycloakConnectionError(
"Can't connect to server (%s)" % e)