3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-27 21:19:31 +01:00

clientbot: begin work on special hooks & move event relaying to a separate plugin

This commit is contained in:
James Lu 2016-07-23 00:55:06 -07:00
parent 7eaf074019
commit 88e510b4cf
2 changed files with 24 additions and 2 deletions

View File

@ -0,0 +1,14 @@
# relay_clientbot.py: Clientbot extensions for Relay
from pylinkirc import utils
from pylinkirc.log import log
def handle_cbmessages(irc, source, command, args):
target = args['target']
text = args['text']
if irc.pseudoclient:
# TODO: configurable format
irc.proto.message(irc.pseudoclient.uid, target,
'<%s> %s' % (irc.getFriendlyName(source), text))
utils.add_hook(handle_cbmessages, 'CLIENTBOT_MESSAGE')

View File

@ -129,6 +129,7 @@ class ClientbotWrapperProtocol(Protocol):
else: else:
log.debug('(%s) join: faking JOIN of client %s/%s to %s', self.irc.name, client, log.debug('(%s) join: faking JOIN of client %s/%s to %s', self.irc.name, client,
self.irc.getFriendlyName(client), channel) self.irc.getFriendlyName(client), channel)
self.irc.callHooks([client, 'CLIENTBOT_JOIN', {'channel': channel}])
def kick(self, source, channel, target, reason=''): def kick(self, source, channel, target, reason=''):
"""Sends channel kicks.""" """Sends channel kicks."""
@ -154,14 +155,18 @@ class ClientbotWrapperProtocol(Protocol):
def message(self, source, target, text, notice=False): def message(self, source, target, text, notice=False):
"""Sends messages to the target.""" """Sends messages to the target."""
command = 'NOTICE' if notice else 'PRIVMSG' command = 'NOTICE' if notice else 'PRIVMSG'
target = self._expandPUID(target)
self.irc.send('%s %s :%s' % (command, target, self._formatText(source, text))) if self.irc.pseudoclient and self.irc.pseudoclient.uid == source:
self.irc.send('%s %s :%s' % (command, self._expandPUID(target), text))
else:
self.irc.callHooks([source, 'CLIENTBOT_MESSAGE', {'target': target, 'is_notice': notice, 'text': text}])
def nick(self, source, newnick): def nick(self, source, newnick):
"""STUB: Sends NICK changes.""" """STUB: Sends NICK changes."""
if source == self.irc.pseudoclient.uid: if source == self.irc.pseudoclient.uid:
self.irc.send('NICK :%s' % (channel, self._expandPUID(target), reason)) self.irc.send('NICK :%s' % (channel, self._expandPUID(target), reason))
else:
self.irc.callHooks([source, 'CLIENTBOT_NICK', {'newnick': newnick}])
self.irc.users[source].nick = newnick self.irc.users[source].nick = newnick
def notice(self, source, target, text): def notice(self, source, target, text):
@ -188,10 +193,13 @@ class ClientbotWrapperProtocol(Protocol):
# Only parts for the main PyLink client are actually forwarded. Others are ignored. # Only parts for the main PyLink client are actually forwarded. Others are ignored.
if self.irc.pseudoclient and source == self.irc.pseudoclient.uid: if self.irc.pseudoclient and source == self.irc.pseudoclient.uid:
self.irc.send('PART %s :%s' % (channel, reason)) self.irc.send('PART %s :%s' % (channel, reason))
else:
self.irc.callHooks([source, 'CLIENTBOT_PART', {'channel': channel, 'text': reason}])
def quit(self, source, reason): def quit(self, source, reason):
"""STUB: Quits a client.""" """STUB: Quits a client."""
self.removeClient(source) self.removeClient(source)
self.irc.callHooks([source, 'CLIENTBOT_QUIT', {'text': reason}])
def sjoin(self, server, channel, users, ts=None, modes=set()): def sjoin(self, server, channel, users, ts=None, modes=set()):
"""STUB: bursts joins from a server.""" """STUB: bursts joins from a server."""