3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 09:19:23 +01:00
PyLink/docs/technical/writing-plugins.md

8.6 KiB
Raw Permalink Blame History

Writing plugins for PyLink

Last updated for 2.1-alpha2 (2019-06-27).

Most features in PyLink (Relay, Automode, etc.) are implemented as plugins, which can be mix-and-matched on any particular instance. Without any plugins loaded, PyLink can connect to servers but wont accomplish anything useful.

This guide, along with the sample plugin example.py aim to show the basics of writing plugins for PyLink.

Receiving data from IRC

Plugins have two ways of communicating with IRC: hooks, and commands directed towards service clients. Any plugin can use one or a combination of these.

Hook events

PyLinks hooks system is designed as a protocol-independent method for protocol modules to communicate with plugins (and to a lesser extend, for plugins to communicate with each other). Hook events are the most versatile form of communication available, with each individual event generally corresponding to a specific chat or server event (e.g. PRIVMSG, JOIN, KICK). Each hook payload includes 4 parts:

  1. The corresponding network object (IRC object) where the event took place (type: a subclass of pylinkirc.classes.PyLinkNetworkCore)
  2. The numeric ID† of the sender (type: str)
  3. An identifier for the command name, which may or may not be the same as the name of the hook depending on context (type: str)
  4. A freeform dict of arguments, where data keys vary by command - see the PyLink hooks reference for whats available where.

Functions intended to be hook handlers therefore take in 4 arguments corresponding to the ones listed above: irc, source, command, and args.

Return codes for hook handlers

As of PyLink 2.0, the return value of hook handlers are used to determine how the original event will be passed on to further handlers (that is, those created by plugins loaded later, or hook handlers registered with a lower priority).

The following return values are supported so far:

  • None or True: passthrough the event unchanged to further handlers (the default behavior)
  • False: block the event from reaching other handlers

Hook handlers may raise exceptions without blocking the event from reaching further handlers; these are caught by PyLink and logged appropriately.

Modifying a hook payload

As of PyLink 2.1, it is acceptable to modify a hook event payload in any plugin handler. This can be used for filtering purposes, e.g. Antispams part/quit message filtering.

You should take extra caution not to corrupt hook payloads, especially ones that relate to state keeping. Otherwise, other plugins may fail to function correctly.

Hook priorities

The priority option in utils.add_hook() allows setting a hook handlers priority when binding it. When multiple modules bind to one hook command, handlers are called in order of decreasing priority (i.e. highest first).

There is no standard for hook priorities as of 2.0; instead they are declared as necessary. Some priority values used in 2.0 are shown here for reference (the default priority for handlers is 100):

Module Commands Priority Description
service_support ENDBURST 500 This sets up services bots before plugins run so that they can assume their presence when initializing.
antispam PRIVMSG, NOTICE 990-1000 This allows antispam to filter away spam before it can reach other handlers.
relay PRIVMSG, NOTICE 200 Fixes https://github.com/jlu5/PyLink/issues/123. Essentially, this lets Relay forward messages calling commands before letting the command handler work (and then relaying its responses).
ctcp PRIVMSG 200 The ctcp plugin processes CTCPs and blocks them from reaching the services command handler, preventing extraneous “unknown command” errors.

Bot commands

Plugins can also define service bot commands, either for the main PyLink service bot or for one created by the plugin itself. This section only details the former - see the Services API Guide for details on the latter.

Commands are registered by calling utils.add_cmd() with one or two arguments. Ex) - utils.add_cmd(testcommand, "hello") registers a function named testcommand as the command handler for hello (i.e. /msg PyLink hello) - utils.add_cmd(testcommand) registers a function named testcommand as the command handler for testcommand.

utils.add_cmd(...) also takes some keyword arguments, described in the services API guide (replace myservice.add_cmd with utils.add_cmd). Decorator syntax (@utils.add_cmd) can also be used for the second example above.

Each command handler function takes 3 arguments: irc, source, args. - irc: The network object where the command was called. - source: The numeric ID (or pseudo-ID) of the sender. - args: A list of command arguments (not including the command name) that the command was called with. For example, /msg PyLink hello world 1234 would give an args list of ['world', '1234']

As of PyLink 1.2, there are two ways for a plugin to parse arguments: as a raw list of strings, or with utils.IRCParser (an argparse wrapper). IRCParser() is documented in the “using IRCParser” page.

Command handlers do not return anything and can raise exceptions, which are caught by the core and automatically return an error message.

Sending data to IRC

Plugins receive data from the underlying protocol module, and communicate back using outgoing command functions implemented by the protocol module. They should never send raw data directly back to IRC, because that wouldnt be portable across different IRCds.

These functions are called in the form: irc.command(arg1, arg2, ...). For example, the command irc.join('10XAAAAAB', '#bots') would join a PyLink client with UID 10XAAAAAB to the channel #bots.

For sending messages (e.g. replies to commands), simpler forms of:

  • irc.reply(text, notice=False, source=None)
  • irc.error(text, notice=False, source=None)
  • and irc.msg(targetUID, text, notice=False, source=None)

are preferred.

irc.reply() is a frontend to irc.msg() which automatically finds the right target to reply to: that is, the channel for fantasy commands and the caller for PMs. irc.error() is in turn a wrapper around irc.reply() which prefixes the given text with Error:.

The sender UID for all of these can be set using the source argument, and defaults to the main PyLink client.

Access checking for commands

See the Permissions API documentation on how to restrict commands to certain users.

Special triggers for plugin (un)loading

The following functions can also be defined in the body of a plugin to hook onto plugin loading / unloading.

  • main(irc=None): Called on plugin load. irc is only defined when the plugin is being reloaded from a network: otherwise, it means that PyLink has just been started.
  • die(irc=None): Called on plugin unload or daemon shutdown. irc is only defined when the shutdown or unload was called from an IRC network.

Other tips

Logging

Use PyLinks global logger (from pylinkirc.log import log) instead of print statements.

Some useful attributes

  • world.networkobjects provides a dict mapping network names (case sensitive) to their corresponding network objects/protocol module instances.
  • irc.connected is a threading.Event() object that is set when a network finishes bursting.
  • world.started is a threading.Event() object that is set when all networks have been initialized.
  • world.plugins provides a dict mapping loaded plugins names (case sensitive) to their module objects. This is the preferred way to call another pluginss methods if need be (while of course, forcing you to check whether the other plugin is already loaded).
  • world.services provides a dict mapping service bot names to their utils.ServiceBot instances.

Useful modules

classes.py, utils.py and structures.py all provide a ton of public methods which arent documented here for conciseness. In classes.py, PyLinkNetworkCore and PyLinkNetworkCoreUtils (which all protocol modules inherit from) are where many utility and state-checking functions sit.