diff sat_frontends/jp/cmd_identity.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 559a625a236b
children be6d91572633
line wrap: on
line diff
--- a/sat_frontends/jp/cmd_identity.py	Tue Apr 14 20:36:24 2020 +0200
+++ b/sat_frontends/jp/cmd_identity.py	Tue Apr 14 21:00:33 2020 +0200
@@ -21,6 +21,7 @@
 from . import base
 from sat.core.i18n import _
 from sat_frontends.jp.constants import Const as C
+from sat.tools.common import data_format
 
 __commands__ = ["Identity"]
 
@@ -38,6 +39,9 @@
 
     def add_parser_options(self):
         self.parser.add_argument(
+            "--no-cache", action="store_true", help=_("do no use cached values")
+        )
+        self.parser.add_argument(
             "jid", help=_("entity to check")
         )
 
@@ -46,37 +50,40 @@
         try:
             data = await self.host.bridge.identityGet(
                 jid_,
-                self.profile,
+                [],
+                not self.args.no_cache,
+                self.profile
             )
         except Exception as e:
             self.disp(f"can't get identity data: {e}", error=True)
             self.host.quit(C.EXIT_BRIDGE_ERRBACK)
         else:
+            data = data_format.deserialise(data)
             await self.output(data)
             self.host.quit()
 
 
 class Set(base.CommandBase):
     def __init__(self, host):
-        super(Set, self).__init__(host, "set", help=_("modify an existing event"))
+        super(Set, self).__init__(host, "set", help=_("update identity data"))
 
     def add_parser_options(self):
         self.parser.add_argument(
-            "-f",
-            "--field",
+            "-n",
+            "--nickname",
             action="append",
-            nargs=2,
-            dest="fields",
-            metavar=("KEY", "VALUE"),
+            dest="nicknames",
             required=True,
-            help=_("identity field(s) to set"),
+            help=_("nicknames of the entity"),
         )
 
     async def start(self):
-        fields = dict(self.args.fields)
+        id_data = {
+            "nicknames": self.args.nicknames,
+        }
         try:
             self.host.bridge.identitySet(
-                fields,
+                data_format.serialise(id_data),
                 self.profile,
             )
         except Exception as e: