Skip to content

Commit

Permalink
Refactor RESTManager and add config.write when port changes
Browse files Browse the repository at this point in the history
Refactor RESTManager and add config.write when port changes
  • Loading branch information
heldersepu committed May 18, 2024
1 parent 410b72e commit f6db238
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 21 deletions.
31 changes: 15 additions & 16 deletions src/tribler/core/components/restapi/rest/rest_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
RESTResponse,
)
from tribler.core.components.restapi.rest.root_endpoint import RootEndpoint
from tribler.core.components.restapi.rest.settings import APISettings
from tribler.core.config.tribler_config import TriblerConfig
from tribler.core.utilities.network_utils import default_network_utils
from tribler.core.utilities.process_manager import get_global_process_manager
from tribler.core.version import version_id
Expand Down Expand Up @@ -83,16 +83,14 @@ class RESTManager:
This class is responsible for managing the startup and closing of the Tribler HTTP API.
"""

def __init__(self, config: APISettings, root_endpoint: RootEndpoint, state_dir=None, shutdown_timeout: int = 10):
def __init__(self, config: TriblerConfig, root_endpoint: RootEndpoint, shutdown_timeout: int = 10):
super().__init__()
self._logger = logging.getLogger(self.__class__.__name__)
self.root_endpoint = root_endpoint
self.runner: Optional[web.AppRunner] = None
self.site: Optional[web.TCPSite] = None
self.site_https: Optional[web.TCPSite] = None
self.config = config
self.state_dir = state_dir

self.shutdown_timeout = shutdown_timeout

def get_endpoint(self, name):
Expand All @@ -101,8 +99,9 @@ def get_endpoint(self, name):
def set_api_port(self, api_port: int):
default_network_utils.remember(api_port)

if self.config.http_port != api_port:
self.config.http_port = api_port
if self.config.api.http_port != api_port:
self.config.api.http_port = api_port
self.config.write()

Check warning on line 104 in src/tribler/core/components/restapi/rest/rest_manager.py

View check run for this annotation

Codecov / codecov/patch

src/tribler/core/components/restapi/rest/rest_manager.py#L103-L104

Added lines #L103 - L104 were not covered by tests

process_manager = get_global_process_manager()
if process_manager:
Expand All @@ -122,7 +121,7 @@ async def start(self):
version=version_id,
swagger_path='/docs'
)
if self.config.key:
if self.config.api.key:
self._logger.info('Set security scheme and apply to all endpoints')

aiohttp_apispec.spec.options['security'] = [{'apiKey': []}]
Expand All @@ -136,21 +135,21 @@ async def start(self):
self.runner = web.AppRunner(self.root_endpoint.app, access_log=None)
await self.runner.setup()

if self.config.http_enabled:
if self.config.api.http_enabled:
self._logger.info('Http enabled')
await self.start_http_site()

if self.config.https_enabled:
if self.config.api.https_enabled:
self._logger.info('Https enabled')
await self.start_https_site()

self._logger.info(f'Swagger docs: http://{self.config.http_host}:{self.config.http_port}/docs')
self._logger.info(f'Swagger JSON: http://{self.config.http_host}:{self.config.http_port}/docs/swagger.json')
self._logger.info(f'Swagger docs: http://{self.config.api.http_host}:{self.config.api.http_port}/docs')
self._logger.info(f'Swagger JSON: http://{self.config.api.http_host}:{self.config.api.http_port}/docs/swagger.json')

async def start_http_site(self):
api_port = max(self.config.http_port, 0) # if the value in config is -1 we convert it to 0
api_port = max(self.config.api.http_port, 0) # if the value in config is -1 we convert it to 0

self.site = web.TCPSite(self.runner, self.config.http_host, api_port, shutdown_timeout=self.shutdown_timeout)
self.site = web.TCPSite(self.runner, self.config.api.http_host, api_port, shutdown_timeout=self.shutdown_timeout)
self._logger.info(f"Starting HTTP REST API server on port {api_port}...")

try:
Expand All @@ -168,11 +167,11 @@ async def start_http_site(self):
async def start_https_site(self):
ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)

cert = self.config.get_path_as_absolute('https_certfile', self.state_dir)
cert = self.config.api.get_path_as_absolute('https_certfile', self.config.state_dir)
ssl_context.load_cert_chain(cert)

port = self.config.https_port
self.site_https = web.TCPSite(self.runner, self.config.https_host, port, ssl_context=ssl_context)
port = self.config.api.https_port
self.site_https = web.TCPSite(self.runner, self.config.api.https_host, port, ssl_context=ssl_context)

await self.site_https.start()
self._logger.info("Started HTTPS REST API: %s", self.site_https.name)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ async def fixture_rest_manager(api_port, tmp_path, events_endpoint):
config = TriblerConfig()
config.api.http_enabled = True
config.api.http_port = api_port
config.set_state_dir(tmp_path)
root_endpoint = RootEndpoint(middlewares=[ApiKeyMiddleware(config.api.key), error_middleware])
root_endpoint.add_endpoint('/events', events_endpoint)
rest_manager = RESTManager(config=config.api, root_endpoint=root_endpoint, state_dir=tmp_path)
rest_manager = RESTManager(config=config, root_endpoint=root_endpoint)

await rest_manager.start()
yield rest_manager
Expand All @@ -62,7 +63,7 @@ async def fixture_rest_manager(api_port, tmp_path, events_endpoint):

async def open_events_socket(rest_manager_, connected_event, events_up):
global messages_to_wait_for
port = rest_manager_.config.http_port
port = rest_manager_.config.api.http_port
url = f'http://localhost:{port}/events'
headers = {'User-Agent': 'Tribler ' + version_id}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def api_port_fixture(free_port):
@pytest.fixture(name='rest_manager')
async def rest_manager_fixture(request, tribler_config, api_port, tmp_path):
config = tribler_config
config.set_state_dir(tmp_path)
api_key_marker = request.node.get_closest_marker("api_key")
if api_key_marker is not None:
tribler_config.api.key = api_key_marker.args[0]
Expand All @@ -49,7 +50,7 @@ async def rest_manager_fixture(request, tribler_config, api_port, tmp_path):
tribler_config.api.http_port = api_port
root_endpoint = RootEndpoint(middlewares=[ApiKeyMiddleware(config.api.key), error_middleware])
root_endpoint.add_endpoint('/settings', SettingsEndpoint(config))
rest_manager = RESTManager(config=config.api, root_endpoint=root_endpoint, state_dir=tmp_path)
rest_manager = RESTManager(config=config, root_endpoint=root_endpoint)
await rest_manager.start()
yield rest_manager
await rest_manager.stop()
Expand All @@ -69,7 +70,7 @@ async def test_api_key_disabled(rest_manager, api_port):

@pytest.mark.api_key('0' * 32)
async def test_api_key_success(rest_manager, api_port):
api_key = rest_manager.config.key
api_key = rest_manager.config.api.key
await do_real_request(api_port, 'settings?apikey=' + api_key)
await do_real_request(api_port, 'settings', headers={'X-Api-Key': api_key})

Expand Down
2 changes: 1 addition & 1 deletion src/tribler/core/components/restapi/restapi_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async def run(self):
self.root_endpoint.add_endpoint('/ipv8', ipv8_root_endpoint)

# Note: AIOHTTP endpoints cannot be added after the app has been started!
rest_manager = RESTManager(config=config.api, root_endpoint=self.root_endpoint, state_dir=config.state_dir)
rest_manager = RESTManager(config=config, root_endpoint=self.root_endpoint)
await rest_manager.start()
self.rest_manager = rest_manager

Expand Down

0 comments on commit f6db238

Please sign in to comment.