diff sat/plugins/plugin_xep_0085.py @ 3254:6cf4bd6972c2

core, frontends: avatar refactoring: /!\ huge commit Avatar logic has been reworked around the IDENTITY plugin: plugins able to handle avatar or other identity related metadata (like nicknames) register to IDENTITY plugin in the same way as for other features like download/upload. Once registered, IDENTITY plugin will call them when suitable in order of priority, and handle caching. Methods to manage those metadata from frontend now use serialised data. For now `avatar` and `nicknames` are handled: - `avatar` is now a dict with `path` + metadata like `media_type`, instead of just a string path - `nicknames` is now a list of nicknames in order of priority. This list is never empty, and `nicknames[0]` should be the preferred nickname to use by frontends in most cases. In addition to contact specified nicknames, user set nickname (the one set in roster) is used in priority when available. Among the side changes done with this commit, there are: - a new `contactGet` bridge method to get roster metadata for a single contact - SatPresenceProtocol.send returns a Deferred to check when it has actually been sent - memory's methods to handle entities data now use `client` as first argument - metadata filter can be specified with `getIdentity` - `getAvatar` and `setAvatar` are now part of the IDENTITY plugin instead of XEP-0054 (and there signature has changed) - `isRoom` and `getBareOrFull` are now part of XEP-0045 plugin - jp avatar/get command uses `xdg-open` first when available for `--show` flag - `--no-cache` has been added to jp avatar/get and identity/get - jp identity/set has been simplified, explicit options (`--nickname` only for now) are used instead of `--field`. `--field` may come back in the future if necessary for extra data. - QuickContactList `SetContact` now handle None as a value, and doesn't use it to delete the metadata anymore - improved cache handling for `metadata` and `nicknames` in quick frontend - new `default` argument in QuickContactList `getCache`
author Goffi <goffi@goffi.org>
date Tue, 14 Apr 2020 21:00:33 +0200
parents dcebc585c29f
children 524856bd7b19
line wrap: on
line diff
--- a/sat/plugins/plugin_xep_0085.py	Tue Apr 14 20:36:24 2020 +0200
+++ b/sat/plugins/plugin_xep_0085.py	Tue Apr 14 21:00:33 2020 +0200
@@ -145,11 +145,12 @@
         @param value: True, False or DELETE_VALUE to delete the entity data
         @param profile: current profile
         """
+        client = self.host.getClient(profile)
         if value == DELETE_VALUE:
-            self.host.memory.delEntityDatum(entity_jid, ENTITY_KEY, profile)
+            self.host.memory.delEntityDatum(client, entity_jid, ENTITY_KEY)
         else:
             self.host.memory.updateEntityData(
-                entity_jid, ENTITY_KEY, value, profile_key=profile
+                client, entity_jid, ENTITY_KEY, value
             )
         if not value or value == DELETE_VALUE:
             # reinit chat state UI for this or these contact(s)
@@ -256,9 +257,10 @@
         @param profile (str): %(doc_profile)s
         @return: bool
         """
+        client = self.host.getClient(profile)
         try:
             type_ = self.host.memory.getEntityDatum(
-                to_jid.userhostJID(), C.ENTITY_TYPE, profile)
+                client, to_jid.userhostJID(), C.ENTITY_TYPE)
             if type_ == C.ENTITY_TYPE_MUC:
                 return True
         except (exceptions.UnknownEntityError, KeyError):
@@ -273,6 +275,7 @@
         @param: current profile
         @return: True if the notifications should be sent to this JID.
         """
+        client = self.host.getClient(profile)
         # check if the parameter is active
         if not self.host.memory.getParamA(PARAM_NAME, PARAM_KEY, profile_key=profile):
             return False
@@ -282,7 +285,7 @@
         # FIXME: this assertion crash when we want to send a message to an online bare jid
         # assert to_jid.resource or not self.host.memory.isEntityAvailable(to_jid, profile) # must either have a resource, or talk to an offline contact
         try:
-            return self.host.memory.getEntityDatum(to_jid, ENTITY_KEY, profile)
+            return self.host.memory.getEntityDatum(client, to_jid, ENTITY_KEY)
         except (exceptions.UnknownEntityError, KeyError):
             if forceEntityData:
                 # enable it for the first time