Mercurial > libervia-backend
comparison sat/core/sat_main.py @ 3911:8289ac1b34f4
plugin XEP-0384: Fully reworked to adjust to the reworked python-omemo:
- support for both (modern) OMEMO under the `urn:xmpp:omemo:2` namespace and (legacy) OMEMO under the `eu.siacs.conversations.axolotl` namespace
- maintains one identity across both versions of OMEMO
- migrates data from the old plugin
- includes more features for protocol stability
- uses SCE for modern OMEMO
- fully type-checked, linted and format-checked
- added type hints to various pieces of backend code used by the plugin
- added stubs for some Twisted APIs used by the plugin under stubs/ (use `export MYPYPATH=stubs/` before running mypy)
- core (xmpp): enabled `send` trigger and made it an asyncPoint
fix 375
author | Syndace <me@syndace.dev> |
---|---|
date | Tue, 23 Aug 2022 21:06:24 +0200 |
parents | 89b13b405b93 |
children | ce5d03772689 |
comparison
equal
deleted
inserted
replaced
3910:199598223f82 | 3911:8289ac1b34f4 |
---|---|
632 profile = self.memory.getProfileName(profile_key) | 632 profile = self.memory.getProfileName(profile_key) |
633 if not profile or not self.profiles[profile].isConnected(): | 633 if not profile or not self.profiles[profile].isConnected(): |
634 return (None, None) | 634 return (None, None) |
635 return (self.profiles[profile].jid, self.profiles[profile].xmlstream) | 635 return (self.profiles[profile].jid, self.profiles[profile].xmlstream) |
636 | 636 |
637 def getClient(self, profile_key): | 637 def getClient(self, profile_key: str) -> xmpp.SatXMPPClient: |
638 """Convenient method to get client from profile key | 638 """Convenient method to get client from profile key |
639 | 639 |
640 @return: client or None if it doesn't exist | 640 @return: the client |
641 @raise exceptions.ProfileKeyUnknown: the profile or profile key doesn't exist | 641 @raise exceptions.ProfileKeyUnknown: the profile or profile key doesn't exist |
642 @raise exceptions.NotFound: client is not available | 642 @raise exceptions.NotFound: client is not available |
643 This happen if profile has not been used yet | 643 This happen if profile has not been used yet |
644 """ | 644 """ |
645 profile = self.memory.getProfileName(profile_key) | 645 profile = self.memory.getProfileName(profile_key) |