2018-09-29 08:45:08 +00:00
|
|
|
|
2018-09-29 14:05:50 +00:00
|
|
|
import glob, json, os, subprocess
|
2018-10-01 12:48:55 +00:00
|
|
|
from src import IRCObject, Utils
|
2018-09-29 08:45:08 +00:00
|
|
|
|
|
|
|
class Module(object):
|
|
|
|
def __init__(self, bot, events, exports):
|
|
|
|
self.events = events
|
|
|
|
self._directory = os.path.join(bot.directory, "modules", "scripts")
|
2018-09-29 14:05:50 +00:00
|
|
|
self._hooks = []
|
|
|
|
self._load_scripts()
|
2018-09-29 08:45:08 +00:00
|
|
|
|
2018-09-29 14:05:50 +00:00
|
|
|
def _load_scripts(self):
|
2018-09-29 08:45:08 +00:00
|
|
|
for filename in glob.glob(os.path.join(self._directory, "*")):
|
|
|
|
name = os.path.basename(filename)
|
|
|
|
for hashflag, value in Utils.get_hashflags(filename):
|
|
|
|
if hashflag == "name" and value:
|
|
|
|
name = value
|
|
|
|
elif hashflag == "hook" and value:
|
2018-09-29 14:05:50 +00:00
|
|
|
hook = self.events.on(value).hook(
|
2018-09-29 08:45:08 +00:00
|
|
|
lambda x: self.call(x, filename, name))
|
2018-09-29 14:05:50 +00:00
|
|
|
self._hooks.append([value, hook])
|
|
|
|
|
|
|
|
@Utils.hook("received.command.reloadscripts", permission="reloadscripts")
|
|
|
|
def reload(self, event):
|
|
|
|
for event_name, hook in self._hooks:
|
|
|
|
self.events.on(event_name).unhook(hook)
|
|
|
|
self._load_scripts()
|
|
|
|
event["stdout"].write("Reloaded all scripts")
|
2018-09-29 08:45:08 +00:00
|
|
|
|
|
|
|
def call(self, event, filename, name):
|
|
|
|
env = {}
|
|
|
|
env["EVENT"] = event.name
|
|
|
|
for key, value in event.kwargs.items():
|
2018-09-29 14:05:50 +00:00
|
|
|
if isinstance(value, (str,)):
|
|
|
|
env[key.upper()] = value
|
|
|
|
elif isinstance(value, (bool,)):
|
|
|
|
env[key.upper()] = str(int(value))
|
|
|
|
elif isinstance(value, (list, dict)):
|
|
|
|
env[key.upper()] = json.dumps(value)
|
2018-10-01 12:48:55 +00:00
|
|
|
elif isinstance(value, (IRCObject.Object,)):
|
|
|
|
env[key.upper()] = str(value)
|
2018-09-29 08:45:08 +00:00
|
|
|
|
|
|
|
proc = subprocess.Popen([filename], stdout=subprocess.PIPE, env=env)
|
|
|
|
try:
|
|
|
|
proc.wait(5)
|
|
|
|
except subprocess.TimeoutExpired:
|
|
|
|
# execution of script expired
|
|
|
|
return
|
|
|
|
|
2018-09-29 08:46:47 +00:00
|
|
|
out = proc.stdout.read().decode("utf8").strip("\n")
|
2018-09-29 08:45:08 +00:00
|
|
|
if out:
|
|
|
|
if proc.returncode == 0:
|
|
|
|
if "stdout" in event:
|
|
|
|
event["stdout"].set_prefix(name)
|
|
|
|
event["stdout"].write(out)
|
|
|
|
else:
|
|
|
|
if "stderr" in event:
|
|
|
|
event["stderr"].set_prefix(name)
|
|
|
|
event["stderr"].write(out)
|