2015-03-20 00:21:49 +01:00
|
|
|
import time
|
2015-04-18 07:11:49 +02:00
|
|
|
import sys
|
2015-06-17 05:05:41 +02:00
|
|
|
import os
|
2015-07-05 22:22:17 +02:00
|
|
|
import traceback
|
|
|
|
import re
|
|
|
|
|
2015-06-17 05:05:41 +02:00
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
2015-06-21 05:36:35 +02:00
|
|
|
import utils
|
2015-05-31 07:15:19 +02:00
|
|
|
from copy import copy
|
2015-07-05 22:22:17 +02:00
|
|
|
from log import log
|
|
|
|
|
2015-06-07 07:17:45 +02:00
|
|
|
from classes import *
|
2015-04-04 03:45:18 +02:00
|
|
|
|
2015-07-05 04:00:29 +02:00
|
|
|
# Raw commands sent from servers vary from protocol to protocol. Here, we map
|
|
|
|
# non-standard names to our hook handlers, so plugins get the information they need.
|
|
|
|
hook_map = {'FJOIN': 'JOIN', 'SAVE': 'NICK',
|
2015-07-05 09:20:45 +02:00
|
|
|
'RSQUIT': 'SQUIT', 'FMODE': 'MODE'}
|
2015-06-19 19:43:42 +02:00
|
|
|
|
2015-06-22 00:00:33 +02:00
|
|
|
def _sendFromServer(irc, sid, msg):
|
|
|
|
irc.send(':%s %s' % (sid, msg))
|
2015-04-18 07:11:49 +02:00
|
|
|
|
2015-06-08 04:31:56 +02:00
|
|
|
def _sendFromUser(irc, numeric, msg):
|
|
|
|
irc.send(':%s %s' % (numeric, msg))
|
2015-04-18 07:11:49 +02:00
|
|
|
|
2015-06-22 00:00:33 +02:00
|
|
|
def spawnClient(irc, nick, ident, host, modes=[], server=None, *args):
|
|
|
|
server = server or irc.sid
|
2015-06-24 04:29:53 +02:00
|
|
|
if not utils.isInternalServer(irc, server):
|
2015-06-22 00:00:33 +02:00
|
|
|
raise ValueError('Server %r is not a PyLink internal PseudoServer!' % server)
|
|
|
|
# We need a separate UID generator instance for every PseudoServer
|
|
|
|
# we spawn. Otherwise, things won't wrap around properly.
|
2015-07-04 08:30:38 +02:00
|
|
|
if server not in irc.uidgen:
|
|
|
|
irc.uidgen[server] = utils.TS6UIDGenerator(server)
|
|
|
|
uid = irc.uidgen[server].next_uid()
|
2015-06-07 07:17:45 +02:00
|
|
|
ts = int(time.time())
|
2015-06-21 05:54:01 +02:00
|
|
|
if modes:
|
|
|
|
modes = utils.joinModes(modes)
|
|
|
|
else:
|
|
|
|
modes = '+'
|
2015-06-21 05:36:35 +02:00
|
|
|
if not utils.isNick(nick):
|
2015-06-17 05:46:01 +02:00
|
|
|
raise ValueError('Invalid nickname %r.' % nick)
|
2015-06-22 00:00:33 +02:00
|
|
|
_sendFromServer(irc, server, "UID {uid} {ts} {nick} {host} {host} {ident} 0.0.0.0 "
|
2015-06-21 05:54:01 +02:00
|
|
|
"{ts} {modes} + :PyLink Client".format(ts=ts, host=host,
|
|
|
|
nick=nick, ident=ident, uid=uid,
|
|
|
|
modes=modes))
|
2015-06-07 07:17:45 +02:00
|
|
|
u = irc.users[uid] = IrcUser(nick, ts, uid, ident, host, *args)
|
2015-06-22 00:00:33 +02:00
|
|
|
irc.servers[server].users.append(uid)
|
2015-06-07 07:17:45 +02:00
|
|
|
return u
|
|
|
|
|
|
|
|
def joinClient(irc, client, channel):
|
2015-07-04 08:30:38 +02:00
|
|
|
channel = channel.lower()
|
2015-06-24 04:29:53 +02:00
|
|
|
server = utils.isInternalClient(irc, client)
|
2015-06-22 00:00:33 +02:00
|
|
|
if not server:
|
2015-06-08 04:31:56 +02:00
|
|
|
raise LookupError('No such PyLink PseudoClient exists.')
|
2015-06-21 05:36:35 +02:00
|
|
|
if not utils.isChannel(channel):
|
2015-06-17 05:46:01 +02:00
|
|
|
raise ValueError('Invalid channel name %r.' % channel)
|
2015-06-22 00:00:33 +02:00
|
|
|
# One channel per line here!
|
|
|
|
_sendFromServer(irc, server, "FJOIN {channel} {ts} + :,{uid}".format(
|
2015-06-08 04:31:56 +02:00
|
|
|
ts=int(time.time()), uid=client, channel=channel))
|
2015-06-24 04:29:53 +02:00
|
|
|
irc.channels[channel].users.add(client)
|
2015-06-08 04:31:56 +02:00
|
|
|
|
|
|
|
def partClient(irc, client, channel, reason=None):
|
2015-07-04 08:30:38 +02:00
|
|
|
channel = channel.lower()
|
2015-06-24 04:29:53 +02:00
|
|
|
if not utils.isInternalClient(irc, client):
|
2015-06-08 04:31:56 +02:00
|
|
|
raise LookupError('No such PyLink PseudoClient exists.')
|
|
|
|
msg = "PART %s" % channel
|
2015-06-21 05:36:35 +02:00
|
|
|
if not utils.isChannel(channel):
|
2015-06-17 05:46:01 +02:00
|
|
|
raise ValueError('Invalid channel name %r.' % channel)
|
2015-06-08 04:31:56 +02:00
|
|
|
if reason:
|
|
|
|
msg += " :%s" % reason
|
|
|
|
_sendFromUser(irc, client, msg)
|
2015-07-04 08:30:38 +02:00
|
|
|
handle_part(irc, client, 'PART', [channel])
|
2015-05-31 08:31:22 +02:00
|
|
|
|
2015-06-07 08:04:11 +02:00
|
|
|
def removeClient(irc, numeric):
|
|
|
|
"""<irc object> <client numeric>
|
2015-06-08 03:08:25 +02:00
|
|
|
|
2015-06-07 08:04:11 +02:00
|
|
|
Removes a client from our internal databases, regardless
|
|
|
|
of whether it's one of our pseudoclients or not."""
|
2015-07-05 21:48:39 +02:00
|
|
|
for v in irc.channels.values():
|
2015-07-05 22:07:18 +02:00
|
|
|
v.removeuser(numeric)
|
2015-06-07 08:04:11 +02:00
|
|
|
sid = numeric[:3]
|
2015-07-05 22:29:01 +02:00
|
|
|
log.debug('Removing client %s from irc.users', numeric)
|
2015-06-07 08:04:11 +02:00
|
|
|
del irc.users[numeric]
|
2015-07-05 22:29:01 +02:00
|
|
|
log.debug('Removing client %s from irc.servers[%s]', numeric, sid)
|
2015-06-07 08:04:11 +02:00
|
|
|
irc.servers[sid].users.remove(numeric)
|
|
|
|
|
2015-06-08 04:31:56 +02:00
|
|
|
def quitClient(irc, numeric, reason):
|
2015-06-08 03:15:36 +02:00
|
|
|
"""<irc object> <client numeric>
|
|
|
|
|
|
|
|
Quits a PyLink PseudoClient."""
|
2015-06-24 04:29:53 +02:00
|
|
|
if utils.isInternalClient(irc, numeric):
|
2015-06-08 04:31:56 +02:00
|
|
|
_sendFromUser(irc, numeric, "QUIT :%s" % reason)
|
|
|
|
removeClient(irc, numeric)
|
2015-06-08 03:15:36 +02:00
|
|
|
else:
|
2015-06-08 04:31:56 +02:00
|
|
|
raise LookupError("No such PyLink PseudoClient exists. If you're trying to remove "
|
2015-06-08 03:15:36 +02:00
|
|
|
"a user that's not a PyLink PseudoClient from "
|
|
|
|
"the internal state, use removeClient() instead.")
|
|
|
|
|
2015-06-08 04:31:56 +02:00
|
|
|
def kickClient(irc, numeric, channel, target, reason=None):
|
2015-06-08 03:15:36 +02:00
|
|
|
"""<irc object> <kicker client numeric>
|
|
|
|
|
|
|
|
Sends a kick from a PyLink PseudoClient."""
|
2015-07-04 08:30:38 +02:00
|
|
|
channel = channel.lower()
|
2015-06-24 04:29:53 +02:00
|
|
|
if not utils.isInternalClient(irc, numeric):
|
2015-06-08 04:31:56 +02:00
|
|
|
raise LookupError('No such PyLink PseudoClient exists.')
|
|
|
|
if not reason:
|
|
|
|
reason = 'No reason given'
|
2015-06-08 03:15:36 +02:00
|
|
|
_sendFromUser(irc, numeric, 'KICK %s %s :%s' % (channel, target, reason))
|
2015-07-04 08:48:28 +02:00
|
|
|
# We can pretend the target left by its own will; all we really care about
|
|
|
|
# is that the target gets removed from the channel userlist, and calling
|
|
|
|
# handle_part() does that just fine.
|
|
|
|
handle_part(irc, target, 'KICK', [channel])
|
2015-06-08 03:15:36 +02:00
|
|
|
|
2015-06-08 04:31:56 +02:00
|
|
|
def nickClient(irc, numeric, newnick):
|
2015-06-08 03:15:36 +02:00
|
|
|
"""<irc object> <client numeric> <new nickname>
|
|
|
|
|
|
|
|
Changes the nick of a PyLink PseudoClient."""
|
2015-06-24 04:29:53 +02:00
|
|
|
if not utils.isInternalClient(irc, numeric):
|
2015-06-08 04:31:56 +02:00
|
|
|
raise LookupError('No such PyLink PseudoClient exists.')
|
2015-06-21 05:36:35 +02:00
|
|
|
if not utils.isNick(newnick):
|
2015-06-17 05:46:01 +02:00
|
|
|
raise ValueError('Invalid nickname %r.' % nick)
|
2015-06-08 04:31:56 +02:00
|
|
|
_sendFromUser(irc, numeric, 'NICK %s %s' % (newnick, int(time.time())))
|
|
|
|
irc.users[numeric].nick = newnick
|
2015-06-08 03:15:36 +02:00
|
|
|
|
2015-04-04 03:45:18 +02:00
|
|
|
def connect(irc):
|
2015-06-03 01:39:13 +02:00
|
|
|
irc.start_ts = ts = int(time.time())
|
2015-07-04 08:30:38 +02:00
|
|
|
irc.uidgen = {}
|
2015-04-18 07:11:49 +02:00
|
|
|
host = irc.serverdata["hostname"]
|
2015-06-22 00:00:33 +02:00
|
|
|
irc.servers[irc.sid] = IrcServer(None, host, internal=True)
|
2015-04-25 07:37:07 +02:00
|
|
|
|
2015-04-03 09:17:03 +02:00
|
|
|
f = irc.send
|
2015-07-05 08:12:00 +02:00
|
|
|
f('CAPAB START 1202')
|
|
|
|
f('CAPAB CAPABILITIES :PROTOCOL=1202')
|
2015-04-03 09:17:03 +02:00
|
|
|
f('CAPAB END')
|
2015-04-18 07:11:49 +02:00
|
|
|
f('SERVER {host} {Pass} 0 {sid} :PyLink Service'.format(host=host,
|
|
|
|
Pass=irc.serverdata["sendpass"], sid=irc.sid))
|
2015-04-04 03:45:18 +02:00
|
|
|
f(':%s BURST %s' % (irc.sid, ts))
|
2015-07-05 08:49:28 +02:00
|
|
|
irc.pseudoclient = spawnClient(irc, 'PyLink', 'pylink', host, modes=set([("+o", None)]))
|
2015-04-03 09:17:03 +02:00
|
|
|
f(':%s ENDBURST' % (irc.sid))
|
2015-06-08 04:31:56 +02:00
|
|
|
for chan in irc.serverdata['channels']:
|
|
|
|
joinClient(irc, irc.pseudoclient.uid, chan)
|
2015-03-20 00:21:49 +01:00
|
|
|
|
2015-06-22 00:01:45 +02:00
|
|
|
def handle_ping(irc, source, command, args):
|
|
|
|
# <- :70M PING 70M 0AL
|
|
|
|
# -> :0AL PONG 0AL 70M
|
2015-06-24 04:29:53 +02:00
|
|
|
if utils.isInternalServer(irc, args[1]):
|
2015-06-22 00:01:45 +02:00
|
|
|
_sendFromServer(irc, args[1], 'PONG %s %s' % (args[1], source))
|
2015-04-03 21:35:55 +02:00
|
|
|
|
2015-04-25 07:37:07 +02:00
|
|
|
def handle_privmsg(irc, source, command, args):
|
|
|
|
prefix = irc.conf['bot']['prefix']
|
|
|
|
if args[0] == irc.pseudoclient.uid:
|
2015-04-25 08:00:01 +02:00
|
|
|
cmd_args = args[1].split(' ')
|
2015-05-31 21:20:09 +02:00
|
|
|
cmd = cmd_args[0].lower()
|
2015-04-25 07:37:07 +02:00
|
|
|
try:
|
2015-04-25 08:00:01 +02:00
|
|
|
cmd_args = cmd_args[1:]
|
2015-04-25 07:37:07 +02:00
|
|
|
except IndexError:
|
|
|
|
cmd_args = []
|
|
|
|
try:
|
2015-06-21 05:36:35 +02:00
|
|
|
func = utils.bot_commands[cmd]
|
2015-04-25 07:37:07 +02:00
|
|
|
except KeyError:
|
2015-06-21 05:36:35 +02:00
|
|
|
utils.msg(irc, source, 'Unknown command %r.' % cmd)
|
2015-05-31 21:20:09 +02:00
|
|
|
return
|
|
|
|
try:
|
|
|
|
func(irc, source, cmd_args)
|
|
|
|
except Exception as e:
|
|
|
|
traceback.print_exc()
|
2015-06-21 05:36:35 +02:00
|
|
|
utils.msg(irc, source, 'Uncaught exception in command %r: %s: %s' % (cmd, type(e).__name__, str(e)))
|
2015-05-31 21:20:09 +02:00
|
|
|
return
|
2015-07-05 04:00:29 +02:00
|
|
|
return {'target': args[0], 'text': args[1]}
|
2015-04-03 21:35:55 +02:00
|
|
|
|
2015-06-08 03:08:25 +02:00
|
|
|
def handle_kill(irc, source, command, args):
|
|
|
|
killed = args[0]
|
|
|
|
removeClient(irc, killed)
|
|
|
|
if killed == irc.pseudoclient.uid:
|
|
|
|
irc.pseudoclient = spawnClient(irc, 'PyLink', 'pylink', irc.serverdata["hostname"])
|
2015-06-08 04:31:56 +02:00
|
|
|
for chan in irc.serverdata['channels']:
|
|
|
|
joinClient(irc, irc.pseudoclient.uid, chan)
|
2015-07-05 04:00:29 +02:00
|
|
|
return {'target': killed, 'reason': args[1]}
|
2015-06-08 03:08:25 +02:00
|
|
|
|
2015-06-07 19:06:54 +02:00
|
|
|
def handle_kick(irc, source, command, args):
|
|
|
|
# :70MAAAAAA KICK #endlessvoid 70MAAAAAA :some reason
|
2015-07-05 04:00:29 +02:00
|
|
|
channel = args[0].lower()
|
2015-06-07 19:06:54 +02:00
|
|
|
kicked = args[1]
|
2015-07-04 21:34:33 +02:00
|
|
|
handle_part(irc, kicked, 'KICK', [channel, args[2]])
|
2015-06-08 03:08:25 +02:00
|
|
|
if kicked == irc.pseudoclient.uid:
|
2015-06-08 04:31:56 +02:00
|
|
|
joinClient(irc, irc.pseudoclient.uid, channel)
|
2015-07-05 04:00:29 +02:00
|
|
|
return {'channel': channel, 'target': kicked, 'reason': args[2]}
|
2015-06-07 19:06:54 +02:00
|
|
|
|
2015-06-07 18:43:13 +02:00
|
|
|
def handle_part(irc, source, command, args):
|
2015-07-04 08:30:38 +02:00
|
|
|
channel = args[0].lower()
|
2015-06-07 18:43:13 +02:00
|
|
|
# We should only get PART commands for channels that exist, right??
|
2015-07-05 21:48:39 +02:00
|
|
|
irc.channels[channel].removeuser(source)
|
2015-07-05 04:08:58 +02:00
|
|
|
try:
|
|
|
|
reason = args[1]
|
|
|
|
except IndexError:
|
|
|
|
reason = ''
|
|
|
|
return {'channel': channel, 'reason': reason}
|
2015-06-07 18:43:13 +02:00
|
|
|
|
2015-04-03 21:35:55 +02:00
|
|
|
def handle_error(irc, numeric, command, args):
|
2015-04-18 07:11:49 +02:00
|
|
|
irc.connected = False
|
2015-07-04 03:07:01 +02:00
|
|
|
raise ProtocolError('Received an ERROR, killing!')
|
2015-04-18 07:11:49 +02:00
|
|
|
|
|
|
|
def handle_fjoin(irc, servernumeric, command, args):
|
|
|
|
# :70M FJOIN #chat 1423790411 +AFPfjnt 6:5 7:5 9:5 :o,1SRAABIT4 v,1IOAAF53R <...>
|
2015-07-04 08:30:38 +02:00
|
|
|
channel = args[0].lower()
|
2015-06-07 08:04:11 +02:00
|
|
|
# InspIRCd sends each user's channel data in the form of 'modeprefix(es),UID'
|
|
|
|
userlist = args[-1].split()
|
2015-07-05 09:20:45 +02:00
|
|
|
ts = args[1]
|
|
|
|
modestring = args[2:-1] or args[2]
|
2015-07-05 21:48:39 +02:00
|
|
|
utils.applyModes(irc, channel, utils.parseModes(irc, channel, modestring))
|
2015-07-05 04:00:29 +02:00
|
|
|
namelist = []
|
2015-06-07 08:04:11 +02:00
|
|
|
for user in userlist:
|
|
|
|
modeprefix, user = user.split(',', 1)
|
2015-07-05 04:00:29 +02:00
|
|
|
namelist.append(user)
|
2015-07-05 21:48:39 +02:00
|
|
|
utils.applyModes(irc, channel, [('+%s' % mode, user) for mode in modeprefix])
|
2015-06-07 18:43:13 +02:00
|
|
|
irc.channels[channel].users.add(user)
|
2015-07-05 04:00:29 +02:00
|
|
|
return {'channel': channel, 'users': namelist}
|
2015-04-18 07:11:49 +02:00
|
|
|
|
|
|
|
def handle_uid(irc, numeric, command, args):
|
2015-04-25 07:37:07 +02:00
|
|
|
# :70M UID 70MAAAAAB 1429934638 GL 0::1 hidden-7j810p.9mdf.lrek.0000.0000.IP gl 0::1 1429934638 +Wioswx +ACGKNOQXacfgklnoqvx :realname
|
2015-04-18 07:11:49 +02:00
|
|
|
uid, ts, nick, realhost, host, ident, ip = args[0:7]
|
|
|
|
realname = args[-1]
|
2015-06-21 05:54:01 +02:00
|
|
|
irc.users[uid] = IrcUser(nick, ts, uid, ident, host, realname, realhost, ip)
|
2015-07-05 21:48:39 +02:00
|
|
|
parsedmodes = utils.parseModes(irc, uid, [args[8], args[9]])
|
2015-07-05 22:29:01 +02:00
|
|
|
log.debug('Applying modes %s for %s', parsedmodes, uid)
|
2015-07-05 21:48:39 +02:00
|
|
|
utils.applyModes(irc, uid, parsedmodes)
|
2015-05-31 07:15:19 +02:00
|
|
|
irc.servers[numeric].users.append(uid)
|
2015-07-05 04:00:29 +02:00
|
|
|
return {'uid': uid, 'ts': ts, 'nick': nick, 'realhost': realhost, 'host': host, 'ident': ident, 'ip': ip}
|
2015-04-18 07:11:49 +02:00
|
|
|
|
|
|
|
def handle_quit(irc, numeric, command, args):
|
2015-06-22 00:00:33 +02:00
|
|
|
# <- :1SRAAGB4T QUIT :Quit: quit message goes here
|
2015-06-07 08:04:11 +02:00
|
|
|
removeClient(irc, numeric)
|
2015-07-05 04:00:29 +02:00
|
|
|
return {'reason': args[0]}
|
2015-03-20 00:21:49 +01:00
|
|
|
|
2015-05-31 07:15:19 +02:00
|
|
|
def handle_burst(irc, numeric, command, args):
|
2015-06-22 00:00:33 +02:00
|
|
|
# BURST is sent by our uplink when we link.
|
|
|
|
# <- :70M BURST 1433044587
|
|
|
|
|
|
|
|
# This is handled in handle_events, since our uplink
|
|
|
|
# only sends its name in the initial authentication phase,
|
|
|
|
# not in any following BURST commands.
|
|
|
|
pass
|
2015-05-31 07:15:19 +02:00
|
|
|
|
|
|
|
def handle_server(irc, numeric, command, args):
|
2015-06-22 00:00:33 +02:00
|
|
|
# SERVER is sent by our uplink or any other server to introduce others.
|
|
|
|
# <- :00A SERVER test.server * 1 00C :testing raw message syntax
|
|
|
|
# <- :70M SERVER millennium.overdrive.pw * 1 1ML :a relatively long period of time... (Fremont, California)
|
2015-07-04 20:57:21 +02:00
|
|
|
servername = args[0].lower()
|
2015-05-31 07:15:19 +02:00
|
|
|
sid = args[3]
|
2015-06-22 00:00:33 +02:00
|
|
|
irc.servers[sid] = IrcServer(numeric, servername)
|
2015-05-31 07:15:19 +02:00
|
|
|
|
|
|
|
def handle_nick(irc, numeric, command, args):
|
2015-06-19 22:15:49 +02:00
|
|
|
# <- :70MAAAAAA NICK GL-devel 1434744242
|
2015-07-05 04:00:29 +02:00
|
|
|
n = irc.users[numeric].nick = args[0]
|
|
|
|
return {'target': n, 'ts': args[1]}
|
2015-05-31 07:15:19 +02:00
|
|
|
|
2015-06-08 04:31:56 +02:00
|
|
|
def handle_save(irc, numeric, command, args):
|
|
|
|
# This is used to handle nick collisions. Here, the client Derp_ already exists,
|
|
|
|
# so trying to change nick to it will cause a nick collision. On InspIRCd,
|
|
|
|
# this will simply set the collided user's nick to its UID.
|
|
|
|
|
|
|
|
# <- :70MAAAAAA PRIVMSG 0AL000001 :nickclient PyLink Derp_
|
|
|
|
# -> :0AL000001 NICK Derp_ 1433728673
|
|
|
|
# <- :70M SAVE 0AL000001 1433728673
|
|
|
|
user = args[0]
|
|
|
|
irc.users[user].nick = user
|
2015-07-05 04:00:29 +02:00
|
|
|
return {'target': user, 'ts': args[1]}
|
2015-06-08 04:31:56 +02:00
|
|
|
|
2015-06-07 08:04:11 +02:00
|
|
|
def handle_fmode(irc, numeric, command, args):
|
|
|
|
# <- :70MAAAAAA FMODE #chat 1433653462 +hhT 70MAAAAAA 70MAAAAAD
|
2015-07-05 09:20:45 +02:00
|
|
|
channel = args[0].lower()
|
|
|
|
modes = args[2:]
|
2015-07-05 21:48:39 +02:00
|
|
|
changedmodes = utils.parseModes(irc, channel, modes)
|
|
|
|
utils.applyModes(irc, channel, changedmodes)
|
2015-07-05 09:20:45 +02:00
|
|
|
return {'target': channel, 'modes': changedmodes}
|
2015-06-07 08:04:11 +02:00
|
|
|
|
2015-06-21 05:36:35 +02:00
|
|
|
def handle_mode(irc, numeric, command, args):
|
|
|
|
# In InspIRCd, MODE is used for setting user modes and
|
|
|
|
# FMODE is used for channel modes:
|
|
|
|
# <- :70MAAAAAA MODE 70MAAAAAA -i+xc
|
|
|
|
target = args[0]
|
|
|
|
modestrings = args[1:]
|
2015-07-05 21:48:39 +02:00
|
|
|
changedmodes = utils.parseModes(irc, numeric, modestrings)
|
|
|
|
utils.applyModes(irc, numeric, changedmodes)
|
2015-07-05 08:47:27 +02:00
|
|
|
return {'target': target, 'modes': changedmodes}
|
2015-06-21 05:36:35 +02:00
|
|
|
|
2015-05-31 07:15:19 +02:00
|
|
|
def handle_squit(irc, numeric, command, args):
|
|
|
|
# :70M SQUIT 1ML :Server quit by GL!gl@0::1
|
|
|
|
split_server = args[0]
|
2015-07-05 22:29:01 +02:00
|
|
|
log.info('(%s) Netsplit on server %s', irc.name, split_server)
|
2015-05-31 07:15:19 +02:00
|
|
|
# Prevent RuntimeError: dictionary changed size during iteration
|
|
|
|
old_servers = copy(irc.servers)
|
|
|
|
for sid, data in old_servers.items():
|
|
|
|
if data.uplink == split_server:
|
2015-07-05 22:29:01 +02:00
|
|
|
log.debug('Server %s also hosts server %s, removing those users too...', split_server, sid)
|
2015-05-31 07:15:19 +02:00
|
|
|
handle_squit(irc, sid, 'SQUIT', [sid, "PyLink: Automatically splitting leaf servers of %s" % sid])
|
2015-06-07 18:33:35 +02:00
|
|
|
for user in copy(irc.servers[split_server].users):
|
2015-07-05 22:29:01 +02:00
|
|
|
log.debug('Removing client %s (%s)', user, irc.users[user].nick)
|
2015-06-07 08:04:11 +02:00
|
|
|
removeClient(irc, user)
|
2015-05-31 07:15:19 +02:00
|
|
|
del irc.servers[split_server]
|
2015-07-05 04:00:29 +02:00
|
|
|
return {'target': split_server}
|
2015-05-31 07:15:19 +02:00
|
|
|
|
2015-06-22 02:07:31 +02:00
|
|
|
def handle_rsquit(irc, numeric, command, args):
|
|
|
|
# <- :1MLAAAAIG RSQUIT :ayy.lmao
|
|
|
|
# <- :1MLAAAAIG RSQUIT ayy.lmao :some reason
|
2015-07-04 20:57:21 +02:00
|
|
|
# RSQUIT is sent by opers to squit remote servers.
|
|
|
|
# Strangely, it takes a server name instead of a SID, and is
|
|
|
|
# allowed to be ignored entirely.
|
|
|
|
# If we receive a remote SQUIT, split the target server
|
|
|
|
# ONLY if the sender is identified with us.
|
2015-06-22 02:07:31 +02:00
|
|
|
target = args[0]
|
|
|
|
for (sid, server) in irc.servers.items():
|
|
|
|
if server.name == target:
|
|
|
|
target = sid
|
2015-06-24 04:29:53 +02:00
|
|
|
if utils.isInternalServer(irc, target):
|
2015-06-22 02:07:31 +02:00
|
|
|
if irc.users[numeric].identified:
|
|
|
|
uplink = irc.servers[target].uplink
|
|
|
|
reason = 'Requested by %s' % irc.users[numeric].nick
|
|
|
|
_sendFromServer(irc, uplink, 'SQUIT %s :%s' % (target, reason))
|
2015-07-05 04:00:29 +02:00
|
|
|
return handle_squit(irc, numeric, 'SQUIT', [target, reason])
|
2015-06-22 02:07:31 +02:00
|
|
|
else:
|
|
|
|
utils.msg(irc, numeric, 'Error: you are not authorized to split servers!', notice=True)
|
|
|
|
|
2015-06-03 01:39:13 +02:00
|
|
|
def handle_idle(irc, numeric, command, args):
|
|
|
|
"""Handle the IDLE command, sent between servers in remote WHOIS queries."""
|
|
|
|
# <- :70MAAAAAA IDLE 1MLAAAAIG
|
|
|
|
# -> :1MLAAAAIG IDLE 70MAAAAAA 1433036797 319
|
|
|
|
sourceuser = numeric
|
|
|
|
targetuser = args[0]
|
2015-06-19 22:15:49 +02:00
|
|
|
_sendFromUser(irc, targetuser, 'IDLE %s %s 0' % (sourceuser, irc.users[targetuser].ts))
|
2015-06-03 01:39:13 +02:00
|
|
|
|
2015-04-03 09:17:03 +02:00
|
|
|
def handle_events(irc, data):
|
2015-04-18 07:11:49 +02:00
|
|
|
# Each server message looks something like this:
|
|
|
|
# :70M FJOIN #chat 1423790411 +AFPfjnt 6:5 7:5 9:5 :v,1SRAAESWE
|
|
|
|
# :<sid> <command> <argument1> <argument2> ... :final multi word argument
|
2015-06-03 01:55:04 +02:00
|
|
|
args = data.split()
|
2015-07-05 08:12:00 +02:00
|
|
|
if not args:
|
|
|
|
# No data??
|
|
|
|
return
|
|
|
|
if args[0] == 'SERVER':
|
2015-06-03 01:55:04 +02:00
|
|
|
# SERVER whatever.net abcdefgh 0 10X :something
|
2015-07-04 20:57:21 +02:00
|
|
|
servername = args[1].lower()
|
2015-06-22 00:00:33 +02:00
|
|
|
numeric = args[4]
|
2015-06-03 01:55:04 +02:00
|
|
|
if args[2] != irc.serverdata['recvpass']:
|
|
|
|
# Check if recvpass is correct
|
2015-07-04 03:07:01 +02:00
|
|
|
raise ProtocolError('Error: recvpass from uplink server %s does not match configuration!' % servername)
|
2015-06-22 00:00:33 +02:00
|
|
|
irc.servers[numeric] = IrcServer(None, servername)
|
2015-06-03 01:55:04 +02:00
|
|
|
return
|
2015-07-05 08:12:00 +02:00
|
|
|
elif args[0] == 'CAPAB':
|
|
|
|
# Capability negotiation with our uplink
|
|
|
|
if args[1] == 'CHANMODES':
|
|
|
|
# CAPAB CHANMODES :admin=&a allowinvite=A autoop=w ban=b banexception=e blockcolor=c c_registered=r exemptchanops=X filter=g flood=f halfop=%h history=H invex=I inviteonly=i joinflood=j key=k kicknorejoin=J limit=l moderated=m nickflood=F noctcp=C noextmsg=n nokick=Q noknock=K nonick=N nonotice=T official-join=!Y op=@o operonly=O opmoderated=U owner=~q permanent=P private=p redirect=L reginvite=R regmoderated=M secret=s sslonly=z stripcolor=S topiclock=t voice=+v
|
|
|
|
|
|
|
|
# Named modes are essential for a cross-protocol IRC service. We
|
|
|
|
# can use InspIRCd as a model here and assign their mode map to our cmodes list.
|
|
|
|
for modepair in args[2:]:
|
|
|
|
name, char = modepair.split('=')
|
|
|
|
# We don't really care about mode prefixes; just the mode char
|
|
|
|
irc.cmodes[name.lstrip(':')] = char[-1]
|
|
|
|
elif args[1] == 'USERMODES':
|
|
|
|
# Ditto above.
|
|
|
|
for modepair in args[2:]:
|
|
|
|
name, char = modepair.split('=')
|
|
|
|
irc.umodes[name.lstrip(':')] = char
|
|
|
|
elif args[1] == 'CAPABILITIES':
|
|
|
|
caps = dict([x.lstrip(':').split('=') for x in args[2:]])
|
|
|
|
irc.maxnicklen = caps['NICKMAX']
|
|
|
|
irc.maxchanlen = caps['CHANMAX']
|
|
|
|
# Modes are divided into A, B, C, and D classes
|
|
|
|
# See http://www.irc.org/tech_docs/005.html
|
|
|
|
# FIXME: Find a better way to assign/store this.
|
|
|
|
irc.cmodes['*A'], irc.cmodes['*B'], irc.cmodes['*C'], irc.cmodes['*D'] \
|
|
|
|
= caps['CHANMODES'].split(',')
|
|
|
|
irc.umodes['*A'], irc.umodes['*B'], irc.umodes['*C'], irc.umodes['*D'] \
|
|
|
|
= caps['USERMODES'].split(',')
|
2015-07-05 08:49:28 +02:00
|
|
|
irc.prefixmodes = re.search(r'\((.*?)\)', caps['PREFIX']).group(1)
|
2015-04-03 21:35:55 +02:00
|
|
|
try:
|
|
|
|
real_args = []
|
|
|
|
for arg in args:
|
|
|
|
real_args.append(arg)
|
2015-04-18 07:11:49 +02:00
|
|
|
# If the argument starts with ':' and ISN'T the first argument.
|
|
|
|
# The first argument is used for denoting the source UID/SID.
|
2015-04-03 21:35:55 +02:00
|
|
|
if arg.startswith(':') and args.index(arg) != 0:
|
2015-04-18 07:11:49 +02:00
|
|
|
# : is used for multi-word arguments that last until the end
|
|
|
|
# of the message. We can use list splicing here to turn them all
|
|
|
|
# into one argument.
|
2015-05-31 07:15:19 +02:00
|
|
|
index = args.index(arg) # Get the array index of the multi-word arg
|
|
|
|
# Set the last arg to a joined version of the remaining args
|
|
|
|
arg = args[index:]
|
|
|
|
arg = ' '.join(arg)[1:]
|
|
|
|
# Cut the original argument list right before the multi-word arg,
|
|
|
|
# and then append the multi-word arg.
|
2015-04-03 21:35:55 +02:00
|
|
|
real_args = args[:index]
|
|
|
|
real_args.append(arg)
|
|
|
|
break
|
|
|
|
real_args[0] = real_args[0].split(':', 1)[1]
|
|
|
|
args = real_args
|
|
|
|
|
|
|
|
numeric = args[0]
|
|
|
|
command = args[1]
|
2015-04-25 07:37:07 +02:00
|
|
|
args = args[2:]
|
2015-04-03 21:35:55 +02:00
|
|
|
except IndexError:
|
|
|
|
return
|
|
|
|
|
2015-06-24 04:08:43 +02:00
|
|
|
# We will do wildcard event handling here. Unhandled events are just ignored.
|
2015-04-03 21:35:55 +02:00
|
|
|
try:
|
2015-07-05 04:00:29 +02:00
|
|
|
func = globals()['handle_'+command.lower()]
|
2015-04-03 21:35:55 +02:00
|
|
|
except KeyError: # unhandled event
|
|
|
|
pass
|
2015-07-05 21:38:55 +02:00
|
|
|
else:
|
|
|
|
parsed_args = func(irc, numeric, command, args)
|
2015-07-05 04:00:29 +02:00
|
|
|
# Only call our hooks if there's data to process. Handlers that support
|
|
|
|
# hooks will return a dict of parsed arguments, which can be passed on
|
|
|
|
# to plugins and the like. For example, the JOIN handler will return
|
|
|
|
# something like: {'channel': '#whatever', 'users': ['UID1', 'UID2',
|
|
|
|
# 'UID3']}, etc.
|
|
|
|
if parsed_args:
|
|
|
|
hook_cmd = command
|
|
|
|
if command in hook_map:
|
|
|
|
hook_cmd = hook_map[command]
|
|
|
|
print('Parsed args %r received from %s handler (calling hook %s)' % (parsed_args, command, hook_cmd))
|
2015-06-24 04:08:43 +02:00
|
|
|
# Iterate over hooked functions, catching errors accordingly
|
2015-07-05 04:00:29 +02:00
|
|
|
for hook_func in utils.command_hooks[hook_cmd]:
|
2015-06-24 04:08:43 +02:00
|
|
|
try:
|
2015-07-05 04:00:29 +02:00
|
|
|
print('Calling function %s' % hook_func)
|
|
|
|
hook_func(irc, numeric, command, parsed_args)
|
2015-06-24 04:08:43 +02:00
|
|
|
except Exception:
|
2015-07-05 04:00:29 +02:00
|
|
|
# We don't want plugins to crash our servers...
|
2015-06-24 04:08:43 +02:00
|
|
|
traceback.print_exc()
|
|
|
|
continue
|
2015-06-22 00:00:33 +02:00
|
|
|
|
|
|
|
def spawnServer(irc, name, sid, uplink=None, desc='PyLink Server'):
|
|
|
|
# -> :0AL SERVER test.server * 1 0AM :some silly pseudoserver
|
|
|
|
uplink = uplink or irc.sid
|
|
|
|
name = name.lower()
|
2015-07-04 02:10:32 +02:00
|
|
|
assert len(sid) == 3, "Incorrect SID length"
|
2015-06-22 00:00:33 +02:00
|
|
|
if sid in irc.servers:
|
|
|
|
raise ValueError('A server with SID %r already exists!' % sid)
|
|
|
|
for server in irc.servers.values():
|
|
|
|
if name == server.name:
|
|
|
|
raise ValueError('A server named %r already exists!' % name)
|
2015-06-24 04:29:53 +02:00
|
|
|
if not utils.isInternalServer(irc, uplink):
|
2015-06-22 00:00:33 +02:00
|
|
|
raise ValueError('Server %r is not a PyLink internal PseudoServer!' % uplink)
|
|
|
|
if not utils.isServerName(name):
|
|
|
|
raise ValueError('Invalid server name %r' % name)
|
|
|
|
_sendFromServer(irc, uplink, 'SERVER %s * 1 %s :%s' % (name, sid, desc))
|
2015-07-04 02:10:32 +02:00
|
|
|
_sendFromServer(irc, sid, 'ENDBURST')
|
2015-06-22 00:00:33 +02:00
|
|
|
irc.servers[sid] = IrcServer(uplink, name, internal=True)
|