forked from errbotio/err-code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcodeBot.py
60 lines (51 loc) · 1.67 KB
/
codeBot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
__author__ = 'gbin'
import requests
from errbot.botplugin import BotPlugin
from errbot.utils import get_sender_username
from errbot import botcmd
from codepad import CodePad
def trollguard(func):
def helper(self, mess, args):
output = func(self, mess, args)
if len(output) > 8000:
return "How appropriate, you code like a cow, {0}!".format(get_sender_username(mess))
else:
return output
helper.__name__ = func.__name__ # hrrrgh!
return helper
class CodeBot(BotPlugin):
@botcmd
@trollguard
def python(self, mess, args):
""" Execute the python expression """
return CodePad(args).eval()
@botcmd
@trollguard
def c(self, mess, args):
""" Execute the c expression """
return CodePad(args, lang='C').eval()
@botcmd
@trollguard
def cpp(self, mess, args):
""" Execute the c++ expression """
return CodePad(args, lang='C++').eval()
@botcmd
@trollguard
def scheme(self, mess, args):
""" Execute the scheme expression """
return CodePad(args, lang='Scheme').eval()
@botcmd
@trollguard
def hs(self, mess, args):
""" Evaluate the Haskell expression in ghci (tryhaskell.org) """
r = requests.get("http://tryhaskell.org/haskell.json", params={'method':'eval', 'expr':args}).json()
if 'result' in r:
return "{0} :: {1}".format(r['result'], r['type'])
else:
return "{0}: {1}".format(*list(r.items())[0])
@botcmd
@trollguard
def haskell(self, mess, args):
""" Execute the Haskell module """
return CodePad(args, lang='Haskell').eval()
# vim:expandtab