]> jfr.im git - erebus.git/blob - modules/control.py
4d5dbccd20b28b79b9eacc76495647acc507f6dc
[erebus.git] / modules / control.py
1 # Erebus IRC bot - Author: Erebus Team
2 # vim: fileencoding=utf-8
3 # Various highly recommended "control" commands.
4 # This file is released into the public domain; see http://unlicense.org/
5
6 # module info
7 modinfo = {
8 'author': 'Erebus Team',
9 'license': 'public domain',
10 'compatible': [0],
11 'depends': [],
12 'softdeps': ['help'],
13 }
14
15 # preamble
16 import modlib
17 lib = modlib.modlib(__name__)
18 modstart = lib.modstart
19 modstop = lib.modstop
20
21 # module code
22 import sys, os
23 import ctlmod
24 from collections import deque
25
26
27 @lib.hook(('die','restart'), needchan=False, glevel=lib.MANAGER)
28 @lib.help(None, "stops the bot")
29 def die(bot, user, chan, realtarget, *args):
30 quitmsg = ' '.join(args)
31 for botitem in bot.parent.bots.values():
32 bot.conn.send("QUIT :Restarting. %s" % (quitmsg))
33 sys.exit(0)
34
35 @lib.hook(needchan=False, glevel=lib.MANAGER)
36 @lib.help("<mod>", "loads a module")
37 @lib.argsEQ(1)
38 def modload(bot, user, chan, realtarget, *args):
39 okay = ctlmod.load(bot.parent, args[0])
40 if okay:
41 bot.msg(user, "Loaded %s" % (args[0]))
42 else:
43 bot.msg(user, "Error loading %s: %r" % (args[0], okay))
44
45 @lib.hook(needchan=False, glevel=lib.MANAGER)
46 @lib.help("<mod> [FORCE]", "unloads a module", "will refuse to unload a module which is depended on by others", "unless you specify FORCE.")
47 @lib.argsGE(1)
48 def modunload(bot, user, chan, realtarget, *args):
49 if not ctlmod.isloaded(args[0]):
50 bot.msg(user, "%s is not loaded" % (args[0]))
51 return
52 if len(ctlmod.dependents[args[0]]) > 0:
53 if len(args) == 1 or args[1].lower() != "force":
54 bot.msg(user, "That module has dependents! Say MODUNLOAD %s FORCE to unload it and any dependents." % (args[0]))
55 return
56
57 okay = ctlmod.unload(bot.parent, args[0])
58 if okay:
59 bot.msg(user, "Unloaded %s" % (args[0]))
60 else:
61 bot.msg(user, "Error unloading %s: %r" % (args[0], okay))
62
63 @lib.hook(needchan=False, glevel=lib.MANAGER)
64 @lib.help("<mod>", "reloads a module")
65 @lib.argsEQ(1)
66 def modreload(bot, user, chan, realtarget, *args):
67 if not ctlmod.isloaded(args[0]):
68 bot.msg(user, "%s is not loaded" % (args[0]))
69 return
70
71 okay = ctlmod.reloadmod(bot.parent, args[0])
72 if okay:
73 bot.msg(user, "Reloaded %s" % (args[0]))
74 else:
75 bot.msg(user, "Error occurred: %r" % (okay))
76
77 @lib.hook(needchan=False, glevel=lib.STAFF)
78 @lib.help(None, "list loaded modules")
79 @lib.argsEQ(0)
80 def modlist(bot, user, chan, realtarget, *args):
81 mods = ctlmod.modules
82 for modname, mod in sorted(mods.items()):
83 bot.msg(user, "- %s (%s) [%s]" % ((modname, mod.__file__, ', '.join(ctlmod.dependents[modname]))))
84 bot.msg(user, "Done.")
85
86 def _whois(user, chan, showglevel=True, showclevel=True):
87 if not user.isauthed():
88 return "not authed."
89
90 fillers = {'auth': user.auth}
91 fmt = "%(auth)s"
92
93 if showglevel and user.glevel >= 1:
94 fillers['glevel'] = user.glevel
95 fmt += " (global access: %(glevel)s)"
96 elif user.glevel >= 1:
97 fmt += " (staff)"
98 else:
99 fmt += " (not staff)"
100
101 if (showclevel or showglevel) and chan is not None:
102 clev = chan.levelof(user.auth)
103 if clev >= 1:
104 fillers['clevel'] = (lib.clevs[clev] if clev < len(lib.clevs) else clev)
105 fmt += " (channel access: %(clevel)s)"
106 else:
107 fmt += " (not a channel user)"
108 return fmt % fillers
109
110 @lib.hook(needchan=False, wantchan=True)
111 @lib.help("<user|#auth>", "shows who someone is")
112 @lib.argsEQ(1)
113 def whois(bot, user, chan, realtarget, *args):
114 name = args[0]
115 if name.startswith("#"):
116 target = bot.parent.User(name, name[1:])
117 else:
118 target = bot.parent.user(name, create=False)
119 if target is None:
120 return "I don't know %s." % (args[0])
121 else:
122 return "%s is %s" % (args[0], _whois(target, chan, (user.glevel >= 1), (chan is not None and chan.levelof(user.auth) >= 1)))
123
124 @lib.hook(needchan=False, wantchan=True)
125 @lib.help(None, "shows who you are")
126 def whoami(bot, user, chan, realtarget, *args):
127 return "You are %s" % (_whois(user, chan))
128
129 @lib.hook(needchan=False)
130 @lib.help(None, "tries to read your auth and access level again")
131 def auth(bot, user, chan, realtarget, *args):
132 bot.msg(user, "Okay, give me a second.")
133 bot.conn.send("WHO %s n%%ant,2" % (user))
134
135 @lib.hook(needchan=False, glevel=1)
136 @lib.help(None, "displays length of each msgqueue")
137 def qstat(bot, user, chan, realtarget, *args):
138 bot.fastmsg(user, "Regular: %d -- Slow: %d" % (len(bot.msgqueue), len(bot.slowmsgqueue)))
139
140 @lib.hook(('qclear','cq','clearq','clearqueue'), needchan=False, glevel=lib.ADMIN)
141 @lib.help("[regular|slow]", "clears both or a specific msgqueue")
142 def qclear(bot, user, chan, realtarget, *args):
143 if len(args) == 0:
144 bot.msgqueue = deque()
145 bot.slowmsgqueue = deque()
146 bot.fastmsg(user, "Cleared both msgqueues.")
147 else:
148 if args[0] == 'regular':
149 bot.msgqueue = deque()
150 elif args[0] == 'slow':
151 bot.slowmsgqueue = deque()
152 else:
153 bot.fastmsg(user, "Syntax: QCLEAR [regular|slow]")
154 return #short-circuit
155 bot.fastmsg(user, "Cleared that msgqueue.")