Use client cert when talking to HA
authorScott Gasch <scott@gasch.org>
Wed, 6 Nov 2024 17:08:59 +0000 (09:08 -0800)
committerScott Gasch <scott@gasch.org>
Wed, 6 Nov 2024 17:08:59 +0000 (09:08 -0800)
ratago_renderer.py

index a0a296a1bbcd7ce41e06098c5766d495d5b19a68..3db678d5fec29039d0e53ae1b6d5d869d57d7be7 100644 (file)
@@ -2,6 +2,7 @@
 
 import datetime
 import logging
+import os
 import json
 from dateutil.parser import parse
 from typing import Any, Dict, Optional
@@ -41,6 +42,15 @@ class ratago_renderer(renderer.abstaining_renderer):
             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}",
@@ -51,6 +61,7 @@ class ratago_renderer(renderer.abstaining_renderer):
                 r = requests.get(
                     f"https://home.acknak.org/api/states/{door}",
                     headers=headers,
+                    cert=(cert_path, key_path),
                     timeout=3.0,
                 )
                 if r.ok: