diff sat_frontends/bridge/pb.py @ 2658:4e130cc9bfc0

core (memore/encryption): new methods and checks: Following methods are now available though bridge: - messageEncryptionStop - messageEncryptionGet: retrieve encryption data for a message session - encryptionPluginsGet: retrieve all registered encryption plugin Following methods are available for internal use: - getPlugins: retrieve registerd plugins - getNSFromName: retrieve namespace from plugin name - getBridgeData: serialise session data (to be used with bridge) - markAsEncrypted: mark message data as encrypted (to be set by encryption plugin in MessageReceived trigger) Behaviours improvments: - start and stop send messageEncryptionStarted and messageEncryptionStopped signals, and a message feedback - new "replace" arguments in start allows to replace a plugin if one is already running (instead of raising a ConflictError) - plugins declare themselves as "directed" (i.e. working with only one device at a time) or not. This is checked while dealing with jids, an exception is raised when a full jid is received for a non directed encryption. - use of new data_format (de)serialise
author Goffi <goffi@goffi.org>
date Sat, 11 Aug 2018 18:24:55 +0200
parents 712cb4ff3e13
children e347e32aa07f
line wrap: on
line diff
--- a/sat_frontends/bridge/pb.py	Sat Aug 11 18:24:55 2018 +0200
+++ b/sat_frontends/bridge/pb.py	Sat Aug 11 18:24:55 2018 +0200
@@ -214,6 +214,14 @@
             errback = self._generic_errback
         d.addErrback(errback)
 
+    def encryptionPluginsGet(self, callback=None, errback=None):
+        d = self.root.callRemote("encryptionPluginsGet")
+        if callback is not None:
+            d.addCallback(callback)
+        if errback is None:
+            errback = self._generic_errback
+        d.addErrback(errback)
+
     def getConfig(self, section, name, callback=None, errback=None):
         d = self.root.callRemote("getConfig", section, name)
         if callback is not None:
@@ -382,8 +390,24 @@
             errback = self._generic_errback
         d.addErrback(errback)
 
-    def messageEncryptionStart(self, to_jid, encryption_ns='', profile_key="@NONE@", callback=None, errback=None):
-        d = self.root.callRemote("messageEncryptionStart", to_jid, encryption_ns, profile_key)
+    def messageEncryptionGet(self, to_jid, profile_key, callback=None, errback=None):
+        d = self.root.callRemote("messageEncryptionGet", to_jid, profile_key)
+        if callback is not None:
+            d.addCallback(callback)
+        if errback is None:
+            errback = self._generic_errback
+        d.addErrback(errback)
+
+    def messageEncryptionStart(self, to_jid, encryption_ns='', replace=False, profile_key="@NONE@", callback=None, errback=None):
+        d = self.root.callRemote("messageEncryptionStart", to_jid, encryption_ns, replace, profile_key)
+        if callback is not None:
+            d.addCallback(lambda dummy: callback())
+        if errback is None:
+            errback = self._generic_errback
+        d.addErrback(errback)
+
+    def messageEncryptionStop(self, to_jid, profile_key, callback=None, errback=None):
+        d = self.root.callRemote("messageEncryptionStop", to_jid, profile_key)
         if callback is not None:
             d.addCallback(lambda dummy: callback())
         if errback is None: