-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcommand_runner.py
executable file
·38 lines (29 loc) · 1.23 KB
/
command_runner.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
#!/usr/bin/python
import os, sys, re, subprocess
# If this script is set as your command handler, when any ?command is run in IRC it will
# look in the path defined below for a script matching that command name and run it.
#
# e.g. ?uptime would look in "/usr/share/irccat/" (the default) for any script called
# "uptime", with any extension. It would happily run both uptime.sh and uptime.py, or
# a script in whatever language you like. Command names are limited to [0-9a-z].
path = '/home/instrumentation/bin/irccat/'
args = sys.argv[1]
bits = args.split(' ')
command = bits[3].lower()
found = False
if re.match('^[a-z0-9]+$', command):
for file in os.listdir(path):
if re.match('^%s\.[a-z]+$' % command, file):
found = True
procArgs = [path + file]
procArgs.extend(bits)
proc = subprocess.Popen(procArgs, stdout=subprocess.PIPE)
stdout = proc.stdout
while True:
# We do this to avoid buffering from the subprocess stdout
print os.read(stdout.fileno(), 65536),
sys.stdout.flush()
if proc.poll() != None:
break
if found == False:
print "Unknown command '%s'" % command