Allow multiple push servers

This commit is contained in:
Mike Cifelli 2024-04-03 14:09:11 -04:00
parent a51d5f7ff2
commit ccd78f4c48
Signed by: mike
GPG Key ID: 6B08C6BE47D08E4C
2 changed files with 10 additions and 10 deletions

View File

@ -14,9 +14,7 @@ config = ConfigParser()
config.read('garage.cfg') config.read('garage.cfg')
eastPin = config['garage'].getint('east-pin') eastPin = config['garage'].getint('east-pin')
westPin = config['garage'].getint('west-pin') westPin = config['garage'].getint('west-pin')
ntfy = config['push'].get('ntfy') ntfyList = json.loads(config['push'].get('ntfy'))
topic = config['push'].get('topic')
auth = config['push'].get('auth')
def main(): def main():
@ -70,8 +68,9 @@ def persistState():
def sendNotification(): def sendNotification():
for ntfy in ntfyList:
requests.post( requests.post(
url=f'https://{ntfy}/{topic}?auth={auth}', url=f'https://{ntfy["host"]}/{ntfy["topic"]}?auth={ntfy["auth"]}',
data='update'.encode(encoding='utf-8') data='update'.encode(encoding='utf-8')
) )

View File

@ -3,6 +3,7 @@ east-pin=1
west-pin=2 west-pin=2
[push] [push]
ntfy=ntfy.sh ntfy=[
topic=topic {"host": "localhost", "topic": "topic", "auth": "auth"},
auth=auth {"host": "ntfy.sh", "topic": "topic", "auth": "auth"}
]