From d7bdbaaa1659289be2b07a532f98058ecba32916 Mon Sep 17 00:00:00 2001 From: makefu Date: Fri, 25 Apr 2014 12:06:50 +0200 Subject: add titlebot Reaktor configuration --- titlebot/commands/up | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 titlebot/commands/up (limited to 'titlebot/commands/up') diff --git a/titlebot/commands/up b/titlebot/commands/up new file mode 100755 index 0000000..c9de122 --- /dev/null +++ b/titlebot/commands/up @@ -0,0 +1,27 @@ +#!/usr/bin/env python3 +import json +from os import environ +import sys +import os +# krebs polling +import poll + +f = 'suggestions.json' +db = poll.load_db(f) +votes = [] +try: + votes = sys.argv[1:] +except: + print("""usage: up number (...) + upvotes one or more entries based on .list""") + sys.exit(1) + +voter = environ['_prefix'] +for vote in votes: + try: + vote = int(vote) + db[vote]['votes'][voter] = 1 + except: + print("voting for #%s failed" %vote) +print("Thanks for your votes %s"%environ['_from']) +poll.save_db(f,db) -- cgit v1.2.3