Commit graph

154 commits

Author SHA1 Message Date
Matthew Wild
25b7ac8ece mod_pep: Support for node/item management commands 2025-01-07 14:27:34 +00:00
Kim Alvefur
83ee7e5739 mod_pep: Implement 'roster' (group) access_model
Allows e.g. restricting your vcard4 to only family or similar.

Notes: This does not include roster groups in the configuration form,
so the client will have to get them from the actual roster.
2023-12-03 23:19:27 +01:00
Kim Alvefur
71ad48095d plugins: Use integer config API with interval specification where sensible
Many of these fall into a few categories:
- util.cache size, must be >= 1
- byte or item counts that logically can't be negative
- port numbers that should be in 1..0xffff
2023-07-17 01:38:54 +02:00
Kim Alvefur
98922d54b1 plugins: Prefix module imports with prosody namespace 2023-03-24 13:15:28 +01:00
Matthew Wild
a0ac04c72b mod_pep: Pass node/service objects to broadcaster when resending last item
This gives the broadcaster access to the node configuration, which is now
important for itemreply. It probably also fixes a bug with the notify_*
node config options?
2023-03-22 16:46:39 +00:00
Matthew Wild
5f98d0cc23 mod_pubsub, mod_pep: Support per-node configurable inclusion of publisher
This matches ejabberd's behaviour, using the 'pubsub#itemreply' config option.

Although the current definition of this option in the specification is not
as clear as it could be, I think matching what existing deployments do is the
best option to resolve the ambiguity and reduce fragmentation.

We should update the spec to be clearer about how to use and interpret this
option.

The 'expose_publisher' option for mod_pubsub is now an override (always expose
or never expose). If unset, it will use the per-node config (which defaults to
not exposing).

Thanks to Link Mauve, edhelas and goffi for sparking this feature.
2023-03-22 11:39:19 +00:00
Kim Alvefur
52016b89b1 mod_pep: Fix typo in comment [codespell] 2022-02-04 16:40:23 +01:00
Kim Alvefur
f1b61294fc mod_pep: Clarify purpose of fallback service
Extra-extra obvious that no interaction with this should lead to
persisted changes
2022-02-03 10:02:26 +01:00
Kim Alvefur
e4344283cd mod_pep: Correct initialization of fallback service
I'm not sure what went wrong here, copy-paste mistake?
Doesn't matter as long as nobody can create nodes on this service.
2022-02-03 09:46:19 +01:00
Kim Alvefur
8a97d634a4 util.pubsub: Fix item store resize to "max"
Previously this would end up passing the "max" directly to the
underlying storage.
2022-01-06 01:18:35 +01:00
Kim Alvefur
acaaefe143 Merge 0.11->trunk 2021-12-20 23:12:08 +01:00
Kim Alvefur
f7527cc4f1 mod_pep: Set correct jid attr on node disco items
It was previously set to the hostname, not the users bare JID which
would be correct.
2021-12-07 13:04:52 +01:00
Kim Alvefur
ca08584d74 mod_pep: Wipe pubsub service on user deletion
Data is already wiped from storage, but this ensures everything is
properly unsubscribed, possibly with notifications etc.

Clears recipient cache as well, since it is no longer relevant.
2021-11-04 01:00:06 +01:00
Kim Alvefur
db0e630ad7 mod_pep: Prevent creation of services for non-existent users
Using a dedicated service should give identical behavior, except for a
possible timing difference in the user existence lookup.
2021-11-04 00:55:59 +01:00
Kim Alvefur
4a89e829d4 mod_pep: Limit possible growth of node subscription info 2021-11-04 00:36:41 +01:00
Kim Alvefur
cc03265206 mod_pep: Limit possible growth of number of pubsub services 2021-11-04 00:35:44 +01:00
Kim Alvefur
a4491e8bd9 mod_pep: Don't pass pubsub services across reloads
Ensures configuration is refreshed, releases some memory.
2021-11-04 00:33:58 +01:00
Kim Alvefur
0c6f17043f mod_pep: Remove obsolete node restoration code (now done by util.pubsub)
Originally added in 202b9951b037 but util.pubsub gained a better method
in 6c2c2fc4b8dd since then, which mod_pep uses since 9194431b6447 which
should have deleted this.

All these :create calls would have failed with a 'conflict' error, since
the nodes had already been created. This was never noticed because of
missing error handling.

Also note that this code did not restore node configuration.
2021-05-16 16:14:23 +02:00
Kim Alvefur
f01247ec56 mod_pep: Advertise base pubsub feature (fixes #1632)
Noticed while discussing feature discovery in Gajim
Thanks lovetox
2021-02-15 16:29:13 +01:00
Kim Alvefur
042b514235 mod_pubsub, mod_pep: Ensure correct number of children of <item/> (fixes #1496) 2020-02-27 20:01:54 +01:00
Kim Alvefur
5016e66640 mod_pubsub,mod_pep: Advertise maximum number of items via XEP-0122
Clients would generally be using the "max" symbol instead of discovering
this, but this also gets us validation and earlier rejection of out of
bounds values.
2021-10-20 17:32:34 +02:00
Kim Alvefur
4b05d0f240 mod_pubsub,mod_pep: Implement 'send_last_published_item' option #1436
Default left as 'never' in mod_pubsub to preserve the previous behavior.
Unclear if this is desirable, but can always be changed later.

In mod_pep this allows turning off the automatic resending of most
recent item.
2021-10-19 18:11:50 +02:00
Kim Alvefur
5d24efb239 mod_pep: Remove now unused util.cache import 2021-07-25 16:31:15 +02:00
Kim Alvefur
1603e003b1 mod_pep: Remove use of RLU cache when persist_items was set to false
This behavior came from some confusion over the meaning of
persist_items. The correct behavior is that items are only stored when
it is set to true. When set to false, the service becomes a "pure"
publish-subscribe service, where items are forgotten immediately after
broadcasting.
2021-07-21 23:02:25 +02:00
Kim Alvefur
c880dee2af mod_pubsub,mod_pep: Support "max" as 'pubsub#max_items'
Fixes #1643

API change: The argument to archive_itemstore() changes type to integer
2021-06-09 15:58:49 +02:00
Kim Alvefur
f650ac5537 Merge 0.11->trunk 2021-05-16 19:05:20 +02:00
Kim Alvefur
8d7ae33eef Merge 0.11->trunk 2021-02-15 22:30:28 +01:00
Kim Alvefur
77a9f61e12 Merge 0.11->trunk 2020-02-27 20:05:47 +01:00
Kim Alvefur
7ebf9bf1bf Merge 0.11->trunk 2019-12-23 20:57:10 +01:00
Kim Alvefur
faa6cbefaf mod_pep: Handle presence subscriptions in filter (fixes #1372)
Take two on 045209b41b3a
2019-06-10 13:57:09 +02:00
Kim Alvefur
1cc4ec5d80 mod_pep: Revert 045209b41b3a, caused a regression
Adding in all presence based subscriptions in the broadcaster caused
resend_last_item() to unintentionally send out more notifications than
it should have.
2019-06-10 12:58:00 +02:00
Kim Alvefur
cabd5216b4 mod_pep: Handle presence based subscription outside of util.pubsub (fixes #1372)
Subscriptions were updated for each incoming presence stanza from
contacts. Each subscription change triggered a configuration save, which
would filter out the presence based subscriptions and usually end up
replacing the existing data with identical data. With many subscribed
nodes this adds up to a fair bit of IO bound work that is avoided by
keeping them separate.
2019-05-30 15:16:56 +02:00
Kim Alvefur
e289d31177 mod_pep: Simplify configuration for node data (fixes #1320) 2019-02-22 07:35:44 +01:00
Kim Alvefur
e6400cd0d8 pubsub: Set pubsub#title as name attribute in disco#items (fixes #1226) 2018-10-30 18:20:54 +01:00
Kim Alvefur
3d06d7c309 mod_pep: Add automatic subscriptions on node creation (fixes #1222)
Replaces automatic node creation on subscription, since this casues
problems when trying to keep nodes private or other specific settings.
2018-10-20 20:22:55 +02:00
Kim Alvefur
fd0c8253c6 mod_pep: Add PEP service owners username in configuration to ease identification 2018-10-20 20:12:53 +02:00
Kim Alvefur
3ad1358ad5 mod_pep: Remove use of recipients table for signaling pending disco#items
It stored the caps hash as a string in the recipients table while
waiting for a disco#info response, then replaces it with the set of
nodes that had +notify.

This mixing of types is bad, so here it gets removed.

This can be improved once an IQ tracking API (#714) is added.
2018-10-23 22:54:15 +02:00
Kim Alvefur
831dceeba3 mod_pep: Add all pubsub service objects to item API in order to behave across reloads 2018-10-20 20:23:23 +02:00
Matthew Wild
61efe5330e mod_pep: Simplify code 2018-08-18 14:38:18 +01:00
Kim Alvefur
3353afd007 mod_pep: Remove feature for persistence already added elsewere
This is added in pubsub.lib
2018-08-18 14:31:01 +02:00
Kim Alvefur
440b7aee17 mod_pep: Remove already included access model feature
access-* is added in pubsub.lib based on node defaults
2018-08-18 14:29:13 +02:00
Kim Alvefur
b7e3b3d325 mod_pep: Respect setting for whether to include payload in notifications 2018-08-16 15:35:46 +02:00
Kim Alvefur
8121e242b0 mod_pep: Respect settings for which kinds of notifications to send 2018-08-16 15:34:58 +02:00
Kim Alvefur
98c9778cc7 util.pubsub: Pass "retract" as the type of such broadcasts
This moves some XEP-0060 awkwardness out of util.pubsub and into mod_pubsub

A retraction is broadcast in an <items> container, whereas most other
kinds of broadcasts are in a container with a name matching the 'kind'
attribute.
2018-08-16 14:32:21 +02:00
Matthew Wild
7df3613768 mod_pep, util.pubsub: Rename restricted->outcast, none->member and add new 'none' affiliation to better match XEP-0060 2018-08-08 23:20:07 +01:00
Matthew Wild
ff222c379d mod_pubsub, mod_pep, util.pubsub: Move capability definitions into util.pubsub to avoid duplication 2018-08-08 20:48:02 +01:00
Matthew Wild
df4f835fc8 mod_pep: Add comment explaining 'none' affiliation 2018-08-08 20:40:44 +01:00
Matthew Wild
8d92ff2506 mod_pep: Remove "subscriber" affiliation in favour of "none"
It ended up with identical capabilities to "none", and isn't a standard
affiliation defined by XEP-0060 anyway.
2018-08-08 20:38:10 +01:00
Kim Alvefur
6e0fd20afd mod_pep: Loosen restrictions on the "none" affiliation
This allows non-contacts access to data in nodes with the "open" access
model.

Thanks gerald
2018-08-08 21:03:37 +02:00
Kim Alvefur
edf02644be mod_pep: Change default affiliation in the "presence" access model to "restricted" for non-contacts
This lets us loosen the restrictions of the "none" affiliation, so that
the "open" access model allows anyone basic access.
2018-08-08 20:55:14 +02:00