diff options
author | makefu <github@syntax-fehler.de> | 2014-04-25 12:06:50 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2014-04-25 12:06:50 +0200 |
commit | d7bdbaaa1659289be2b07a532f98058ecba32916 (patch) | |
tree | 4edc9a3122af6aad33fe82e57805e0a9e75ba689 /titlebot/commands/new | |
parent | 09bc409155e99b04cb2282faa01548a40a2c135a (diff) |
add titlebot Reaktor configuration
Diffstat (limited to 'titlebot/commands/new')
-rwxr-xr-x | titlebot/commands/new | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/titlebot/commands/new b/titlebot/commands/new new file mode 100755 index 0000000..7246a2b --- /dev/null +++ b/titlebot/commands/new @@ -0,0 +1,19 @@ +#!/usr/bin/env python3 +import json +from os import environ +import sys +import os +# krebs polling +import poll + +f = 'suggestions.json' +title=" ".join(sys.argv[1:]) +db = poll.load_db(f) + +suggester = environ['_from'] +if not poll.title_in_db(title,db): + db.append( { 'by': suggester, + 'votes':{},'title': title}) + print("Thank you for your suggestion '%s'!"%environ["_from"]) + print("To vote type '.up %d'"%(len(db)-1)) +poll.save_db(f,db) |