Mercurial > libervia-backend
diff sat/core/xmpp.py @ 3585:31628770a15a
core (xmpp): renamed `SatRosterProtocol.presenceSubscribed` to `isSubscribedFrom` (and added `isSubscribedTo`)
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 28 Jul 2021 22:15:31 +0200 |
parents | 813595f88612 |
children | 09f5ac48ffe3 |
line wrap: on
line diff
--- a/sat/core/xmpp.py Wed Jun 30 16:19:14 2021 +0200 +++ b/sat/core/xmpp.py Wed Jul 28 22:15:31 2021 +0200 @@ -1552,7 +1552,7 @@ f"a JID is expected, not {type(entity_jid)}: {entity_jid!r}") return entity_jid in self._jids - def isPresenceAuthorised(self, entity_jid): + def isSubscribedFrom(self, entity_jid: jid.JID) -> bool: """Return True if entity is authorised to see our presence""" try: item = self._jids[entity_jid.userhostJID()] @@ -1560,6 +1560,14 @@ return False return item.subscriptionFrom + def isSubscribedTo(self, entity_jid: jid.JID) -> bool: + """Return True if we are subscribed to entity""" + try: + item = self._jids[entity_jid.userhostJID()] + except KeyError: + return False + return item.subscriptionTo + def getItems(self): """Return all items of the roster""" return list(self._jids.values())