diff options
author | Nathan Fritz <nathan@andyet.net> | 2010-05-31 13:57:39 -0700 |
---|---|---|
committer | Nathan Fritz <nathan@andyet.net> | 2010-05-31 13:57:39 -0700 |
commit | aa916c9ac893a976c8e26ee07ca4a9768a5e1680 (patch) | |
tree | 7f9f1ca670b988829cf94773b6394f62489d80b3 | |
parent | 82a3918aa475dbd4abc8941b8c5601f61ab2e508 (diff) | |
download | slixmpp-aa916c9ac893a976c8e26ee07ca4a9768a5e1680.tar.gz slixmpp-aa916c9ac893a976c8e26ee07ca4a9768a5e1680.tar.bz2 slixmpp-aa916c9ac893a976c8e26ee07ca4a9768a5e1680.tar.xz slixmpp-aa916c9ac893a976c8e26ee07ca4a9768a5e1680.zip |
included jobs plugin
-rw-r--r-- | sleekxmpp/plugins/jobs.py | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/jobs.py b/sleekxmpp/plugins/jobs.py new file mode 100644 index 00000000..bb2e2554 --- /dev/null +++ b/sleekxmpp/plugins/jobs.py @@ -0,0 +1,44 @@ +from . import base +import logging +from xml.etree import cElementTree as ET + +class jobs(base.base_plugin): + def plugin_init(self): + self.xep = 'pubsubjob' + self.description = "Job distribution over Pubsub" + + def post_init(self): + pass + #TODO add event + + def createJobNode(self, host, jid, node, config=None): + pass + + def createJob(self, host, node, jobid=None, payload=None): + return self.xmpp.plugin['xep_0060'].setItem(host, node, ((jobid, payload),)) + + def claimJob(self, host, node, jobid, ifrom=None): + return self._setState(host, node, jobid, ET.Element('{http://andyet.net/protocol/pubsubjob}claimed')) + + def unclaimJob(self, jobid): + return self._setState(host, node, jobid, ET.Element('{http://andyet.net/protocol/pubsubjob}unclaimed')) + + def finishJob(self, host, node, jobid, payload=None): + finished = ET.Element('{http://andyet.net/protocol/pubsubjob}finished') + if payload is not None: + finished.append(payload) + return self._setState(host, node, jobid, finished) + + def _setState(self, host, node, jobid, state, ifrom=None): + iq = self.xmpp.Iq() + iq['to'] = host + if ifrom: iq['from'] = ifrom + iq['type'] = 'set' + iq['psstate']['node'] = node + iq['psstate']['item'] = jobid + iq['psstate']['payload'] = state + result = iq.send() + if result is None or result['type'] != 'result': + return False + return True + |