69 lines
1.8 KiB
Python
69 lines
1.8 KiB
Python
|
|
import importlib
|
|
|
|
|
|
async def commit(self, chan, source, msg):
|
|
await self.quit('{} told me to commit {}'.format(source,msg))
|
|
|
|
async def quit(self, chan, source, msg):
|
|
await self.quit('{} told me to {}'.format(source,msg))
|
|
|
|
|
|
|
|
async def reloadmods(self, chan, source, msg):
|
|
await self.message(chan, 'reloading modules...')
|
|
self.cmd = {}
|
|
self.raw = {}
|
|
self.help = {}
|
|
for i in self.modules:
|
|
importlib.reload(self.modules[i])
|
|
await self.modules[i].init(self)
|
|
await self.message(chan, 'done! did something break? if so you might need to restart')
|
|
|
|
|
|
|
|
async def part(self, chan, source, msg):
|
|
await self.message(chan, 'bye {}'.format(msg))
|
|
await self.part(msg)
|
|
|
|
async def join(self, chan, source, msg):
|
|
await self.message(chan, 'joined {}'.format(msg))
|
|
await self.join(msg)
|
|
|
|
async def joins(self, chan, source, msg):
|
|
for i in self.joins:
|
|
await self.join(i)
|
|
|
|
async def ev(self, chan, source, msg):
|
|
msg = msg.split(' ')
|
|
setattr(self,msg.pop(0), eval(' '.join(msg)))
|
|
await self.message(chan, 'ok')
|
|
|
|
commands = {
|
|
'quit': quit,
|
|
'reload': reloadmods,
|
|
'commit': commit,
|
|
'part': part,
|
|
'join': join,
|
|
'eval': ev,
|
|
'joins': joins
|
|
}
|
|
|
|
async def adminHandle(self, chan, source, msg):
|
|
if await self.is_admin(source):
|
|
msg = msg.split(' ')
|
|
if len(msg) < 1 or not msg[0] in commands:
|
|
await self.message(chan, 'you press the wrong button on the oven and it burns you')
|
|
return
|
|
print('[ADMIN MODULE] {} told me to {}!!!'.format(source,msg[0]))
|
|
await commands[msg.pop(0)](self, chan, source, ' '.join(msg))
|
|
else:
|
|
await self.message(chan, 'you try to open it, but the oven is locked')
|
|
|
|
|
|
async def init(self):
|
|
self.cmd['admin'] = adminHandle
|
|
self.joins = ["#chaos", "#lickthecheese", "#windowsloser", "#cminecraft", "#team"]
|
|
|
|
|
|
|