def __init__(self, host, port, uri, session_token=None): self.__host = host self.__port = port self.transport = THttpClient.THttpClient(self.__host, self.__port, uri) self.protocol = TJSONProtocol.TJSONProtocol(self.transport) self.client = codeCheckerAuthentication.Client(self.protocol) if session_token: headers = {'Cookie': session_manager.SESSION_COOKIE_NAME + "=" + session_token} self.transport.setCustomHeaders(headers)
def __init__(self, host, port, uri, auto_handle_connection=True, session_token=None): # import only if necessary; some tests may not add this to PYTHONPATH from codechecker_lib import session_manager from Authentication import codeCheckerAuthentication from Authentication.ttypes import HandshakeInformation transport = THttpClient.THttpClient(host, port, uri) protocol = TJSONProtocol.TJSONProtocol(transport) client = codeCheckerAuthentication.Client(protocol) if session_token: headers = {'Cookie': session_manager.SESSION_COOKIE_NAME + "=" + session_token} transport.setCustomHeaders(headers) super(CCAuthHelper, self).__init__(transport, client, auto_handle_connection)