Mercurial > libervia-backend
diff sat/core/constants.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 | a58715ffa445 |
children | e345d93fb6e5 |
line wrap: on
line diff
--- a/sat/core/constants.py Thu Sep 22 12:03:12 2022 +0200 +++ b/sat/core/constants.py Tue Aug 23 21:06:24 2022 +0200 @@ -22,6 +22,7 @@ except ImportError: BaseDirectory = None from os.path import dirname +from typing_extensions import Final import sat @@ -126,7 +127,7 @@ EXTRA_INFO_ENCR_ERR = "ENCRYPTION_ERROR" # encryption is a key for plugins - MESS_KEY_ENCRYPTION = "ENCRYPTION" + MESS_KEY_ENCRYPTION: Final = "ENCRYPTION" # encrypted is a key for frontends MESS_KEY_ENCRYPTED = "encrypted" MESS_KEY_TRUSTED = "trusted" @@ -431,7 +432,7 @@ return value.lower() in (cls.BOOL_TRUE, "1", "yes", "on") @classmethod - def boolConst(cls, value): + def boolConst(cls, value: bool) -> str: """@return (str): constant associated to bool value""" assert isinstance(value, bool) return cls.BOOL_TRUE if value else cls.BOOL_FALSE