Skip to content
Snippets Groups Projects
Unverified Commit 5183eed0 authored by J. Nick Koston's avatar J. Nick Koston Committed by GitHub
Browse files

Avoid re-encoding the hassio command URL each request (#109031)

* Avoid reconstructing the hassio command URL each request

The host had to be re-encoded every time which creates an ip_address object

By doing a join we avoid this. It was actually happening twice since
we passed constructed the URL for testing and than passed it as a string
so aiohttp did it as well

* make url the same
parent 030727b0
No related branches found
No related tags found
No related merge requests found
...@@ -330,6 +330,7 @@ class HassIO: ...@@ -330,6 +330,7 @@ class HassIO:
self.loop = loop self.loop = loop
self.websession = websession self.websession = websession
self._ip = ip self._ip = ip
self._base_url = URL(f"http://{ip}")
@_api_bool @_api_bool
def is_connected(self) -> Coroutine: def is_connected(self) -> Coroutine:
...@@ -559,14 +560,20 @@ class HassIO: ...@@ -559,14 +560,20 @@ class HassIO:
This method is a coroutine. This method is a coroutine.
""" """
url = f"http://{self._ip}{command}" url = f"http://{self._ip}{command}"
if url != str(URL(url)): joined_url = self._base_url.join(URL(command))
# This check is to make sure the normalized URL string
# is the same as the URL string that was passed in. If
# they are different, then the passed in command URL
# contained characters that were removed by the normalization
# such as ../../../../etc/passwd
if url != str(joined_url):
_LOGGER.error("Invalid request %s", command) _LOGGER.error("Invalid request %s", command)
raise HassioAPIError() raise HassioAPIError()
try: try:
request = await self.websession.request( request = await self.websession.request(
method, method,
f"http://{self._ip}{command}", joined_url,
json=payload, json=payload,
headers={ headers={
aiohttp.hdrs.AUTHORIZATION: ( aiohttp.hdrs.AUTHORIZATION: (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment