mirror of
https://github.com/Limnoria/Limnoria-doc.git
synced 2025-04-04 14:29:46 +00:00
176 lines
6.3 KiB
ReStructuredText
176 lines
6.3 KiB
ReStructuredText
.. _events:
|
|
|
|
***********************************
|
|
Special methods and catching events
|
|
***********************************
|
|
|
|
This page is a non-exhaustive list of special plugin method names and
|
|
events catchable via those methods (other events include
|
|
:ref:`configuration hooks <configuration-hooks>` and
|
|
:ref:`HTTP server callbacks <http_plugins>`)
|
|
|
|
All methods here are defined in ``supybot-callbacks-plugin``. You may
|
|
override them if you need, but make sure you call the parent's one
|
|
unless you actually don't want to do it.
|
|
|
|
In case multiple plugins implement the same special methods, the order
|
|
they are called depends on the ``callAfter`` and ``callBefore``
|
|
(lists of plugin names) attributes of the plugins, if they are set.
|
|
|
|
Loading and unloading
|
|
=====================
|
|
|
|
The ``__init__`` method gets called with an Irc object as a parameter
|
|
when a plugin is loaded (or has just been reloaded).
|
|
Make sure you always call the parent's ``__init__``.
|
|
|
|
When a plugin is unloaded (or is to be reloaded), the ``die``
|
|
method is called (with no parameter).
|
|
Also make sure you always call the parent's ``die``.
|
|
|
|
.. _do-method-handlers:
|
|
|
|
Commands and numerics
|
|
=====================
|
|
|
|
You can catch commands directly with “do-methods”: when the bot receives a
|
|
``PRIVMSG``, all ``doPrivmsg`` methods are called; when it gets a ``437``
|
|
message, all ``do437`` methods are called, etc.
|
|
|
|
These methods are called **after** Limnoria updates its internal state;
|
|
so for example someone changes their nick from ``foo`` to ``bar`` (ie.
|
|
``:foo!~user@example.org NICK bar``), then ``doNick`` is called while
|
|
``irc.state.channels.[...].users`` already contains ``bar``.
|
|
|
|
Those command take two arguments: an :ref:`Irc object <supybot-irclib-irc>`
|
|
and a :ref:`IrcMsg object <supybot-ircmsgs>`.
|
|
|
|
To get a list of all possible messages, check `IRC specifications
|
|
<https://modern.ircdocs.horse/>`__.
|
|
|
|
Filters
|
|
=======
|
|
|
|
The ``inFilter`` and ``outFilter`` methods allow you to “intercept”
|
|
messages between the bot and the network and to alter them.
|
|
|
|
``inFilter`` gets messages just after they are parsed from network;
|
|
and its return value is fed to the bot.
|
|
``outFilter`` does the opposite: it get any message the bot is about
|
|
the send, and returns a message (which may be the same) that will
|
|
be sent instead.
|
|
|
|
|
|
.. _commands_handling:
|
|
|
|
Commands handling
|
|
=================
|
|
|
|
Command dispatching
|
|
-------------------
|
|
|
|
* ``isCommandMethod`` takes a command name as a string (which may contain
|
|
spaces) and returns a boolean telling if the plugin provides this command.
|
|
* ``listCommands`` returns a list of command names as strings (which may
|
|
contain spaces)
|
|
* ``getCommand`` takes a potential command name as a list of strings, and
|
|
returns a truncated list corresponding to the name of a command provided
|
|
by the plugin. If no command match, it returns an empty list.
|
|
* ``getCommandMethod`` takes a command name as a list of strings and
|
|
returns the corresponding method/function.
|
|
* ``callCommand`` gets a command name as a list of strings, an irc object,
|
|
an msg object, and extra arguments (with `*args` and `**kwargs`),
|
|
calls ``getCommandMethod`` to get the command method, and calls it
|
|
with the arguments.
|
|
It also calls the functions in ``pre_command_callback``.
|
|
|
|
Pre-command-call callbacks
|
|
--------------------------
|
|
|
|
.. note::
|
|
Until stock Supybot and Gribble merge this feature, this section
|
|
only applies to Limnoria
|
|
|
|
If you want a function of your plugin to be called before every command call,
|
|
you can add it to the ``pre_command_callback`` attribute of your plugin
|
|
(actually, it is a static class attribute, so make sure you *add* it to the
|
|
list and don't touch other items of the list).
|
|
|
|
At every command call, *all* callbacks are called, and if *any* of them
|
|
returns ``True``, the command is not called.
|
|
|
|
Other command-related events
|
|
----------------------------
|
|
|
|
* all ``invalidCommand`` methods get called (with an Irc object, an IrcMsg
|
|
objet, and a list of token) when a user calls a command that no plugin
|
|
provides.
|
|
|
|
|
|
Regular expression triggered events
|
|
===================================
|
|
|
|
The :class:`supybot.callbacks.PluginRegexp` class provides some utilities
|
|
for creating plugins that act on regular expression matching.
|
|
|
|
Reacting to URLs
|
|
----------------
|
|
|
|
As a special case of :class:`supybot.callbacks.PluginRegexp`, :func:`supybot.commands.urlSnarfer` can be used to act on people sending URLs. It avoids loops with other bots and ignores private messages.
|
|
|
|
Here is an example plugin that creates a new snarfer for example.com, gated behind a config variable ``plugins.examplesnarfer.enabled``
|
|
|
|
.. code-block:: python
|
|
|
|
from supybot import utils, plugins, ircutils, callbacks
|
|
from supybot.commands import *
|
|
from supybot.i18n import PluginInternationalization
|
|
|
|
_ = PluginInternationalization('ExampleSnarfer')
|
|
|
|
class ExampleSnarfer(callbacks.PluginRegexp):
|
|
""" Example URL snarfer """
|
|
# Note the class uses callbacks.PluginRegexp
|
|
|
|
# Specify the handler method
|
|
regexps = ['snarfer_handler']
|
|
|
|
# urlSnarfer() stops calling handlers once a message has been replied to
|
|
# Call this plugin before others that use urlSnarfer()
|
|
callBefore = ["Web"]
|
|
|
|
@urlSnarfer
|
|
def snarfer_handler(self, irc, msg, match):
|
|
r'https://example\.com(/(\S*)|\s|$)'
|
|
# Messages that include a match to the regex are passed to this method
|
|
# https://example.com
|
|
# https://example.com/
|
|
# https://example.com/anything/else/here
|
|
|
|
if not self.registryValue('enabled', channel=msg.channel, network=irc.network):
|
|
return
|
|
|
|
full_match = match.group(0)
|
|
capture_group = match.group(2)
|
|
|
|
if capture_group:
|
|
irc.reply(
|
|
_('ExampleSnarfer matched: %s and used a capture group to extract: %s')
|
|
% (full_match, capture_group)
|
|
)
|
|
else:
|
|
irc.reply(_('ExampleSnarfer matched: %s') % (full_match,))
|
|
|
|
Class = ExampleSnarfer
|
|
|
|
Add the :ref:`channel specific value <conf-dev-register-channel-value>` to ``config.py``:
|
|
|
|
.. code-block:: python
|
|
|
|
conf.registerChannelValue(ExampleSnarfer, "enabled",
|
|
registry.Boolean(True,
|
|
_("""Enable example snarfing""")
|
|
)
|
|
)
|
|
|