]> jfr.im git - erebus.git/blame_incremental - modules/eval.py
urls - massive rework
[erebus.git] / modules / eval.py
... / ...
CommitLineData
1# Erebus IRC bot - Author: Erebus Team
2# vim: fileencoding=utf-8
3# !EVAL and !EXEC commands
4# This file is released into the public domain; see http://unlicense.org/
5
6# module info
7modinfo = {
8 'author': 'Erebus Team',
9 'license': 'public domain',
10 'compatible': [0],
11 'depends': [],
12 'softdeps': ['help'],
13}
14
15# preamble
16import modlib
17lib = modlib.modlib(__name__)
18modstart = lib.modstart
19modstop = lib.modstop
20
21# module code
22import sys
23import ctlmod
24
25
26def module(name):
27 return lib.mod(name)
28
29@lib.hook('eval', needchan=False, wantchan=True, glevel=lib.OWNER)
30@lib.help("<python>", "eval")
31@lib.argsGE(1)
32def cmd_eval(bot, user, chan, realtarget, *args):
33 if chan is not None: replyto = chan
34 else: replyto = user
35
36 try: ret = eval(' '.join(args))
37 except Exception: bot.msg(replyto, "Error: %s %s" % (sys.exc_info()[0], sys.exc_info()[1]))
38 else: bot.msg(replyto, "Done: %r" % (ret,))
39
40
41@lib.hook('exec', needchan=False, wantchan=True, glevel=lib.OWNER)
42@lib.help("<python>", "exec")
43@lib.argsGE(1)
44def cmd_exec(bot, user, chan, realtarget, *args):
45 if chan is not None: replyto = chan
46 else: replyto = user
47
48 try: exec(' '.join(args))
49 except Exception: bot.msg(replyto, "Error: %s %s" % (sys.exc_info()[0], sys.exc_info()[1]))
50 else: bot.msg(replyto, "Done.")
51
52@lib.hook('exception', needchan=False, glevel=lib.OWNER)
53@lib.help(None, "cause an exception")
54def cmd_exception(*args, **kwargs):
55 raise Exception()