Created
November 19, 2012 08:25
-
-
Save wbsch/4109562 to your computer and use it in GitHub Desktop.
taskwarrior <---> XMPP bridge in python. Proof of concept, no error checking :)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import sleekxmpp | |
import subprocess | |
import time | |
class TWBot(sleekxmpp.ClientXMPP): | |
def __init__(self, jid, password, whitelist): | |
sleekxmpp.ClientXMPP.__init__(self, jid, password) | |
self.whitelist = whitelist | |
self.add_event_handler("session_start", self.on_start) | |
self.add_event_handler("message", self.handle_message) | |
def on_start(self, event): | |
self.send_presence() | |
self.get_roster() | |
def handle_message(self, msg): | |
if msg['type'] in ('chat', 'normal') and ((str)(msg["from"])).split("/")[0] in self.whitelist: | |
msg.reply(self.exec_taskwarrior(msg["body"])).send() | |
def exec_taskwarrior(self, arguments): | |
commands = ["task", "rc.confirmation=off", "rc.verbose=no", "rc.bulk=1000"] | |
commands = commands + arguments.split(' ') | |
process = subprocess.Popen(commands, stdout=subprocess.PIPE) | |
return process.stdout.read().rstrip() | |
if __name__ == '__main__': | |
# FIXME: Not sure how spoof-proof XMPP is. Is this whitelist enough? | |
whitelist = ["[email protected]", "[email protected]"] | |
xmpp = TWBot("[email protected]/bot", "password", whitelist) | |
xmpp.register_plugin('xep_0030') # Service Discovery | |
xmpp.register_plugin('xep_0004') # Data Forms | |
xmpp.register_plugin('xep_0060') # PubSub | |
xmpp.register_plugin('xep_0199') # XMPP Ping | |
xmpp.connect() | |
xmpp.process(block=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment