bitbot-3.11-fork/modules/eval_python.py

64 lines
1.9 KiB
Python
Raw Normal View History

2018-10-17 14:09:59 +00:00
import html, json, socket
from src import ModuleManager, utils
2018-09-19 12:56:57 +00:00
2018-10-12 11:39:01 +00:00
EVAL_TEMPLATE = """
import io, json, sys
2018-10-12 12:23:48 +00:00
compiled = compile(sys.stdin.read(), "code", "single")
old_stdout = sys.stdout
stdout = io.StringIO()
sys.stdout = stdout
try:
result = eval(compiled)
except Exception as e:
old_stdout.write(json.dumps({"success": False, "out": str(e)}))
sys.exit()
stdout.write("\\n")
2018-10-12 11:39:01 +00:00
if not result == None:
stdout.write(str(result)+"\\n")
old_stdout.write(json.dumps({"success": True, "out": stdout.getvalue()}))
2018-10-12 11:39:01 +00:00
"""
2018-09-19 12:56:57 +00:00
2018-10-12 11:39:01 +00:00
EVAL_URL = "https://tpcg.tutorialspoint.com/tpcg.php"
class Module(ModuleManager.BaseModule):
_name = "Python"
2018-10-12 11:39:01 +00:00
def _eval(self, lang, event):
2018-09-19 12:56:57 +00:00
try:
2018-10-12 11:39:01 +00:00
page = utils.http.get_url(EVAL_URL,
post_data={
"lang": lang,
"code": EVAL_TEMPLATE,
"execute": "%s main.py" % lang,
"mainfile": "main.py",
"stdinput": event["args"]
},
method="POST")
except:
pass
2018-09-19 12:56:57 +00:00
2018-10-12 11:39:01 +00:00
if page:
out = page.split("</b></span><br>", 1)[1]
out = html.unescape(out)
out = json.loads(out)
event["stdout" if out["success"] else "stderr"].write(
"%s: %s" % (event["user"].nickname, out["out"].strip("\n")))
2018-10-12 11:39:01 +00:00
else:
event["stderr"].write("%s: failed to eval" % event["user"].nickname)
2018-10-12 11:39:01 +00:00
@utils.hook("received.command.py2", alias_of="python2")
@utils.hook("received.command.python2", min_args=1)
def eval(self, event):
self._eval("python", event)
2018-10-12 11:39:01 +00:00
@utils.hook("received.command.py", alias_of="python")
@utils.hook("received.command.py3", alias_of="python")
@utils.hook("received.command.python", alias_of="python3")
@utils.hook("received.command.python3", min_args=1)
def eval3(self, event):
self._eval("python3", event)