From 5886952793f4ccef0151930fc0500af8c9b69fea Mon Sep 17 00:00:00 2001 From: tv Date: Wed, 18 Dec 2013 22:15:38 +0100 Subject: Reaktor: caps show all commands w/capname prop --- commands/caps | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) (limited to 'commands/caps') diff --git a/commands/caps b/commands/caps index caa1fe0..eb1d97a 100755 --- a/commands/caps +++ b/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)))) -- cgit v1.2.3