Skip to content

Commit

Permalink
Fix unclear session errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre0512 committed Apr 12, 2023
1 parent 33454f6 commit 970b94b
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 36 deletions.
59 changes: 37 additions & 22 deletions pyhon/connection/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@

from yarl import URL

from pyhon import const
from pyhon.exceptions import HonAuthenticationError
from pyhon import const, exceptions

_LOGGER = logging.getLogger(__name__)

Expand Down Expand Up @@ -51,7 +50,7 @@ async def _error_logger(self, response, fail=True):
result += f"{15 * '='} Response {15 * '='}\n{await response.text()}\n{40 * '='}"
_LOGGER.error(result)
if fail:
raise HonAuthenticationError("Can't login")
raise exceptions.HonAuthenticationError("Can't login")

async def _load_login(self):
nonce = secrets.token_hex(16)
Expand All @@ -71,7 +70,11 @@ async def _load_login(self):
f"{const.AUTH_API}/services/oauth2/authorize/expid_Login?{params}"
) as response:
self._called_urls.append((response.status, response.request_info.url))
if not (login_url := re.findall("url = '(.+?)'", await response.text())):
text = await response.text()
if not (login_url := re.findall("url = '(.+?)'", text)):
if "oauth/done#access_token=" in text:
self._parse_token_data(text)
raise exceptions.HonNoAuthenticationNeeded()
await self._error_logger(response)
return False
async with self._session.get(login_url[0], allow_redirects=False) as redirect1:
Expand Down Expand Up @@ -156,6 +159,14 @@ async def _login(self, fw_uid, loaded, login_url):
await self._error_logger(response)
return ""

def _parse_token_data(self, text):
if access_token := re.findall("access_token=(.*?)&", text):
self._access_token = access_token[0]
if refresh_token := re.findall("refresh_token=(.*?)&", text):
self._refresh_token = refresh_token[0]
if id_token := re.findall("id_token=(.*?)&", text):
self._id_token = id_token[0]

async def _get_token(self, url):
async with self._session.get(url) as response:
self._called_urls.append((response.status, response.request_info.url))
Expand All @@ -179,26 +190,9 @@ async def _get_token(self, url):
if response.status != 200:
await self._error_logger(response)
return False
text = await response.text()
if access_token := re.findall("access_token=(.*?)&", text):
self._access_token = access_token[0]
if refresh_token := re.findall("refresh_token=(.*?)&", text):
self._refresh_token = refresh_token[0]
if id_token := re.findall("id_token=(.*?)&", text):
self._id_token = id_token[0]
self._parse_token_data(await response.text())
return True

async def authorize(self):
if login_site := await self._load_login():
fw_uid, loaded, login_url = login_site
else:
return False
if not (url := await self._login(fw_uid, loaded, login_url)):
return False
if not await self._get_token(url):
return False
return await self._api_auth()

async def _api_auth(self):
post_headers = {"id-token": self._id_token}
data = self._device.get()
Expand All @@ -214,6 +208,20 @@ async def _api_auth(self):
self._cognito_token = json_data["cognitoUser"]["Token"]
return True

async def authenticate(self):
self.clear()
try:
if not (login_site := await self._load_login()):
raise exceptions.HonAuthenticationError("Can't open login page")
if not (url := await self._login(*login_site)):
raise exceptions.HonAuthenticationError("Can't login")
if not await self._get_token(url):
raise exceptions.HonAuthenticationError("Can't get token")
if not await self._api_auth():
raise exceptions.HonAuthenticationError("Can't get api token")
except exceptions.HonNoAuthenticationNeeded:
return

async def refresh(self):
params = {
"client_id": const.CLIENT_ID,
Expand All @@ -231,3 +239,10 @@ async def refresh(self):
self._id_token = data["id_token"]
self._access_token = data["access_token"]
return await self._api_auth()

def clear(self):
self._session.cookie_jar.clear_domain(const.AUTH_API.split("/")[-2])
self._cognito_token = ""
self._id_token = ""
self._access_token = ""
self._refresh_token = ""
18 changes: 5 additions & 13 deletions pyhon/connection/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ def __init__(self, email, password, session=None):
raise HonAuthenticationError("An email address must be specified")
if not self._password:
raise HonAuthenticationError("A password address must be specified")
self._request_headers = {}

@property
def device(self):
Expand All @@ -69,16 +68,11 @@ async def create(self):
return self

async def _check_headers(self, headers):
if (
"cognito-token" not in self._request_headers
or "id-token" not in self._request_headers
):
if await self._auth.authorize():
self._request_headers["cognito-token"] = self._auth.cognito_token
self._request_headers["id-token"] = self._auth.id_token
else:
raise HonAuthenticationError("Can't login")
return self._HEADERS | headers | self._request_headers
if not (self._auth.cognito_token and self._auth.id_token):
await self._auth.authenticate()
headers["cognito-token"] = self._auth.cognito_token
headers["id-token"] = self._auth.id_token
return self._HEADERS | headers

@asynccontextmanager
async def _intercept(self, method, *args, loop=0, **kwargs):
Expand All @@ -98,8 +92,6 @@ async def _intercept(self, method, *args, loop=0, **kwargs):
response.status,
await response.text(),
)
self._request_headers = {}
self._session.cookie_jar.clear_domain(const.AUTH_API.split("/")[-2])
await self.create()
async with self._intercept(
method, *args, loop=loop + 1, **kwargs
Expand Down
4 changes: 4 additions & 0 deletions pyhon/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
class HonAuthenticationError(Exception):
pass


class HonNoAuthenticationNeeded(Exception):
pass
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="pyhOn",
version="0.7.2",
version="0.7.3",
author="Andre Basche",
description="Control hOn devices with python",
long_description=long_description,
Expand Down

0 comments on commit 970b94b

Please sign in to comment.