summaryrefslogtreecommitdiffstats
path: root/Reaktor/commands/caps
diff options
context:
space:
mode:
authortv <tv@nomic.retiolum>2013-12-18 22:15:38 +0100
committertv <tv@nomic.retiolum>2013-12-18 22:15:38 +0100
commite152f84b84b348070ca31e34c65bc54f07af8b8b (patch)
treed1cdd710ccf798353bba60689bb5d140823524b8 /Reaktor/commands/caps
parentd62b233846053c67b4616d43ff834d99ce02cbb6 (diff)
Reaktor: caps show all commands w/capname prop
Diffstat (limited to 'Reaktor/commands/caps')
-rwxr-xr-xReaktor/commands/caps24
1 files changed, 19 insertions, 5 deletions
diff --git a/Reaktor/commands/caps b/Reaktor/commands/caps
index caa1fe06..eb1d97a6 100755
--- a/Reaktor/commands/caps
+++ b/Reaktor/commands/caps
@@ -1,5 +1,19 @@
-#! /bin/sh
-exec echo 'TODO: need access to config.json'
-set -euf
-cd public_commands
-echo `ls`
+#! /usr/bin/env python
+import imp
+import os
+
+def load_config(filename):
+ dirname = os.path.dirname(filename)
+ modname, ext = os.path.splitext(os.path.basename(filename))
+ file, pathname, description = imp.find_module(modname, [ dirname ])
+ return imp.load_module(modname, file, pathname, description)
+
+def not_none(x):
+ return x != None
+
+def pluck(name):
+ return lambda x: name in x.keys() and x[name] or None
+
+config = load_config(os.environ['config_filename'])
+
+print(' '.join(filter(not_none, map(pluck('capname'), config.irc_commands))))