2013-04-13 20:33:06 +00:00
|
|
|
|
"""
|
|
|
|
|
This plugin lets you execute a command, to notify you from new important
|
|
|
|
|
messages.
|
|
|
|
|
|
|
|
|
|
Installation and configuration
|
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
|
|
You need to create a plugin configuration file. Create a file named :file:`simple_notify.cfg`
|
|
|
|
|
into your plugins configuration directory (:file:`~/.config/poezio/plugins` by
|
|
|
|
|
default), and fill it like this:
|
|
|
|
|
|
|
|
|
|
First example:
|
|
|
|
|
|
|
|
|
|
.. code-block:: ini
|
|
|
|
|
|
|
|
|
|
[simple_notify]
|
|
|
|
|
command = notify-send -i /path/to/poezio/data/poezio_80.png "New message from %(from)s" "%(body)s"
|
|
|
|
|
|
|
|
|
|
Second example:
|
|
|
|
|
|
|
|
|
|
.. code-block:: ini
|
|
|
|
|
|
|
|
|
|
[simple_notify]
|
2015-03-09 00:26:02 +00:00
|
|
|
|
command = echo \\<%(from)s\\> %(body)s >> some.fifo
|
2013-04-13 20:33:06 +00:00
|
|
|
|
delay = 3
|
|
|
|
|
after_command = echo >> some.fifo
|
|
|
|
|
|
|
|
|
|
You can put any command, instead of these ones. You can also use the
|
|
|
|
|
special keywords ``%(from)s`` and ``%(body)s`` that will be replaced
|
|
|
|
|
directly in the command line by the author of the message, and the body.
|
|
|
|
|
|
|
|
|
|
The first example shown above will display something like this:
|
|
|
|
|
|
|
|
|
|
.. figure:: ../images/simple_notify_example.png
|
|
|
|
|
:alt: Simple notify example
|
|
|
|
|
|
|
|
|
|
The second example will first write the author and the message in a
|
|
|
|
|
fifo, that fifo can locally be read by some other program (was tested
|
|
|
|
|
with the xmobar PipeReader command, which displays what is read from a
|
|
|
|
|
fifo into a status bar. Be careful, you have two different fifos in
|
|
|
|
|
that case, don’t get confused). The :term:`delay` and :term:`after_command` options
|
|
|
|
|
are used to erase/delete/kill the notification after a certain
|
|
|
|
|
delay. In our example it is used to display an empty message in our
|
|
|
|
|
xmobar, erasing the notification after 3 seconds.
|
|
|
|
|
|
2016-03-09 16:37:31 +00:00
|
|
|
|
Third example:
|
|
|
|
|
|
|
|
|
|
.. code-block:: ini
|
|
|
|
|
|
|
|
|
|
[simple_notify]
|
|
|
|
|
command = notify-send -i /path/to/poezio/data/poezio_80.png "New message from %(from)s" "%(body)s"
|
|
|
|
|
muc_too = true
|
2016-05-23 14:02:24 +00:00
|
|
|
|
muc_list = someroom@conference.jabber.org:someotherroom@conference.jabber.org
|
2016-03-09 16:37:31 +00:00
|
|
|
|
|
|
|
|
|
If present and set to ``True``, the ``muc_too`` option will also trigger a
|
|
|
|
|
notification when a new message arrives on a Multi User Chat you've joined.
|
|
|
|
|
|
2016-05-23 14:02:24 +00:00
|
|
|
|
If present and set to a colon separated list of muc JIDs, muc_list together
|
2016-05-22 06:32:45 +00:00
|
|
|
|
with muc_too = true will only notify when a new message arrives on a Multi
|
|
|
|
|
User Chat, you've joined if it is present on the list.
|
|
|
|
|
|
2013-04-13 20:33:06 +00:00
|
|
|
|
.. note:: If you set the :term:`exec_remote` option to ``true`` into the
|
|
|
|
|
main configuration file, the command will be executed remotely
|
|
|
|
|
(as explained in the :ref:`link-plugin` plugin help).
|
|
|
|
|
|
|
|
|
|
Options defined
|
|
|
|
|
---------------
|
|
|
|
|
|
|
|
|
|
.. glossary::
|
|
|
|
|
:sorted:
|
|
|
|
|
|
|
|
|
|
command
|
|
|
|
|
The command to execute (with special keywords ``%{from}s`` and ``${body}s``)
|
|
|
|
|
|
|
|
|
|
delay
|
|
|
|
|
Delay after which :term:`after_command` must be executed.
|
|
|
|
|
|
|
|
|
|
after_command
|
|
|
|
|
Command to run after :term:`delay`. You probably want to clean up things.
|
|
|
|
|
|
2016-03-09 16:37:31 +00:00
|
|
|
|
muc_too
|
|
|
|
|
Boolean indicating whether new messages in Multi User Chat rooms should
|
|
|
|
|
trigger a notification or not.
|
|
|
|
|
|
2013-04-13 20:33:06 +00:00
|
|
|
|
"""
|
|
|
|
|
|
2012-05-05 16:26:54 +00:00
|
|
|
|
from plugin import BasePlugin
|
2014-02-22 00:11:57 +00:00
|
|
|
|
from xhtml import get_body_from_message_stanza
|
2012-07-02 23:59:25 +00:00
|
|
|
|
from timed_events import DelayedEvent
|
2012-10-22 15:14:21 +00:00
|
|
|
|
import shlex
|
2016-03-09 16:37:31 +00:00
|
|
|
|
import common
|
|
|
|
|
|
2012-01-10 15:32:29 +00:00
|
|
|
|
|
|
|
|
|
class Plugin(BasePlugin):
|
|
|
|
|
def init(self):
|
2013-03-08 21:53:35 +00:00
|
|
|
|
self.api.add_event_handler('private_msg', self.on_private_msg)
|
|
|
|
|
self.api.add_event_handler('conversation_msg', self.on_conversation_msg)
|
2016-03-09 16:37:31 +00:00
|
|
|
|
if self.config.get('muc_too', False):
|
|
|
|
|
self.api.add_event_handler('muc_msg', self.on_muc_msg)
|
2013-03-08 21:53:35 +00:00
|
|
|
|
self.api.add_event_handler('highlight', self.on_highlight)
|
2012-01-10 15:32:29 +00:00
|
|
|
|
|
|
|
|
|
def on_private_msg(self, message, tab):
|
|
|
|
|
fro = message['from']
|
|
|
|
|
self.do_notify(message, fro)
|
|
|
|
|
|
2012-07-02 23:59:25 +00:00
|
|
|
|
def on_highlight(self, message, tab):
|
|
|
|
|
fro = message['from'].resource
|
|
|
|
|
self.do_notify(message, fro)
|
|
|
|
|
|
2012-01-10 15:32:29 +00:00
|
|
|
|
def on_conversation_msg(self, message, tab):
|
|
|
|
|
fro = message['from'].bare
|
|
|
|
|
self.do_notify(message, fro)
|
|
|
|
|
|
2016-03-09 16:37:31 +00:00
|
|
|
|
def on_muc_msg(self, message, tab):
|
2016-05-23 14:01:11 +00:00
|
|
|
|
# Dont notify if message is from yourself
|
|
|
|
|
if message['from'].resource == tab.own_nick:
|
|
|
|
|
return
|
|
|
|
|
|
2016-05-22 06:32:45 +00:00
|
|
|
|
fro = message['from'].full
|
|
|
|
|
muc = message['from'].bare
|
2016-05-23 14:02:24 +00:00
|
|
|
|
whitelist=self.config.get('muc_list', '').split(':')
|
2016-05-22 06:32:45 +00:00
|
|
|
|
|
2016-03-09 16:37:31 +00:00
|
|
|
|
# Prevent old messages to be notified
|
|
|
|
|
# find_delayed_tag(message) returns (True, the datetime) or
|
|
|
|
|
# (False, None)
|
|
|
|
|
if not common.find_delayed_tag(message)[0]:
|
2016-05-22 06:32:45 +00:00
|
|
|
|
# Only notify if whitelist is empty or muc in whitelist
|
|
|
|
|
if whitelist == [''] or muc in whitelist:
|
|
|
|
|
self.do_notify(message, fro)
|
2016-03-09 16:37:31 +00:00
|
|
|
|
|
2012-01-10 15:32:29 +00:00
|
|
|
|
def do_notify(self, message, fro):
|
2014-02-22 00:11:57 +00:00
|
|
|
|
body = get_body_from_message_stanza(message, use_xhtml=False)
|
2012-01-10 15:32:29 +00:00
|
|
|
|
if not body:
|
|
|
|
|
return
|
2012-10-22 15:14:21 +00:00
|
|
|
|
command_str = self.config.get('command', '').strip()
|
|
|
|
|
if not command_str:
|
2013-03-08 21:53:35 +00:00
|
|
|
|
self.api.information('No notification command was provided in the configuration file', 'Warning')
|
2012-01-10 15:32:29 +00:00
|
|
|
|
return
|
2012-10-22 15:14:21 +00:00
|
|
|
|
command = [arg % {'body': body.replace('\n', ' '), 'from': fro} for arg in shlex.split(command_str)]
|
|
|
|
|
self.core.exec_command(command)
|
|
|
|
|
after_command_str = self.config.get('after_command', '').strip()
|
|
|
|
|
if not after_command_str:
|
2012-07-02 23:59:25 +00:00
|
|
|
|
return
|
2012-10-22 15:14:21 +00:00
|
|
|
|
after_command = [arg % {'body': body.replace('\n', ' '), 'from': fro} for arg in shlex.split(after_command_str)]
|
|
|
|
|
delayed_event = DelayedEvent(self.config.get('delay', 1), self.core.exec_command, after_command)
|
2013-03-08 21:53:35 +00:00
|
|
|
|
self.api.add_timed_event(delayed_event)
|