comparison sat/core/constants.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 163014f09bf4
children 1352564e0202
comparison
equal deleted inserted replaced
3253:1af840e84af7 3254:6cf4bd6972c2
377 IQ_SET = '/iq[@type="set"]' 377 IQ_SET = '/iq[@type="set"]'
378 ENV_PREFIX = "SAT_" # Prefix used for environment variables 378 ENV_PREFIX = "SAT_" # Prefix used for environment variables
379 IGNORE = "ignore" 379 IGNORE = "ignore"
380 NO_LIMIT = -1 # used in bridge when a integer value is expected 380 NO_LIMIT = -1 # used in bridge when a integer value is expected
381 DEFAULT_MAX_AGE = 1209600 # default max age of cached files, in seconds 381 DEFAULT_MAX_AGE = 1209600 # default max age of cached files, in seconds
382 HASH_SHA1_EMPTY = "da39a3ee5e6b4b0d3255bfef95601890afd80709"
383 STANZA_NAMES = ("iq", "message", "presence") 382 STANZA_NAMES = ("iq", "message", "presence")
384 383
385 # Stream Hooks 384 # Stream Hooks
386 STREAM_HOOK_SEND = "send" 385 STREAM_HOOK_SEND = "send"
387 STREAM_HOOK_RECEIVE = "receive" 386 STREAM_HOOK_RECEIVE = "receive"