Skip to content

Commit

Permalink
mqtt:// support for publishing retain flag (#1185)
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc authored Aug 23, 2024
1 parent 827db52 commit 9addff8
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
18 changes: 16 additions & 2 deletions apprise/plugins/mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,15 @@ class NotifyMQTT(NotifyBase):
'type': 'bool',
'default': False,
},
'retain': {
'name': _('Retain Messages'),
'type': 'bool',
'default': False,
},
})

def __init__(self, targets=None, version=None, qos=None,
client_id=None, session=None, **kwargs):
client_id=None, session=None, retain=None, **kwargs):
"""
Initialize MQTT Object
"""
Expand All @@ -230,6 +235,10 @@ def __init__(self, targets=None, version=None, qos=None,
if session is None or not self.client_id \
else parse_bool(session)

# Our Retain Message Flag
self.retain = self.template_args['retain']['default'] \
if retain is None else parse_bool(retain)

# Set up our Quality of Service (QoS)
try:
self.qos = self.template_args['qos']['default'] \
Expand Down Expand Up @@ -376,7 +385,7 @@ def send(self, body, title='', notify_type=NotifyType.INFO, **kwargs):
self.logger.debug('MQTT Payload: %s' % str(body))

result = self.client.publish(
topic, payload=body, qos=self.qos, retain=False)
topic, payload=body, qos=self.qos, retain=self.retain)

if result.rc != mqtt.MQTT_ERR_SUCCESS:
# Toggle our status
Expand Down Expand Up @@ -456,6 +465,7 @@ def url(self, privacy=False, *args, **kwargs):
'version': self.version,
'qos': str(self.qos),
'session': 'yes' if self.session else 'no',
'retain': 'yes' if self.retain else 'no',
}

if self.client_id:
Expand Down Expand Up @@ -535,6 +545,10 @@ def parse_url(url):
if 'session' in results['qsd'] and len(results['qsd']['session']):
results['session'] = parse_bool(results['qsd']['session'])

# Message Retain Flag
if 'retain' in results['qsd'] and len(results['qsd']['retain']):
results['retain'] = parse_bool(results['qsd']['retain'])

# The MQTT Quality of Service to use
if 'qos' in results['qsd'] and len(results['qsd']['qos']):
results['qos'] = \
Expand Down
18 changes: 18 additions & 0 deletions test/test_plugin_mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,24 @@ def test_plugin_mqtt_session_client_id_success(mqtt_client_mock):
assert re.search(r'my/topic', obj.url())
assert re.search(r'client_id=apprise', obj.url())
assert re.search(r'session=yes', obj.url())
assert re.search(r'retain=no', obj.url())
assert obj.notify(body="test=test") is True


def test_plugin_mqtt_retain(mqtt_client_mock):
"""
Verify handling of Retain Message Flag
"""

obj = apprise.Apprise.instantiate(
'mqtt://user@localhost/my/topic?retain=yes',
suppress_exceptions=False)

assert isinstance(obj, NotifyMQTT)
assert obj.url().startswith('mqtt://user@localhost')
assert re.search(r'my/topic', obj.url())
assert re.search(r'session=no', obj.url())
assert re.search(r'retain=yes', obj.url())
assert obj.notify(body="test=test") is True


Expand Down

0 comments on commit 9addff8

Please sign in to comment.