mirror of
https://github.com/caronc/apprise.git
synced 2024-11-21 23:53:23 +01:00
mqtt:// support for publishing retain flag (#1185)
This commit is contained in:
parent
827db528d0
commit
9addff8cfb
@ -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
|
||||
"""
|
||||
@ -230,6 +235,10 @@ class NotifyMQTT(NotifyBase):
|
||||
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'] \
|
||||
@ -376,7 +385,7 @@ class NotifyMQTT(NotifyBase):
|
||||
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
|
||||
@ -456,6 +465,7 @@ class NotifyMQTT(NotifyBase):
|
||||
'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:
|
||||
@ -535,6 +545,10 @@ class NotifyMQTT(NotifyBase):
|
||||
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'] = \
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user