Kim Alvefur
98922d54b1
plugins: Prefix module imports with prosody namespace
2023-03-24 13:15:28 +01:00
Emmanuel Gil Peyrot
303fd5b4ee
mod_vcard_legacy: Also respect avatar:metadata access restrictions
...
Zash notes this seems to have been lost in 1b657605ea29, probably by
mistake.
2021-11-25 18:13:43 +01:00
Kim Alvefur
a78297bb6c
mod_vcard_legacy: Fix publishing vcard without avatar
2020-06-01 17:55:01 +02:00
Kim Alvefur
cd40d2a630
mod_vcard_legacy: Remove semi-broken support for multiple avatars
...
Nobody does this. If someone wants to they should go use the PEP method
directly instead.
Additionally, this got in the way of doing multiple avatars The PEP Way,
since it treated each 'data' as a distinct avatar with an optional
corresponding 'metadata', which is not how it works.
2020-06-01 17:37:54 +02:00
Kim Alvefur
e660a65d28
mod_vcard_legacy: Ignore an unused variable [luacheck]
2019-12-23 21:55:41 +01:00
Kim Alvefur
43151af529
Merge 0.11->trunk
2019-09-21 16:50:29 +02:00
Kim Alvefur
e180b392eb
mod_vcard_legacy: Don't owerwrite empty photo elements ( fixes #1432 )
2019-09-21 16:29:16 +02:00
Kim Alvefur
eeb98faa3a
mod_vcard_legacy: Advertise lack of avatar correctly ( fixes #1431 ) (thanks lovetox)
2019-09-21 15:20:50 +02:00
Kim Alvefur
d0d8bf9237
mod_vcard_legacy: Handle partial migration
...
Eg in case the user already published an avatar, migrate only the vcard,
and vice versa.
2019-01-26 13:32:26 +01:00
Kim Alvefur
1fe3e2754a
mod_vcard_legacy: Allow disabling vcard conversion
...
Once everyone has been migrated it might be nice to skip these checks
2019-01-25 23:31:02 +01:00
Kim Alvefur
22bdd21fc1
mod_vcard_legacy: Don't overwrite existing PEP data
2019-01-25 23:27:23 +01:00
Kim Alvefur
55490159fd
mod_vcard_legacy: Add some missing semicolons
2019-01-25 23:21:13 +01:00
Kim Alvefur
761731222d
mod_vcard_legacy: Use PEP nickname if vcard4 data is unavailable
...
Last remaining nice feature from mod_profile.
Allows setting eg nickname and avatar as completely public while
restricting private details in vcard4 to only contacts.
2019-08-22 22:23:04 +02:00
Kim Alvefur
f7c48ad3bc
mod_vcard_legacy: Upgrade vcard-temp on login ( fixes #1289 )
2019-01-10 15:39:02 +01:00
Kim Alvefur
cc4a160cdb
mod_vcard_legacy: Adapt node defaults to number of avatars
2019-01-11 09:20:48 +01:00
Kim Alvefur
47887761c6
mod_vcard_legacy: Factor out conversion from vcard-temp to 4
2019-01-11 09:20:45 +01:00
Kim Alvefur
41656354bf
mod_vcard_legacy: Limit injection of XEP-0153 to normal presence ( fixes #1252 )
2018-12-01 00:11:49 +01:00
Kim Alvefur
fabd896892
mod_vcard_legacy: Complete roundtrip support for ORG/ORGNAME
...
vcard-temp -> vcard4 worked previously but not the other way around
2019-08-02 21:57:57 +02:00
Kim Alvefur
03acf1ffe1
mod_vcard_legacy: Add support for JABBERID - impp/uri conversion
2019-01-19 22:01:54 +01:00
Kim Alvefur
376f1e9b65
mod_vcard_legacy: Pass node defaults to publish instead of create
...
The create calls were introduced in 62fa766d8f3 but work on this started
a while before 038446c50630 allowed passing the _defaults_only flag to
publish.
2018-10-20 14:29:20 +02:00
Kim Alvefur
c98a0e56bf
mod_vcard_legacy: Create nodes with open access ( fixes #1221 )
...
Less drastic change from mod_vcard where everything is always public.
This allows users to configure nodes without needing to for the old
behaviour.
Thanks to 038446c50630 users may still override this.
Due to #1222 this may still not apply if the node has already been
created by an automatic subscription
2018-10-18 19:07:01 +02:00
Kim Alvefur
86444b0303
mod_vcard_legacy: Add some notes
2018-09-09 17:47:47 +02:00
Kim Alvefur
f9845d48c5
mod_vcard_legacy: Fix EXTVAL conversion (thanks pep.)
...
Good thing uri and url doesn't look similar at all!
2018-09-09 02:43:45 +02:00
Kim Alvefur
406d1f46ab
mod_vcard_legacy: Fix uppercase tag name (thanks pep.)
...
Must have slipped on my shift key
2018-09-09 02:14:44 +02:00
Kim Alvefur
3d0909ee7d
mod_vcard_legacy: Include avatar data even if metadata can't be loaded
...
Normally both nodes should have the same configuration and matching
items, but we can't depend on it without having some code that enforces
it, which does not exist at the time of this commit.
Including the avatar itself should be prioritised. The image format can
be derived from magic bytes.
2018-09-07 01:08:27 +02:00
Kim Alvefur
7032c73db0
mod_vcard_legacy: Return old vcard if neither vcard4 or avatar available
2018-09-07 01:06:27 +02:00
Kim Alvefur
5823af024e
mod_vcard_legacy: Handle avatar without vcard4
...
Since vcards are just avatar containers in many modern clients, aborting
in case of no vcard4 data is not optimal.
The upgrade mechanism needs further tweaks.
2018-09-07 01:04:53 +02:00
Kim Alvefur
36d87d70cc
mod_vcard_legacy: Rename variable for consistency
...
The variable holding the PEP service was `pep_service`, except in the
XEP-0153 section.
2018-09-07 00:36:31 +02:00
Kim Alvefur
93c99726e3
mod_vcard_legacy: Return error in case saving avatar fails
2018-09-06 23:51:03 +02:00
Kim Alvefur
d8c32ef0a3
mod_vcard_legacy: Factor out error handling into a function
...
This is a lite version of pubsub_error_reply() in mod_pubsub
2018-09-06 23:33:44 +02:00
Kim Alvefur
ebfed28595
mod_vcard_legacy: Use correct method to clear avatar data
2018-09-06 23:05:38 +02:00
Kim Alvefur
7e0d897777
mod_vcard_legacy: Announce feature on bare JID per XEP
2018-09-01 22:06:25 +02:00
Kim Alvefur
3d17f4e04c
mod_vcard_legacy: Clear avatars on setting a vcard-temp
...
Otherwise it is not possible to remove avatars
2018-09-01 18:10:33 +02:00
Kim Alvefur
c8924fdfe4
mod_vcard_legacy: Support external avatars
2018-09-01 23:43:19 +02:00
Kim Alvefur
ac72eeee52
mod_vcard_legacy: Handle incomplete avatar info
2018-09-01 23:42:33 +02:00
Kim Alvefur
9071841936
mod_vcard_legacy: Respond with old vcard
2018-08-21 17:16:30 +02:00
Kim Alvefur
41e85fb7d3
mod_vcard_legacy: Respond to attempts to set the legacy vcard-temp
2018-08-21 17:16:27 +02:00
Kim Alvefur
ab3ebce084
mod_vcard_legacy: Add support for address field
2018-08-21 16:34:46 +02:00
Kim Alvefur
046c7917f2
mod_vcard_legacy: Include avatar data from XEP-0084 PEP node
2018-08-20 09:18:21 +02:00
Kim Alvefur
a28e20077f
mod_vcard_legacy: Add translation of telephone field
2018-09-01 23:46:19 +02:00
Kim Alvefur
d1258d3a17
mod_vcard_legacy: Add translation of email field
2018-09-01 23:45:58 +02:00
Kim Alvefur
4b787a63a5
mod_vcard_legacy: Attach vcard-temp avatar hash to outgoing presence
2018-08-20 07:36:03 +02:00
Kim Alvefur
512f69098b
mod_vcard_legacy: Responds to vcard-temp queries with translated vcard4 data
2018-08-21 16:40:40 +02:00