diff frontends/src/jp/cmd_avatar.py @ 2123:c42aab22c2c0

plugin XEP-0054, quick frontend(app): various improvments: - memory.cache is now used - getAvatar and setAvatar has been renamed to avatarGet and avatarSet to follow new convention - getAvatar now return (optionally) full path, and may request vCard or only return avatar in cache - getAvatarFile has been removed as it is not needed anymore (avatarGet can return full path) - getCard has been removed from bridge as it was only used to request avatar - new internal method getBareOfFull return jid to use depending of the jid being part of a MUC or not - cache is now set per profile in client, instead of a general one for all profiles - thanks to the use of memory.cache, correct extension is now used in saved file, according to MIME type - fixed and better cache handling - a warning message is shown if given avatar hash differs from computed one - empty hash value is now in a constant, and ignored if received - QuickApp has been updated to follow new behaviour - Primitivus has been fixed (it was not declaring not using avatars correclty) - jp has been updated to follow new methods name
author Goffi <goffi@goffi.org>
date Sun, 15 Jan 2017 17:51:37 +0100
parents db5cda61740f
children 8b37a62336c3
line wrap: on
line diff
--- a/frontends/src/jp/cmd_avatar.py	Sun Jan 15 16:00:41 2017 +0100
+++ b/frontends/src/jp/cmd_avatar.py	Sun Jan 15 17:51:37 2017 +0100
@@ -46,7 +46,7 @@
             self.disp(_(u"file [{}] doesn't exist !").format(path), error=True)
             self.host.quit(1)
         path = os.path.abspath(path)
-        self.host.bridge.setAvatar(path, self.profile, callback=self._avatarCb, errback=self._avatarEb)
+        self.host.bridge.avatarSet(path, self.profile, callback=self._avatarCb, errback=self._avatarEb)
 
     def _avatarCb(self):
         self.disp(_("avatar has been set"), 1)
@@ -85,7 +85,7 @@
             import webbrowser
             webbrowser.open(path)
 
-    def _getAvatarCb(self, avatar_path):
+    def _avatarGetCb(self, avatar_path):
         if not avatar_path:
             self.disp(_(u"No avatar found."), 1)
             self.host.quit(C.EXIT_NOT_FOUND)
@@ -96,12 +96,12 @@
 
         self.host.quit()
 
-    def _getAvatarEb(self, failure_):
+    def _avatarGetEb(self, failure_):
         self.disp(_("error while getting avatar: {msg}").format(msg=failure_), error=True)
         self.host.quit(C.EXIT_ERROR)
 
     def start(self):
-        self.host.bridge.getAvatar(self.args.jid, self.profile, callback=self._getAvatarCb, errback=self._getAvatarEb)
+        self.host.bridge.avatarGet(self.args.jid, False, False, self.profile, callback=self._avatarGetCb, errback=self._avatarGetEb)
 
 
 class Avatar(base.CommandBase):