From ce145b04ac21a90e77fccf3239142d8500713b80 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Thu, 16 Jun 2011 16:09:15 -0700 Subject: Integrate roster with ClientXMPP. Roster updates are now passed through to the roster when using self.update_roster, etc. --- sleekxmpp/roster/single.py | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'sleekxmpp/roster') diff --git a/sleekxmpp/roster/single.py b/sleekxmpp/roster/single.py index 6833563f..a8bb8d3a 100644 --- a/sleekxmpp/roster/single.py +++ b/sleekxmpp/roster/single.py @@ -171,9 +171,10 @@ class RosterNode(object): """ self[jid].remove() if not self.xmpp.is_component: - self.update(jid, subscription='remove') + return self.update(jid, subscription='remove') - def update(self, jid, name=None, subscription=None, groups=[]): + def update(self, jid, name=None, subscription=None, groups=[], + block=True, timeout=None, callback=None): """ Update a JID's subscription information. @@ -183,6 +184,15 @@ class RosterNode(object): subscription -- The subscription state. May be one of: 'to', 'from', 'both', 'none', or 'remove'. groups -- A list of group names. + block -- Specify if the roster request will block + until a response is received, or a timeout + occurs. Defaults to True. + timeout -- The length of time (in seconds) to wait + for a response before continuing if blocking + is used. Defaults to self.response_timeout. + callback -- Optional reference to a stream handler function. + Will be executed when the roster is received. + Implies block=False. """ self[jid]['name'] = name self[jid]['groups'] = group @@ -194,7 +204,9 @@ class RosterNode(object): iq['roster']['items'] = {jid: {'name': name, 'subscription': subscription, 'groups': groups}} - response = iq.send() + response = iq.send(block, timeout, callback) + if response in [False, None] or isinstance(response, Iq): + return response return response and response['type'] == 'result' def presence(self, jid, resource=None): -- cgit v1.2.3