2006-08-20 12:18:20 +02:00
|
|
|
import xmpp
|
|
|
|
import gajim
|
2007-06-03 12:30:34 +02:00
|
|
|
import connection_handlers
|
2006-08-20 12:18:20 +02:00
|
|
|
|
|
|
|
class ConnectionPubSub:
|
|
|
|
def __init__(self):
|
|
|
|
self.__callbacks={}
|
|
|
|
|
|
|
|
def send_pb_subscription_query(self, jid, cb, *args, **kwargs):
|
|
|
|
query = xmpp.Iq('get', to=jid)
|
2008-01-21 00:24:03 +01:00
|
|
|
pb = query.addChild('pubsub', {'xmlns': xmpp.NS_PUBSUB})
|
2006-08-20 12:18:20 +02:00
|
|
|
pb.addChild('subscriptions')
|
|
|
|
|
|
|
|
id = self.connection.send(query)
|
|
|
|
|
|
|
|
self.__callbacks[id]=(cb, args, kwargs)
|
|
|
|
|
|
|
|
def send_pb_subscribe(self, jid, node, cb, *args, **kwargs):
|
|
|
|
our_jid = gajim.get_jid_from_account(self.name)
|
|
|
|
query = xmpp.Iq('set', to=jid)
|
|
|
|
pb = query.addChild('pubsub', namespace=xmpp.NS_PUBSUB)
|
|
|
|
pb.addChild('subscribe', {'node': node, 'jid': our_jid})
|
|
|
|
|
|
|
|
id = self.connection.send(query)
|
|
|
|
|
|
|
|
self.__callbacks[id]=(cb, args, kwargs)
|
|
|
|
|
|
|
|
def send_pb_unsubscribe(self, jid, node, cb, *args, **kwargs):
|
|
|
|
our_jid = gajim.get_jid_from_account(self.name)
|
|
|
|
query = xmpp.Iq('set', to=jid)
|
|
|
|
pb = query.addChild('pubsub', namespace=xmpp.NS_PUBSUB)
|
|
|
|
pb.addChild('unsubscribe', {'node': node, 'jid': our_jid})
|
|
|
|
|
|
|
|
id = self.connection.send(query)
|
|
|
|
|
|
|
|
self.__callbacks[id]=(cb, args, kwargs)
|
|
|
|
|
|
|
|
def send_pb_publish(self, jid, node, item, id):
|
|
|
|
'''Publish item to a node.'''
|
|
|
|
query = xmpp.Iq('set', to=jid)
|
|
|
|
e = query.addChild('pubsub', namespace=xmpp.NS_PUBSUB)
|
|
|
|
e = e.addChild('publish', {'node': node})
|
|
|
|
e = e.addChild('item', {'id': id}, [item]) # TODO: we should generate id... or we shouldn't?
|
|
|
|
|
|
|
|
self.connection.send(query)
|
|
|
|
|
2007-03-26 00:16:48 +02:00
|
|
|
def send_pb_delete(self, jid, node):
|
|
|
|
'''Deletes node.'''
|
|
|
|
query = xmpp.Iq('set', to=jid)
|
|
|
|
d = query.addChild('pubsub', namespace=xmpp.NS_PUBSUB)
|
|
|
|
d = d.addChild('delete', {'node': node})
|
|
|
|
|
|
|
|
self.connection.send(query)
|
|
|
|
|
|
|
|
def send_pb_create(self, jid, node, configure = False, configure_form = None):
|
|
|
|
'''Creates new node.'''
|
|
|
|
query = xmpp.Iq('set', to=jid)
|
|
|
|
c = query.addChild('pubsub', namespace=xmpp.NS_PUBSUB)
|
|
|
|
c = c.addChild('create', {'node': node})
|
|
|
|
if configure:
|
|
|
|
conf = c.addChild('configure')
|
|
|
|
if configure_form is not None:
|
2007-12-27 22:52:45 +01:00
|
|
|
conf.addChild(node=configure_form)
|
2007-03-26 00:16:48 +02:00
|
|
|
|
|
|
|
self.connection.send(query)
|
|
|
|
|
2008-02-15 23:55:21 +01:00
|
|
|
def send_pb_configure(self, jid, node, form):
|
2007-03-26 00:16:48 +02:00
|
|
|
query = xmpp.Iq('set', to=jid)
|
2008-02-15 23:55:21 +01:00
|
|
|
c = query.addChild('pubsub', namespace=xmpp.NS_PUBSUB_OWNER)
|
2007-03-26 00:16:48 +02:00
|
|
|
c = c.addChild('configure', {'node': node})
|
2008-02-15 23:55:21 +01:00
|
|
|
c.addChild(node=form)
|
2007-03-26 00:16:48 +02:00
|
|
|
|
2008-02-15 23:55:21 +01:00
|
|
|
self.connection.send(query)
|
2007-03-26 00:16:48 +02:00
|
|
|
|
2006-08-20 12:18:20 +02:00
|
|
|
def _PubSubCB(self, conn, stanza):
|
|
|
|
try:
|
|
|
|
cb, args, kwargs = self.__callbacks.pop(stanza.getID())
|
|
|
|
cb(conn, stanza, *args, **kwargs)
|
2007-08-09 17:39:18 +02:00
|
|
|
except:
|
2006-08-20 12:18:20 +02:00
|
|
|
pass
|
2007-06-03 12:30:34 +02:00
|
|
|
|
|
|
|
def request_pb_configuration(self, jid, node):
|
|
|
|
query = xmpp.Iq('get', to=jid)
|
|
|
|
e = query.addChild('pubsub', namespace=xmpp.NS_PUBSUB_OWNER)
|
|
|
|
e = e.addChild('configure', {'node': node})
|
|
|
|
id = self.connection.getAnID()
|
|
|
|
query.setID(id)
|
2008-02-15 23:55:21 +01:00
|
|
|
self.awaiting_answers[id] = (connection_handlers.PEP_CONFIG,)
|
2007-06-03 12:30:34 +02:00
|
|
|
self.connection.send(query)
|