aboutsummaryrefslogtreecommitdiffstats
path: root/titlebot/commands/undo
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2014-04-25 12:06:50 +0200
committermakefu <github@syntax-fehler.de>2014-04-25 12:06:50 +0200
commitd7bdbaaa1659289be2b07a532f98058ecba32916 (patch)
tree4edc9a3122af6aad33fe82e57805e0a9e75ba689 /titlebot/commands/undo
parent09bc409155e99b04cb2282faa01548a40a2c135a (diff)
add titlebot Reaktor configuration
Diffstat (limited to 'titlebot/commands/undo')
-rwxr-xr-xtitlebot/commands/undo27
1 files changed, 27 insertions, 0 deletions
diff --git a/titlebot/commands/undo b/titlebot/commands/undo
new file mode 100755
index 0000000..bebd57a
--- /dev/null
+++ b/titlebot/commands/undo
@@ -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: undo number (...)
+ undos vote of one or more entries based on .list""")
+ sys.exit(1)
+voter = environ['_prefix']
+for vote in votes:
+ try:
+ vote = int(vote)
+ del(db[vote]['votes'][voter] )
+ print("undid vote by %s for #%d" %(environ['_from'],vote))
+ except:
+ print("undo voting for #%s failed" %vote)
+
+poll.save_db(f,db)