From f99000f4921870274b2b5a72b5a687a821827e32 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 7 Jun 2015 18:15:36 -0700 Subject: [PATCH] Add internal functions for psuedoclient kick, quit, and nick --- proto.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/proto.py b/proto.py index 9342b38..7da7d58 100644 --- a/proto.py +++ b/proto.py @@ -32,6 +32,8 @@ def spawnClient(irc, nick, ident, host, *args): def joinClient(irc, client, channel): # Channel list can be a comma-separated list of channels, per the # IRC specification. + if not isInternalClient(irc, client): + raise LookupError('No user/PyLink PseudoClient %r exists.' % client) _sendFromUser(irc, "JOIN {channel} {ts} +nt :,{uid}".format(sid=irc.sid, ts=int(time.time()), uid=client.uid, channel=channel)) @@ -51,6 +53,42 @@ def removeClient(irc, numeric): print('Removing client %s from irc.servers[%s]' % (numeric, sid)) irc.servers[sid].users.remove(numeric) +def isInternalClient(irc, numeric): + """ + + Returns whether is a PyLink PseudoClient. + """ + return numeric in irc.servers[irc.sid].users + +def quitClient(irc, numeric): + """ + + Quits a PyLink PseudoClient.""" + if isInternalClient(irc, numeric): + _sendFromUser(irc, numeric, "QUIT :Client quit") + else: + raise LookupError("No user %r exists. If you're trying to remove " + "a user that's not a PyLink PseudoClient from " + "the internal state, use removeClient() instead.") + +def kickClient(irc, channel, numeric, target, reason=None): + """ + + Sends a kick from a PyLink PseudoClient.""" + if not isInternalClient(irc, numeric): + raise LookupError('No user/PyLink PseudoClient %r exists.' % numeric) + if reason is None: + reason = irc.users[target].nick + _sendFromUser(irc, numeric, 'KICK %s %s :%s' % (channel, target, reason)) + +def nickClient(irc, numeric, newnick, reason=None): + """ + + Changes the nick of a PyLink PseudoClient.""" + if not isInternalClient(irc, numeric): + raise LookupError('No user/PyLink PseudoClient %r exists.' % numeric) + _sendFromUser(irc, numeric, 'NICK %s' % newnick) + def connect(irc): irc.start_ts = ts = int(time.time()) host = irc.serverdata["hostname"]