mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-24 03:00:15 +00:00
Update Roster stanza to use RosterItem substanzas.
get_roster() now returns the Iq result stanza instead of True (stanzas also evaluate to True).
This commit is contained in:
parent
c0074f95b1
commit
e8b2dd6698
2 changed files with 43 additions and 32 deletions
|
@ -244,7 +244,8 @@ class ClientXMPP(BaseXMPP):
|
|||
response = iq.send(block, timeout, callback)
|
||||
|
||||
if block:
|
||||
return self._handle_roster(response, request=True)
|
||||
self._handle_roster(response, request=True)
|
||||
return response
|
||||
|
||||
def _handle_connected(self, event=None):
|
||||
#TODO: Use stream state here
|
||||
|
@ -291,7 +292,6 @@ class ClientXMPP(BaseXMPP):
|
|||
iq.reply()
|
||||
iq.enable('roster')
|
||||
iq.send()
|
||||
return True
|
||||
|
||||
def _handle_session_bind(self, jid):
|
||||
"""Set the client roster to the JID set by the server.
|
||||
|
|
|
@ -55,20 +55,10 @@ class Roster(ElementBase):
|
|||
"""
|
||||
self.del_items()
|
||||
for jid in items:
|
||||
ijid = str(jid)
|
||||
item = ET.Element('{jabber:iq:roster}item', {'jid': ijid})
|
||||
if 'subscription' in items[jid]:
|
||||
item.attrib['subscription'] = items[jid]['subscription']
|
||||
if 'name' in items[jid]:
|
||||
name = items[jid]['name']
|
||||
if name is not None:
|
||||
item.attrib['name'] = name
|
||||
if 'groups' in items[jid]:
|
||||
for group in items[jid]['groups']:
|
||||
groupxml = ET.Element('{jabber:iq:roster}group')
|
||||
groupxml.text = group
|
||||
item.append(groupxml)
|
||||
self.xml.append(item)
|
||||
item = RosterItem()
|
||||
item.values = items[jid]
|
||||
item['jid'] = jid
|
||||
self.append(item)
|
||||
return self
|
||||
|
||||
def get_items(self):
|
||||
|
@ -83,31 +73,52 @@ class Roster(ElementBase):
|
|||
been assigned.
|
||||
"""
|
||||
items = {}
|
||||
itemsxml = self.xml.findall('{jabber:iq:roster}item')
|
||||
if itemsxml is not None:
|
||||
for itemxml in itemsxml:
|
||||
item = {}
|
||||
item['name'] = itemxml.get('name', '')
|
||||
item['subscription'] = itemxml.get('subscription', '')
|
||||
item['ask'] = itemxml.get('ask', '')
|
||||
item['approved'] = itemxml.get('approved', '')
|
||||
item['groups'] = []
|
||||
groupsxml = itemxml.findall('{jabber:iq:roster}group')
|
||||
if groupsxml is not None:
|
||||
for groupxml in groupsxml:
|
||||
item['groups'].append(groupxml.text)
|
||||
items[itemxml.get('jid')] = item
|
||||
for item in self['substanzas']:
|
||||
if isinstance(item, RosterItem):
|
||||
items[item['jid']] = item.values
|
||||
# Remove extra JID reference to keep everything
|
||||
# backward compatible
|
||||
del items[item['jid']]['jid']
|
||||
return items
|
||||
|
||||
def del_items(self):
|
||||
"""
|
||||
Remove all <item> elements from the roster stanza.
|
||||
"""
|
||||
for child in self.xml.getchildren():
|
||||
self.xml.remove(child)
|
||||
for item in self['substanzas']:
|
||||
if isinstance(item, RosterItem):
|
||||
self.xml.remove(item.xml)
|
||||
|
||||
|
||||
class RosterItem(ElementBase):
|
||||
namespace = 'jabber:iq:roster'
|
||||
name = 'item'
|
||||
plugin_attrib = 'item'
|
||||
interfaces = set(('jid', 'name', 'subscription', 'ask',
|
||||
'approved', 'groups'))
|
||||
|
||||
def get_groups(self):
|
||||
groups = []
|
||||
for group in self.xml.findall('{%s}group' % self.namespace):
|
||||
groups.append(group.text)
|
||||
return groups
|
||||
|
||||
def set_groups(self, values):
|
||||
self.del_groups()
|
||||
for group in values:
|
||||
group_xml = ET.Element('{%s}group' % self.namespace)
|
||||
group_xml.text = group
|
||||
self.xml.append(group_xml)
|
||||
|
||||
def del_groups(self):
|
||||
for group in self.xml.findall('{%s}group' % self.namespace):
|
||||
self.xmp.remove(group)
|
||||
|
||||
|
||||
|
||||
|
||||
register_stanza_plugin(Iq, Roster)
|
||||
register_stanza_plugin(Roster, RosterItem, iterable=True)
|
||||
|
||||
# To comply with PEP8, method names now use underscores.
|
||||
# Deprecated method names are re-mapped for backwards compatibility.
|
||||
|
|
Loading…
Reference in a new issue