comparison sat_frontends/jp/cmd_event.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 81c8910db91f
comparison
equal deleted inserted replaced
3253:1af840e84af7 3254:6cf4bd6972c2
16 16
17 # You should have received a copy of the GNU Affero General Public License 17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. 18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 19
20 20
21 from . import base 21 from dateutil import parser as du_parser
22 import calendar
23 import time
22 from sat.core.i18n import _ 24 from sat.core.i18n import _
23 from sat.tools.common.ansi import ANSI as A 25 from sat.tools.common.ansi import ANSI as A
24 from sat_frontends.jp.constants import Const as C 26 from sat_frontends.jp.constants import Const as C
25 from sat_frontends.jp import common 27 from sat_frontends.jp import common
26 from dateutil import parser as du_parser 28 from sat.tools.common import data_format
27 import calendar 29 from . import base
28 import time
29 30
30 __commands__ = ["Event"] 31 __commands__ = ["Event"]
31 32
32 OUTPUT_OPT_TABLE = "table" 33 OUTPUT_OPT_TABLE = "table"
33 34
441 # we replace empty dicts for existing people with R.S.V.P. data 442 # we replace empty dicts for existing people with R.S.V.P. data
442 prefilled.update(event_data) 443 prefilled.update(event_data)
443 444
444 # we get nicknames for everybody, make it easier for organisers 445 # we get nicknames for everybody, make it easier for organisers
445 for jid_, data in prefilled.items(): 446 for jid_, data in prefilled.items():
446 id_data = await self.host.bridge.identityGet(jid_, self.profile) 447 id_data = await self.host.bridge.identityGet(jid_, [], True, self.profile)
447 data["nick"] = id_data.get("nick", "") 448 id_data = data_format.deserialise(id_data)
449 data["nick"] = id_data['nicknames'][0]
448 450
449 await self.output(prefilled) 451 await self.output(prefilled)
450 self.host.quit() 452 self.host.quit()
451 453
452 454