2015-09-03 08:24:58 +02:00
|
|
|
"""
|
|
|
|
bots.py: Spawn virtual users/bots on a PyLink server and make them interact
|
|
|
|
with things.
|
|
|
|
"""
|
|
|
|
|
2015-07-19 23:59:51 +02:00
|
|
|
import sys
|
|
|
|
import os
|
2015-06-07 22:40:18 +02:00
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
2015-07-19 23:59:51 +02:00
|
|
|
|
2015-06-07 22:40:18 +02:00
|
|
|
import utils
|
2015-07-19 23:59:51 +02:00
|
|
|
from log import log
|
2015-06-07 22:40:18 +02:00
|
|
|
|
|
|
|
@utils.add_cmd
|
|
|
|
def spawnclient(irc, source, args):
|
2015-07-18 07:35:34 +02:00
|
|
|
"""<nick> <ident> <host>
|
|
|
|
|
|
|
|
Admin-only. Spawns the specified PseudoClient on the PyLink server.
|
|
|
|
Note: this doesn't check the validity of any fields you give it!"""
|
2015-08-26 05:38:32 +02:00
|
|
|
utils.checkAuthenticated(irc, source, allowOper=False)
|
2015-06-07 22:40:18 +02:00
|
|
|
try:
|
|
|
|
nick, ident, host = args[:3]
|
|
|
|
except ValueError:
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Not enough arguments. Needs 3: nick, user, host.")
|
2015-06-07 22:40:18 +02:00
|
|
|
return
|
2015-09-18 04:07:16 +02:00
|
|
|
irc.proto.spawnClient(nick, ident, host, manipulatable=True)
|
2015-06-07 22:40:18 +02:00
|
|
|
|
|
|
|
@utils.add_cmd
|
2015-07-11 01:43:03 +02:00
|
|
|
def quit(irc, source, args):
|
2015-07-18 07:35:34 +02:00
|
|
|
"""<target> [<reason>]
|
|
|
|
|
2015-07-22 22:18:11 +02:00
|
|
|
Admin-only. Quits the PyLink client with nick <target>, if one exists."""
|
2015-08-26 05:38:32 +02:00
|
|
|
utils.checkAuthenticated(irc, source, allowOper=False)
|
2015-06-07 22:40:18 +02:00
|
|
|
try:
|
2015-06-08 04:31:56 +02:00
|
|
|
nick = args[0]
|
2015-06-07 22:40:18 +02:00
|
|
|
except IndexError:
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Not enough arguments. Needs 1-2: nick, reason (optional).")
|
2015-06-07 22:40:18 +02:00
|
|
|
return
|
2016-01-01 02:28:47 +01:00
|
|
|
if irc.pseudoclient.uid == irc.nickToUid(nick):
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Cannot quit the main PyLink PseudoClient!")
|
2015-06-07 22:40:18 +02:00
|
|
|
return
|
2016-01-01 02:28:47 +01:00
|
|
|
u = irc.nickToUid(nick)
|
2015-08-26 05:55:39 +02:00
|
|
|
quitmsg = ' '.join(args[1:]) or 'Client Quit'
|
2015-09-18 04:07:16 +02:00
|
|
|
if not utils.isManipulatableClient(irc, u):
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Cannot force quit a protected PyLink services client.")
|
2015-09-18 04:07:16 +02:00
|
|
|
return
|
2015-09-06 03:00:57 +02:00
|
|
|
irc.proto.quitClient(u, quitmsg)
|
2015-09-03 08:24:58 +02:00
|
|
|
irc.callHooks([u, 'PYLINK_BOTSPLUGIN_QUIT', {'text': quitmsg, 'parse_as': 'QUIT'}])
|
2015-06-07 22:40:18 +02:00
|
|
|
|
|
|
|
def joinclient(irc, source, args):
|
2015-07-18 07:35:34 +02:00
|
|
|
"""<target> <channel1>,[<channel2>], etc.
|
|
|
|
|
2015-07-22 22:18:11 +02:00
|
|
|
Admin-only. Joins <target>, the nick of a PyLink client, to a comma-separated list of channels."""
|
2015-08-26 05:38:32 +02:00
|
|
|
utils.checkAuthenticated(irc, source, allowOper=False)
|
2015-06-07 22:40:18 +02:00
|
|
|
try:
|
|
|
|
nick = args[0]
|
|
|
|
clist = args[1].split(',')
|
|
|
|
if not clist:
|
|
|
|
raise IndexError
|
|
|
|
except IndexError:
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Not enough arguments. Needs 2: nick, comma separated list of channels.")
|
2015-06-07 22:40:18 +02:00
|
|
|
return
|
2016-01-01 02:28:47 +01:00
|
|
|
u = irc.nickToUid(nick)
|
2015-09-18 04:07:16 +02:00
|
|
|
if not utils.isManipulatableClient(irc, u):
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Cannot force join a protected PyLink services client.")
|
2015-09-18 04:07:16 +02:00
|
|
|
return
|
2015-06-08 04:31:56 +02:00
|
|
|
for channel in clist:
|
2015-07-09 07:50:19 +02:00
|
|
|
if not utils.isChannel(channel):
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Invalid channel name %r." % channel)
|
2015-06-08 04:31:56 +02:00
|
|
|
return
|
2015-09-06 03:00:57 +02:00
|
|
|
irc.proto.joinClient(u, channel)
|
2015-09-03 08:24:58 +02:00
|
|
|
irc.callHooks([u, 'PYLINK_BOTSPLUGIN_JOIN', {'channel': channel, 'users': [u],
|
2015-08-15 14:12:49 +02:00
|
|
|
'modes': irc.channels[channel].modes,
|
|
|
|
'parse_as': 'JOIN'}])
|
2015-07-09 07:50:19 +02:00
|
|
|
utils.add_cmd(joinclient, name='join')
|
2015-06-08 04:31:56 +02:00
|
|
|
|
|
|
|
@utils.add_cmd
|
2015-07-09 07:50:19 +02:00
|
|
|
def nick(irc, source, args):
|
2015-07-18 07:35:34 +02:00
|
|
|
"""<target> <newnick>
|
|
|
|
|
|
|
|
Admin-only. Changes the nick of <target>, a PyLink client, to <newnick>."""
|
2015-08-26 05:38:32 +02:00
|
|
|
utils.checkAuthenticated(irc, source, allowOper=False)
|
2015-06-08 04:31:56 +02:00
|
|
|
try:
|
|
|
|
nick = args[0]
|
|
|
|
newnick = args[1]
|
|
|
|
except IndexError:
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Not enough arguments. Needs 2: nick, newnick.")
|
2015-06-08 04:31:56 +02:00
|
|
|
return
|
2016-01-01 02:28:47 +01:00
|
|
|
u = irc.nickToUid(nick)
|
2015-07-09 07:50:19 +02:00
|
|
|
if newnick in ('0', u):
|
|
|
|
newnick = u
|
|
|
|
elif not utils.isNick(newnick):
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply('Error: Invalid nickname %r.' % newnick)
|
2015-07-09 07:50:19 +02:00
|
|
|
return
|
2015-09-18 04:07:16 +02:00
|
|
|
elif not utils.isManipulatableClient(irc, u):
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Cannot force nick changes for a protected PyLink services client.")
|
2015-09-18 04:07:16 +02:00
|
|
|
return
|
2015-09-06 03:00:57 +02:00
|
|
|
irc.proto.nickClient(u, newnick)
|
2015-09-03 08:24:58 +02:00
|
|
|
irc.callHooks([u, 'PYLINK_BOTSPLUGIN_NICK', {'newnick': newnick, 'oldnick': nick, 'parse_as': 'NICK'}])
|
2015-06-08 04:31:56 +02:00
|
|
|
|
|
|
|
@utils.add_cmd
|
2015-07-09 07:50:19 +02:00
|
|
|
def part(irc, source, args):
|
2015-07-18 07:35:34 +02:00
|
|
|
"""<target> <channel1>,[<channel2>],... [<reason>]
|
|
|
|
|
2015-07-22 22:18:11 +02:00
|
|
|
Admin-only. Parts <target>, the nick of a PyLink client, from a comma-separated list of channels."""
|
2015-08-26 05:38:32 +02:00
|
|
|
utils.checkAuthenticated(irc, source, allowOper=False)
|
2015-06-08 04:31:56 +02:00
|
|
|
try:
|
|
|
|
nick = args[0]
|
|
|
|
clist = args[1].split(',')
|
|
|
|
reason = ' '.join(args[2:])
|
|
|
|
except IndexError:
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Not enough arguments. Needs 2: nick, comma separated list of channels.")
|
2015-06-07 22:40:18 +02:00
|
|
|
return
|
2016-01-01 02:28:47 +01:00
|
|
|
u = irc.nickToUid(nick)
|
2015-09-18 04:07:16 +02:00
|
|
|
if not utils.isManipulatableClient(irc, u):
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Cannot force part a protected PyLink services client.")
|
2015-09-18 04:07:16 +02:00
|
|
|
return
|
2015-06-07 22:40:18 +02:00
|
|
|
for channel in clist:
|
2015-07-09 07:50:19 +02:00
|
|
|
if not utils.isChannel(channel):
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply("Error: Invalid channel name %r." % channel)
|
2015-06-07 22:40:18 +02:00
|
|
|
return
|
2015-09-06 03:00:57 +02:00
|
|
|
irc.proto.partClient(u, channel, reason)
|
2015-09-03 08:24:58 +02:00
|
|
|
irc.callHooks([u, 'PYLINK_BOTSPLUGIN_PART', {'channels': clist, 'text': reason, 'parse_as': 'PART'}])
|
2015-06-08 04:31:56 +02:00
|
|
|
|
2015-08-15 13:51:32 +02:00
|
|
|
@utils.add_cmd
|
|
|
|
def msg(irc, source, args):
|
|
|
|
"""<source> <target> <text>
|
|
|
|
|
|
|
|
Admin-only. Sends message <text> from <source>, where <source> is the nick of a PyLink client."""
|
2015-08-26 05:38:32 +02:00
|
|
|
utils.checkAuthenticated(irc, source, allowOper=False)
|
2015-08-15 13:51:32 +02:00
|
|
|
try:
|
|
|
|
msgsource, target, text = args[0], args[1], ' '.join(args[2:])
|
|
|
|
except IndexError:
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply('Error: Not enough arguments. Needs 3: source nick, target, text.')
|
2015-08-15 13:51:32 +02:00
|
|
|
return
|
2016-01-01 02:28:47 +01:00
|
|
|
sourceuid = irc.nickToUid(msgsource)
|
2015-08-15 13:51:32 +02:00
|
|
|
if not sourceuid:
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply('Error: Unknown user %r.' % msgsource)
|
2015-08-15 13:51:32 +02:00
|
|
|
return
|
|
|
|
if not utils.isChannel(target):
|
2016-01-01 02:28:47 +01:00
|
|
|
real_target = irc.nickToUid(target)
|
2015-08-15 13:51:32 +02:00
|
|
|
if real_target is None:
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply('Error: Unknown user %r.' % target)
|
2015-08-15 13:51:32 +02:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
real_target = target
|
|
|
|
if not text:
|
2015-10-24 03:29:10 +02:00
|
|
|
irc.reply('Error: No text given.')
|
2015-08-15 13:51:32 +02:00
|
|
|
return
|
2015-09-06 03:00:57 +02:00
|
|
|
irc.proto.messageClient(sourceuid, real_target, text)
|
2015-09-03 08:24:58 +02:00
|
|
|
irc.callHooks([sourceuid, 'PYLINK_BOTSPLUGIN_MSG', {'target': real_target, 'text': text, 'parse_as': 'PRIVMSG'}])
|