1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

Fix Inara URLs for station & system search

This commit is contained in:
Philipp Trulson 2023-09-18 22:48:00 +02:00 committed by GitHub
parent 6f2ba8d1b2
commit 02f62b8ee6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,11 +171,11 @@ if DEBUG:
def system_url(system_name: str) -> str:
"""Get a URL for the current system."""
if this.system_address:
return requests.utils.requote_uri(f'https://inara.cz/galaxy-starsystem/'
return requests.utils.requote_uri(f'https://inara.cz/elite/starsystem/'
f'?search={this.system_address}')
elif system_name:
return requests.utils.requote_uri(f'https://inara.cz/galaxy-starsystem/'
return requests.utils.requote_uri(f'https://inara.cz/elite/starsystem/'
f'?search={system_name}')
return ''
@ -192,12 +192,12 @@ def station_url(system_name: str, station_name: str) -> str:
:return: A URL to inara for the given system and station
"""
if system_name and station_name:
return requests.utils.requote_uri(f'https://inara.cz/galaxy-station/'
return requests.utils.requote_uri(f'https://inara.cz/elite/station/'
f'?search={system_name}%20[{station_name}]')
# monitor state might think these are gone, but we don't yet
if this.system_name and this.station:
return requests.utils.requote_uri(f'https://inara.cz/galaxy-station/'
return requests.utils.requote_uri(f'https://inara.cz/elite/station/'
f'?search={this.system_name}%20[{this.station}]')
if system_name: