import datetime
import logging
+import os
import json
from dateutil.parser import parse
from typing import Any, Dict, Optional
raise Exception("Unknown operaiton")
def poll_home_assistant(self) -> bool:
+ cert_path = None
+ key_path = None
+ home = os.environ.get('HOME', '/home/scott')
+ filename = f'{home}/gasch_certificate/dmzjail-scott-selfsigned.crt'
+ if os.exists(filename):
+ cert_path = filename
+ filename = f'{home}/gasch_certificate/dmzjail-scott-selfsigned.key'
+ if os.exists(filename):
+ key_path = filename
key = secrets.homeassistant_api_key
headers = {
"Authorization": f"Bearer {key}",
r = requests.get(
f"https://home.acknak.org/api/states/{door}",
headers=headers,
+ cert=(cert_path, key_path),
timeout=3.0,
)
if r.ok: