Compare commits

...

40 Commits

Author SHA1 Message Date
7fc5861468 upload to docker hub
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-31 23:14:29 +01:00
703947e25f Fixed sample service path
All checks were successful
continuous-integration/drone/push Build is passing
2021-08-19 04:03:48 +02:00
de7a325398 updated k8s stuff
All checks were successful
continuous-integration/drone/push Build is passing
2021-08-19 03:55:36 +02:00
85fed2882e change input-svc path
All checks were successful
continuous-integration/drone/push Build is passing
2021-08-16 15:27:01 +02:00
90fa74ca91 Added tracing
All checks were successful
continuous-integration/drone/push Build is passing
2021-08-10 16:44:01 +02:00
c26aa1be43 some updates
All checks were successful
continuous-integration/drone/push Build is passing
2021-08-10 16:15:20 +02:00
e6afdd5bac Added nacking
All checks were successful
continuous-integration/drone/push Build is passing
2021-07-28 14:17:45 +02:00
c6b444bc6d Merge branch 'master' of ssh://git.kmlabz.com:2222/birbnetes/guard-service
All checks were successful
continuous-integration/drone/push Build is passing
2021-07-28 14:11:57 +02:00
87cfdecc2d less prone to crashing 2021-07-28 14:10:59 +02:00
22054cf4d0 remove legacy stuff
All checks were successful
continuous-integration/drone/push Build is passing
2021-07-28 13:37:26 +02:00
fbfb379e86 Added trigger level
Some checks failed
continuous-integration/drone/push Build is failing
2021-07-28 13:35:40 +02:00
5d83767d83 Updated decision making
All checks were successful
continuous-integration/drone/push Build is passing
2021-06-14 03:54:29 +02:00
1f7f977e75 Fixed potential crashes 2021-06-14 03:51:24 +02:00
a3d3b27817 increate timeouts
All checks were successful
continuous-integration/drone/push Build is passing
2020-10-23 20:50:20 +02:00
a97d081bff Merge branch 'master' of ssh://cloud.tormakristof.eu:2222/birbnetes/guard-service into master
All checks were successful
continuous-integration/drone/push Build is passing
2020-10-20 01:13:08 +02:00
a23b2e537f my hart is beating 2020-10-20 01:12:56 +02:00
87b6f7b986 duplicate keywork
All checks were successful
continuous-integration/drone/push Build is passing
2020-10-19 22:51:50 +02:00
b4200a0b6b add sentry tracing
All checks were successful
continuous-integration/drone/push Build is passing
2020-10-19 22:27:32 +02:00
9b6ccb2469 én ynertem
All checks were successful
continuous-integration/drone/push Build is passing
2020-10-06 02:18:51 +02:00
ab45b0c047 tweak compost
All checks were successful
continuous-integration/drone/push Build is passing
2020-10-03 14:12:44 +02:00
d43538785d login to mqtt broker
All checks were successful
continuous-integration/drone/push Build is passing
2020-10-03 13:59:24 +02:00
9dc7499962 remove .idea
All checks were successful
continuous-integration/drone/push Build is passing
2020-10-03 12:57:44 +02:00
f533a36196 Addded MQTT event loop start
All checks were successful
continuous-integration/drone/push Build is passing
2020-09-19 18:05:18 +02:00
b788695dc5 Fixed image path
All checks were successful
continuous-integration/drone/push Build is passing
2020-09-19 17:13:10 +02:00
0eebfccbe1 Updated image pull policy
All checks were successful
continuous-integration/drone/push Build is passing
2020-09-19 17:09:32 +02:00
41daa413f5 Fixed missing reference to mqtt
All checks were successful
continuous-integration/drone/push Build is passing
2020-09-19 17:01:41 +02:00
ab9c9fe40e do not use cache
All checks were successful
continuous-integration/drone/push Build is passing
2020-09-18 14:58:21 +02:00
50391d8b2f no set durable
All checks were successful
continuous-integration/drone/push Build is passing
2020-09-18 14:56:57 +02:00
d9d0dcdbaf logging basicconig marcsello edition
All checks were successful
continuous-integration/drone/push Build is passing
2020-09-18 14:45:58 +02:00
f18d2018e3 logging basicconig 2020-09-18 14:44:20 +02:00
4d91a3f6ce more logging
All checks were successful
continuous-integration/drone/push Build is passing
2020-08-06 17:48:06 +02:00
caf9e1c0f3 start consuming
All checks were successful
continuous-integration/drone/push Build is passing
2020-08-06 17:33:57 +02:00
858c95220e port must be a number
All checks were successful
continuous-integration/drone/push Build is passing
2020-08-06 17:18:03 +02:00
e59cba7603 remove recursion
All checks were successful
continuous-integration/drone/push Build is passing
2020-08-06 17:02:35 +02:00
cf0c2f1e8b fix recursion
All checks were successful
continuous-integration/drone/push Build is passing
2020-08-06 16:48:04 +02:00
fd22ec57eb auto delete queue
All checks were successful
continuous-integration/drone/push Build is passing
2020-07-30 15:39:02 +02:00
fc80c1cbe2 some validation
All checks were successful
continuous-integration/drone/push Build is passing
2020-07-30 15:36:09 +02:00
46169a54bd fix rabbit api and add better sentry intergation
All checks were successful
continuous-integration/drone/push Build is passing
2020-07-30 15:33:28 +02:00
c8c96f3007 Merge branch 'master' of gitea:birbnetes/guard-service
All checks were successful
continuous-integration/drone/push Build is passing
2020-07-26 19:38:17 +02:00
3cd7167e90 rework mqtt api 2020-07-26 19:38:10 +02:00
14 changed files with 237 additions and 157 deletions

View File

@ -3,30 +3,6 @@ type: docker
name: default name: default
steps: steps:
- name: restore-cache-with-filesystem
image: meltwater/drone-cache
settings:
backend: "filesystem"
restore: true
cache_key: "{{ .Repo.Name }}"
archive_format: "gzip"
filesystem_cache_root: "/tmp/cache"
mount:
- '.pipcache'
volumes:
- name: cache
path: /tmp/cache
- name: static_analysis
image: "python:3.8"
commands:
- pip3 install --cache-dir='./.pipcache' pylint bandit mccabe
- pip3 install --cache-dir='./.pipcache' -r requirements.txt
- find . -name "*.py" -exec python3 -m py_compile '{}' \;
- find . -name "*.py" -exec pylint '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
- find . -name "*.py" -exec python3 -m mccabe --min 3 '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
- bandit -r . + || if [ $? -eq 1 ]; then echo "you fail"; fi
- name: code-analysis - name: code-analysis
image: aosapps/drone-sonar-plugin image: aosapps/drone-sonar-plugin
settings: settings:
@ -35,21 +11,6 @@ steps:
sonar_token: sonar_token:
from_secret: SONAR_CODE from_secret: SONAR_CODE
- name: rebuild-cache-with-filesystem
image: meltwater/drone-cache:dev
pull: true
settings:
backend: "filesystem"
rebuild: true
cache_key: "{{ .Repo.Name }}"
archive_format: "gzip"
filesystem_cache_root: "/tmp/cache"
mount:
- '.pipcache'
volumes:
- name: cache
path: /tmp/cache
- name: kaniko - name: kaniko
image: banzaicloud/drone-kaniko image: banzaicloud/drone-kaniko
settings: settings:
@ -63,13 +24,17 @@ steps:
- latest - latest
- ${DRONE_BUILD_NUMBER} - ${DRONE_BUILD_NUMBER}
- name: sentry - name: dockerhub
image: tormachris/drone-sentry image: plugins/docker
settings: settings:
sentry_project: ${DRONE_REPO_NAME} repo: birbnetes/${DRONE_REPO_NAME}
sentry_domain: sentry.kmlabz.com username:
sentry_token: from_secret: DOCKERHUB_USER
from_secret: SENTRY_TOKEN password:
from_secret: DOCKERHUB_PASSWORD
tags:
- latest
- ${DRONE_BUILD_NUMBER}
- name: ms-teams - name: ms-teams
image: kuperiu/drone-teams image: kuperiu/drone-teams
@ -78,8 +43,3 @@ steps:
from_secret: TEAMS_WEBHOOK from_secret: TEAMS_WEBHOOK
when: when:
status: [ failure ] status: [ failure ]
volumes:
- name: cache
host:
path: "/tmp/cache"

8
.idea/.gitignore generated vendored
View File

@ -1,8 +0,0 @@
# Default ignored files
/shelf/
/workspace.xml
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/k8s" type="java-resource" />
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="jdk" jdkName="Python 3.8 (guard-service)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="TestRunnerService">
<option name="PROJECT_TEST_RUNNER" value="pytest" />
</component>
</module>

View File

@ -1,6 +0,0 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

7
.idea/misc.xml generated
View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptSettings">
<option name="languageLevel" value="ES6" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.8 (guard-service)" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml generated
View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/guard-service.iml" filepath="$PROJECT_DIR$/.idea/guard-service.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated
View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -1,10 +1,12 @@
version: '3.4'
networks: networks:
guard: guard:
external: false external: false
services: services:
rabbitmq: rabbitmq:
image: "rabbitmq:3" image: "rabbitmq:3-management"
hostname: "test-rabbitmq" hostname: "test-rabbitmq"
environment: environment:
RABBITMQ_ERLANG_COOKIE: "akjahsfvbkueasnvfjkhsga" RABBITMQ_ERLANG_COOKIE: "akjahsfvbkueasnvfjkhsga"
@ -22,16 +24,32 @@ services:
restart: always restart: always
networks: networks:
- guard - guard
volumes: ports:
- ./artemis-volume:/var/lib/artemis-instance - "127.0.0.1:1883:1883"
guard-service: guard-service:
image: registry.kmlabz.com/birbnetes/guard-service image: registry.kmlabz.com/birbnetes/guard-service
restart: always restart: always
depends_on: depends_on:
- activemq - activemq
- postgres - rabbitmq
- input-service
environment:
SENTRY_DSN: "https://5c925c5a898b4b7d82ee51cd544de623@sentry.kmlabz.com/3"
GUARD_RABBITMQ_HOSTNAME: rabbitmq
GUARD_RABBITMQ_USERNAME: rabbitmq
GUARD_RABBITMQ_PASSWORD: rabbitmq
GUARD_RABBITMQ_EXCHANGE: "sample"
GUARD_MQTT_HOSTNAME: activemq
GUARD_MQTT_PORT: "1883"
GUARD_MQTT_USERNAME: artemis
GUARD_MQTT_PASSWORD: artemis
GUARD_MQTT_TOPIC: "command"
networks: networks:
- guard - guard
ports: ports:
- "127.0.0.1:8080:8080" - "127.0.0.1:8080:8080"
input-service:
image: mockserver/mockserver
command: -logLevel DEBUG -serverPort 80

View File

@ -6,17 +6,17 @@ metadata:
app: guard-service app: guard-service
namespace: birbnetes namespace: birbnetes
data: data:
SENTRY_DSN: "https://80d27db8c74f4556a19a1bf0180b373f@sentry.kmlabz.com/23"
RELEASE_ID: birb-k8s
GUARD_CLIENT_ID: guard-b50d97f6-29f9-4de5-a96e-f9b69ca69f7f GUARD_CLIENT_ID: guard-b50d97f6-29f9-4de5-a96e-f9b69ca69f7f
GUARD_SERVICE_RELEASEMODE: release GUARD_MQTT_HOSTNAME: activemq
GUARD_MQTT_PASSWORD: de4d2182
GUARD_MQTT_PORT: "1883"
GUARD_MQTT_TOPIC: command
GUARD_MQTT_USERNAME: birbnetes
GUARD_RABBITMQ_EXCHANGE: output
GUARD_RABBITMQ_HOSTNAME: birb-rabbitmq GUARD_RABBITMQ_HOSTNAME: birb-rabbitmq
GUARD_RABBITMQ_EXCHANGE: "sample" GUARD_RABBITMQ_PASSWORD: ZgCiSiSO8t
GUARD_RABBITMQ_USERNAME: user GUARD_RABBITMQ_USERNAME: user
GUARD_RABBITMQ_PASSWORD: 1wZVQnP5vy GUARD_SERVICE_RELEASEMODE: release
GUARD_MQTT_HOSTNAME: guard-postgres SAMPLE_SVC_HOSTNAME: sample-service
GUARD_MQTT_PORT: 1883 RELEASE_ID: kmlabz-k8s
GUARD_MQTT_USERNAME: guard-service SENTRY_DSN: https://1d01460ec3094d5bb6c4d78c0a028b08@glitchtip.kmlabz.com/7
GUARD_MQTT_PASSWORD: guard-service-supersecret
GUARD_MQTT_TOPIC: guard-service
INPUT_SVC_HOSTNAME: input-service

View File

@ -19,9 +19,31 @@ spec:
spec: spec:
containers: containers:
- name: guard-service - name: guard-service
image: registry.kmlabz.com/birbnetesgit/guard-service image: registry.kmlabz.com/birbnetes/guard-service
imagePullPolicy: Always
envFrom: envFrom:
- configMapRef: - configMapRef:
name: guard-service name: guard-service
- name: jaeger-agent
image: jaegertracing/jaeger-agent:latest
imagePullPolicy: IfNotPresent
ports:
- containerPort: 5775
name: zk-compact-trft
protocol: UDP
- containerPort: 5778
name: config-rest
protocol: TCP
- containerPort: 6831
name: jg-compact-trft
protocol: UDP
- containerPort: 6832
name: jg-binary-trft
protocol: UDP
- containerPort: 14271
name: admin-http
protocol: TCP
args:
- --reporter.grpc.host-port=dns:///woolsey.tormakristof.eu:14250
imagePullSecrets: imagePullSecrets:
- name: regcred - name: regcred

View File

@ -2,3 +2,7 @@ sentry_sdk
pika pika
requests requests
paho-mqtt paho-mqtt
opentracing~=2.4.0
jaeger-client
requests-opentracing

View File

@ -1,9 +1,21 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import sys
import json import json
import logging
import sentry_sdk import sentry_sdk
import pika import pika
import requests import requests
from sentry_sdk.integrations.logging import LoggingIntegration
import jaeger_client
import opentracing
from opentracing.ext import tags
from opentracing.propagation import Format
from requests_opentracing import SessionTracing
import config import config
import uuid
from mqtt_helper import MQTT from mqtt_helper import MQTT
""" """
@ -15,41 +27,134 @@ __copyright__ = "Copyright 2020, Birbnetes Team"
__module_name__ = "app" __module_name__ = "app"
__version__text__ = "1" __version__text__ = "1"
if config.SENTRY_DSN:
sentry_sdk.init(
dsn=config.SENTRY_DSN,
send_default_pii=True,
release=config.RELEASE_ID,
environment=config.RELEASEMODE
)
def setup_rabbit(mqtt_: MQTT) -> None:
def setup_rabbit() -> None: logging.info("Connecting to RabbitMQ...")
credentials = pika.PlainCredentials(config.RABBIT_USERNAME, config.RABBIT_PASSWORD) credentials = pika.PlainCredentials(config.RABBIT_USERNAME, config.RABBIT_PASSWORD)
connection = pika.BlockingConnection(pika.ConnectionParameters(host=config.RABBIT_HOSTNAME, while True:
credentials=credentials, connection = pika.BlockingConnection(pika.ConnectionParameters(host=config.RABBIT_HOSTNAME,
heartbeat=0, credentials=credentials,
socket_timeout=5)) heartbeat=30,
channel = connection.channel() socket_timeout=45))
exchange = channel.exchange_declare(exchange=config.RABBIT_EXCHANGE, channel = connection.channel()
exchange_type='fanout', channel.exchange_declare(exchange=config.RABBIT_EXCHANGE, exchange_type='fanout')
durable=True, queue = channel.queue_declare(durable=True, auto_delete=True, queue=uuid.uuid4().urn.split(':')[2],
auto_delete=False) exclusive=True).method.queue
queue = channel.queue_declare(durable=True, auto_delete=False) channel.queue_bind(exchange=config.RABBIT_EXCHANGE, queue=queue)
queue.bind(exchange) channel.basic_consume(queue=queue, on_message_callback=on_message_creator(mqtt_), auto_ack=False)
queue.basic_consume(on_message, no_ack=True) logging.debug("Starting consumption...")
try:
channel.start_consuming() # this automagically responds to heartbeats
except pika.exceptions.AMQPConnectionError as e:
logging.warning(f"AMQP Error happened: {e}; Reconnecting...")
def on_message(channel, method_frame, header_frame, body): def on_message_creator(mqtt_: MQTT):
msg_json = json.loads(body) """
if msg_json['probability'] > 0.5: This generator is used, so that the mqtt object can be injected just when the callback is registered
r = requests.get(f"http://{config.INPUT_HOSTNAME}/sample/{msg_json['tag']}") """
r.raise_for_status()
mqtt.publish(json.dumps({"deviceID": r.json()['device_id'], "sensorID": "", "command": "doAlert"})) requests_session = SessionTracing(propagate=True)
def on_message(
channel: pika.channel.Channel,
method: pika.spec.Basic.Deliver,
properties: pika.spec.BasicProperties,
body: bytes
):
try:
msg_json = json.loads(body)
except (json.JSONDecodeError, UnicodeDecodeError) as e:
logging.error(f"Malformed message from classifier: {e}")
channel.basic_ack(delivery_tag=method.delivery_tag)
return
span_ctx = opentracing.tracer.extract(Format.TEXT_MAP, msg_json)
span_tags = {tags.SPAN_KIND: tags.SPAN_KIND_CONSUMER}
with opentracing.tracer.start_active_span(
'handleMessage', finish_on_close=True, child_of=span_ctx, tags=span_tags
) as scope:
if ('probability' not in msg_json) or ('class' not in msg_json):
logging.error("Malformed message from classifier: Missing fields")
channel.basic_ack(delivery_tag=method.delivery_tag)
return
# TODO: strurnus should not be hardcoded here
if (msg_json['class'] == 'sturnus') and (msg_json['probability'] > config.TRIGGER_LEVEL):
scope.span.log_kv({'event': 'decisionMade', 'alerting': True})
try:
r = requests_session.get(
f"http://{config.SAMPLE_SVC_HOSTNAME}/sample/{msg_json['tag']}",
timeout=config.INPUT_TIMEOUT
)
except requests.exceptions.Timeout:
logging.error(f"Input-service timed out! (Timeout: {config.INPUT_TIMEOUT} sec)")
channel.basic_nack(delivery_tag=method.delivery_tag, requeue=True)
return
if r.status_code != 200:
logging.error(f"Input-service status code is not 200: {r.status_code}")
channel.basic_nack(delivery_tag=method.delivery_tag, requeue=True)
return
if 'device_id' not in r.json():
logging.error("Input-service response invalid")
channel.basic_nack(delivery_tag=method.delivery_tag, requeue=True)
return
logging.info(f"Sending alert command to device {r.json()['device_id']}...")
with opentracing.tracer.start_active_span(
'publishAlert',
tags={
tags.SPAN_KIND: tags.SPAN_KIND_PRODUCER,
"device_id": r.json()['device_id']
}
):
mqtt_.publish(
subtopic=r.json()['device_id'],
message=json.dumps({"command": "doAlert"})
)
else:
scope.span.log_kv({'event': 'decisionMade', 'alerting': False})
logging.debug(f"Probability is either bellow trigger level, or not the target class. Nothing to do.")
# This concludes the job
channel.basic_ack(delivery_tag=method.delivery_tag)
return on_message
if __name__ == "__main__": def main():
logging.basicConfig(
stream=sys.stdout,
format="%(asctime)s - %(name)s [%(levelname)s]: %(message)s",
level=config.LOG_LEVEL
)
if config.SENTRY_DSN:
sentry_logging = LoggingIntegration(
level=logging.DEBUG, # Capture info and above as breadcrumbs
event_level=logging.ERROR # Send errors as events
)
sentry_sdk.init(
dsn=config.SENTRY_DSN,
send_default_pii=True,
integrations=[sentry_logging],
traces_sample_rate=0.0,
release=config.RELEASE_ID,
environment=config.RELEASEMODE,
_experiments={"auto_enabling_integrations": True}
)
jaeger_client.Config(config={}, service_name='guard-service', validate=True).initialize_tracer()
logging.info("Guard service starting...")
mqtt = MQTT() mqtt = MQTT()
mqtt.topic = config.MQTT_TOPIC mqtt.topic = config.MQTT_TOPIC
mqtt.connect() mqtt.connect()
setup_rabbit() mqtt.client.loop_start() # Start MQTT event loop on a different thread
setup_rabbit(mqtt)
if __name__ == "__main__":
main()

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import os import os
import sys
import logging
""" """
@ -29,4 +31,12 @@ MQTT_USERNAME = os.getenv("GUARD_MQTT_USERNAME", "guard-service")
MQTT_PASSWORD = os.getenv("GUARD_MQTT_PASSWORD", "guard-service") MQTT_PASSWORD = os.getenv("GUARD_MQTT_PASSWORD", "guard-service")
MQTT_TOPIC = os.getenv("GUARD_MQTT_TOPIC", "guard-service") MQTT_TOPIC = os.getenv("GUARD_MQTT_TOPIC", "guard-service")
INPUT_HOSTNAME = os.getenv("INPUT_SVC_HOSTNAME", "input-service") SAMPLE_SVC_HOSTNAME = os.getenv("SAMPLE_SVC_HOSTNAME", "input-service")
INPUT_TIMEOUT = int(os.environ.get("INPUT_SVC_TIMEOUT", 5))
TRIGGER_LEVEL = float(os.environ.get("TRIGGER_LEVEL", 0.51))
LOG_LEVEL = logging.DEBUG if (
'--debug' in sys.argv
) or (
os.environ.get('DEBUG', '0').lower() in ['yes', 'true', '1']
) else logging.INFO

View File

@ -1,4 +1,5 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import logging
import paho.mqtt.client as mqtt import paho.mqtt.client as mqtt
import config import config
@ -18,7 +19,7 @@ class MQTT:
""" """
def __init__(self, host=config.MQTT_HOSTNAME, port=config.MQTT_PORT, client_id=config.CLIENT_ID, qos=2, def __init__(self, host=config.MQTT_HOSTNAME, port=config.MQTT_PORT, client_id=config.CLIENT_ID, qos=2,
retain=True): retain=False, username=config.MQTT_USERNAME, password=config.MQTT_PASSWORD):
""" """
Init variables Init variables
:param host: :param host:
@ -31,24 +32,26 @@ class MQTT:
self.host = host self.host = host
self.port = port self.port = port
self.client_id = client_id self.client_id = client_id
self.topic = None self._topic = None
self.qos = qos self.qos = qos
self.retain = retain self.retain = retain
self.username = username
self.password = password
def get_topic(self) -> str: def get_topic(self) -> str:
""" """
Set topic Set topic
:return: :return:
""" """
return self.topic return self._topic
def set_topic(self, topic: str) -> None: def set_topic(self, value: str) -> None:
""" """
Get current topic Get current topic
:param topic: :param value:
:return: :return:
""" """
self.topic = topic self._topic = value
topic = property(get_topic, set_topic) topic = property(get_topic, set_topic)
@ -57,14 +60,22 @@ class MQTT:
Setup client and connect to broker Setup client and connect to broker
:return: :return:
""" """
logging.info("Connecting to MQTT")
self.client = mqtt.Client(client_id=self.client_id, clean_session=True, userdata=None, protocol=mqtt.MQTTv311, self.client = mqtt.Client(client_id=self.client_id, clean_session=True, userdata=None, protocol=mqtt.MQTTv311,
transport="tcp") transport="tcp")
self.client.username_pw_set(username=self.username,password=self.password)
self.port = int(self.port)
self.client.connect(host=self.host, port=self.port, keepalive=60) self.client.connect(host=self.host, port=self.port, keepalive=60)
def publish(self, message: str) -> None: def publish(self, message: str, subtopic: str = "") -> None:
""" """
Publish a message Publish a message
:param message: :param message:
:param subtopic:
:return: :return:
""" """
self.client.publish(self.topic, message, qos=self.qos, retain=self.retain) logging.debug(f"MQTT Topic: {self.topic}/{subtopic} Message: {message} QOS: {self.qos} Retain: {self.retain}")
if subtopic:
self.client.publish(f"{self.topic}/{subtopic}", message, qos=self.qos, retain=self.retain)
else:
self.client.publish(self.topic, message, qos=self.qos, retain=self.retain)