3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 17:29:21 +01:00
PyLink/docs/technical/pmodule-spec.md
James Lu 61cf48c37c pmodule-spec: various fixes
- Corrected the location of the `self.irc.cmodes/umodes/prefixmodes` attributes
- Mention `self.conf_keys` as a special variable for completeness
2017-03-15 23:11:44 -07:00

13 KiB
Raw Blame History

PyLink Protocol Module Specification

Last updated for 1.2-dev (2017-03-15).

In PyLink, each protocol module is a file consisting of a protocol class (e.g. InspIRCdProtocol), and a global Class attribute set equal to it (e.g. Class = InspIRCdProtocol). These classes are usually based off boilerplate classes such as classes.Protocol, protocols.ircs2s_common.IRCS2SProtocol, or other protocol module classes that share functionality with it.

[Protocol module inheritence graph]

IRC objects load protocol modules by creating an instance of this Class attribute, and then proceeding to call its commands.

Tasks

Protocol modules have some very important jobs. If any of these arent done correctly, you will be left with a broken, desynced services server:

  1. Handle incoming commands from the uplink IRCd.

  2. Return hook data for relevant commands, so that plugins can receive data from IRC.

  3. Make sure channel/user states are kept correctly. Joins, quits, parts, kicks, mode changes, nick changes, etc. should all be handled accurately.

  4. Respond to both pings and pongs - the irc.lastping attribute must be set to the current time whenever a PONG is received from the uplink, so PyLinks doesnt lag out the uplink thinking that it isnt responding to our pings.

  5. Implement a series of outgoing command functions (see below), used by plugins to send commands to IRC.

  6. Set the threading.Event object irc.connected (via irc.connected.set()) when the protocol negotiation with the uplink is complete. This is important for plugins like Relay which must check that links are ready before spawning clients, and they will fail to work if this is not set.

  7. Check that recvpass is correct (when applicable), and raise ProtocolError with a relevant error message if not.

Core functions

The following functions must be implemented by any protocol module within its main class, since they are used by the IRC object internals.

  • connect(self) - Initializes a connection to a server.

  • handle_events(self, line) - Handles inbound data (lines of text) from the uplink IRC server. Normally, this will pass commands to other command handlers within the protocol module, while dropping commands that are unrecognized (wildcard handling). This is type of handling is only a guideline, as its technically possible to structure event listeners any way you want.

  • ping(self, source=None, target=None) - Sends a PING to a target server. Periodic PINGs are sent to our uplink automatically by the Irc() internals; plugins shouldnt have to use this.

Outgoing command functions

  • spawnClient(self, nick, ident='null', host='null', realhost=None, modes=set(), server=None, ip='0.0.0.0', realname=None, ts=None, opertype=None, manipulatable=False) - Spawns a client on the PyLink server. No nick collision / valid nickname checks are done by protocol modules, as it is up to plugins to make sure they dont introduce anything invalid.

    • modes is a list or set of (mode char, mode arg) tuples in the PyLink mode format.
    • ident and host default to “null”, while realhost defaults to the same things as host if not defined.
    • realname defaults to the real name specified in the PyLink config, if not given.
    • ts defaults to the current time if not given.
    • opertype (the oper type name, if applicable) defaults to the simple text of IRC Operator.
    • The manipulatable option toggles whether the client spawned should be considered protected. Currently, all this does is prevent commands from plugins like bots from modifying these clients, but future client protections (anti-kill flood, etc.) may also depend on this.
    • The server option optionally takes a SID of any PyLink server, and spawns the client on the one given. It will default to the root PyLink server.
  • join(self, client, channel) - Joins the given client UID given to a channel.

  • away(self, source, text) - Sends an AWAY message from a PyLink client. text can be an empty string to unset AWAY status.

  • invite(self, source, target, channel) - Sends an INVITE from a PyLink client.

  • kick(self, source, channel, target, reason=None) - Sends a kick from a PyLink client/server.

  • kill(self, source, target, reason) - Sends a kill from a PyLink client/server.

  • knock(self, source, target, text) - Sends a KNOCK from a PyLink client.

  • message(self, source, target, text) - Sends a PRIVMSG from a PyLink client.

  • mode(self, source, target, modes, ts=None) - Sends modes from a PyLink client/server. modes takes a set of ([+/-]mode char, mode arg) tuples.

  • nick(self, source, newnick) - Changes the nick of a PyLink client.

  • notice(self, source, target, text) - Sends a NOTICE from a PyLink client or server.

  • numeric(self, source, numeric, target, text) - Sends a raw numeric numeric with text from the source server to target.

  • part(self, client, channel, reason=None) - Sends a part from a PyLink client.

  • quit(self, source, reason) - Quits a PyLink client.

  • sjoin(self, server, channel, users, ts=None, modes=set()) - Sends an SJOIN for a group of users to a channel. The sender should always be a Server ID (SID). TS is optional, and defaults to the one weve stored in the channel state if not given. users is a list of (prefix mode, UID) pairs. Example uses:

    • sjoin('100', '#test', [('', '100AAABBC'), ('qo', 100AAABBB'), ('h', '100AAADDD')])
    • sjoin(self.irc.sid, '#test', [('o', self.irc.pseudoclient.uid)])
  • spawnServer(self, name, sid=None, uplink=None, desc=None) - Spawns a server off another PyLink server. desc (server description) defaults to the one in the config. uplink defaults to the main PyLink server, and sid (the server ID) is automatically generated if not given. Sanity checks for server name and SID validity ARE done by the protocol module here.

  • squit(self, source, target, text='No reason given') - SQUITs a PyLink server.

  • topic(self, source, target, text) - Sends a topic change from a PyLink client.

  • topicBurst(self, source, target, text) - Sends a topic change from a PyLink server. This is usually used on burst.

  • updateClient(self, source, field, text) - Updates the ident, host, or realname of a PyLink client. field should be either “IDENT”, “HOST”, “GECOS”, or “REALNAME”. If changing the field given on the IRCd isnt supported, NotImplementedError should be raised.

Things to note

Special variables

A protocol module should also set the following variables in their protocol class:

  • self.casemapping: a string ('rfc1459' or 'ascii') to determine which case mapping the IRCd uses.
  • self.hook_map: this is a dict, which maps non-standard command names sent by the IRCd to those used by PyLink hooks.
  • self.conf_keys: a set of strings determining which server configuration options a protocol module needs to function; see the Configuration key validation section below.

IRC object variables

A protocol module manipulates the following attributes in the IRC object it is attached to:

  • self.irc.cmodes / self.irc.umodes: These are mappings of named IRC modes (e.g. inviteonly or moderated) to a string list of mode letters, that should be either set during link negotiation or hardcoded into the protocol module. There are also special keys: *A, *B, *C, and *D, which must be set properly with a list of mode characters for that type of mode.
  • self.irc.prefixmodes: This defines a mapping of prefix modes (+o, +v, etc.) to their respective mode prefix. This will default to {'o': '@', 'v': '+'} (the standard op and voice) if not defined.
    • Example: self.irc.prefixmodes = {'o': '@', 'h': '%', 'v': '+'}

Topics

When receiving or sending topics, there is a topicset attribute in the IRC channel (IrcChannel) object that should be set True. It simply denotes that a topic has been set in the channel at least once. Relay uses this so it doesnt overwrite topics with empty ones during burst, when a relay channel initialize before the uplink has sent the topic for it.

Caveat: Topic handling is not yet subject to TS rules (which vary by IRCds) and are currently blindly accepted. https://github.com/GLolol/PyLink/issues/277

Mode formats

Modes are stored a special format in PyLink, different from raw mode strings in order to make them easier to parse. Mode strings can be turned into mode lists, which are used to represent mode changes in hooks, and when storing modes internally.

irc.parseModes(target, modestring) is used to convert mode strings to mode lists. target is the channel name/UID the mode is being set on, while modestring takes either a string or string split by spaces (really a list).

  • irc.parseModes('#chat', ['+tHIs', '*!*@is.sparta']) would give:
    • [('+t', None), ('+H', None), ('+I', '*!*@is.sparta'), ('+s', None)]

parseModes will also automatically convert prefix mode targets from nicks to UIDs, and drop any duplicate (already set) or invalid (e.g. missing argument) modes.

  • irc.parseModes('#chat', ['+ol invalidnick']):
    • []
  • irc.parseModes('#chat', ['+o GLolol']):
    • [('+o', '001ZJZW01')]

Then, a parsed mode list can be applied to channel name or UID using irc.applyModes(target, parsed_modelist). Note: for protocols that accept or reject mode changes based on TS (i.e. practically every IRCd), you may want to use Protocol.updateTS(...) to handle TS changes more efficiently.

Internally, modes are stored in IrcChannel and IrcUser objects as sets, with the + prefixing each mode character omitted. This set is accessed via the modes attribute:

<+GLolol> PyLink-devel, eval irc.users[source].modes
<@PyLink-devel> {('i', None), ('x', None), ('w', None), ('o', None)}
<+GLolol> PyLink-devel, eval irc.channels['#chat'].modes
<@PyLink-devel> {('n', None), ('t', None)}

Exception: the owner, admin, op, halfop, and voice channel prefix modes are stored separately as a dict of sets in IrcChannel.prefixmodes:

<@GLolol> PyLink-devel, eval irc.channels['#chat'].prefixmodes
<+PyLink-devel> {'op': set(), 'halfop': set(), 'voice': {'38QAAAAAA'}, 'owner': set(), 'admin': set()}

When a certain mode (e.g. owner) isnt supported on a network, the key still exists in prefixmodes but is simply unused.

Configuration key validation

Starting with PyLink 0.10.x, protocol modules can specify which config values within a server block they need in order to work. This is done by adjusting the self.conf_keys attribute, usually in the protocol modules __init__() method. The default set, defined in Classes.Protocol, includes {'ip', 'port', 'hostname', 'sid', 'sidrange', 'protocol', 'sendpass', 'recvpass'}. Should any of these keys be missing from a server block, PyLink will bail with a configuration error.

As an example, one protocol module that tweaks this is Clientbot, which removes all options except ip, protocol, and port.

Changes

  • 2017-03-15 (1.2-dev)
    • Corrected the location of self.irc.cmodes/umodes/prefixmodes attributes
    • Mention self.conf_keys as a special variable for completeness
  • 2017-01-29 (1.2-dev)
    • NOTICE can now be sent from servers.
    • This section was added.