mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
72 lines
2 KiB
Python
72 lines
2 KiB
Python
from paho.mqtt.client import Client
|
|
from owrx.reporting.reporter import Reporter
|
|
from owrx.config import Config
|
|
from owrx.property import PropertyDeleted
|
|
import json
|
|
import threading
|
|
import time
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class MqttReporter(Reporter):
|
|
DEFAULT_TOPIC = "openwebrx/decodes"
|
|
|
|
def __init__(self):
|
|
pm = Config.get()
|
|
self.topic = self.DEFAULT_TOPIC
|
|
self.client = self._getClient()
|
|
self.subscriptions = [
|
|
pm.wireProperty("mqtt_topic", self._setTopic),
|
|
pm.filter("mqtt_host", "mqtt_user", "mqtt_password", "mqtt_client_id", "mqtt_use_ssl").wire(self._reconnect)
|
|
]
|
|
|
|
def _getClient(self):
|
|
pm = Config.get()
|
|
clientId = pm["mqtt_client_id"] if "mqtt_client_id" in pm else ""
|
|
client = Client(clientId)
|
|
|
|
if "mqtt_user" in pm and "mqtt_password" in pm:
|
|
client.username_pw_set(pm["mqtt_user"], pm["mqtt_password"])
|
|
|
|
port = 1883
|
|
if pm["mqtt_use_ssl"]:
|
|
client.tls_set()
|
|
port = 8883
|
|
|
|
parts = pm["mqtt_host"].split(":")
|
|
host = parts[0]
|
|
if len(parts) > 1:
|
|
port = int(parts[1])
|
|
|
|
try:
|
|
client.connect(host=host, port=port)
|
|
except Exception as e:
|
|
logger.debug("Exception connecting: " + str(e))
|
|
|
|
threading.Thread(target=client.loop_forever).start()
|
|
|
|
return client
|
|
|
|
def _setTopic(self, topic):
|
|
if topic is PropertyDeleted:
|
|
self.topic = self.DEFAULT_TOPIC
|
|
else:
|
|
self.topic = topic
|
|
|
|
def _reconnect(self, *args, **kwargs):
|
|
logger.debug("Reconnecting...")
|
|
old = self.client
|
|
self.client = self._getClient()
|
|
old.disconnect()
|
|
|
|
def stop(self):
|
|
self.client.disconnect()
|
|
while self.subscriptions:
|
|
self.subscriptions.pop().cancel()
|
|
|
|
def spot(self, spot):
|
|
self.client.publish(self.topic, payload=json.dumps(spot))
|