Commit graph

197 commits

Author SHA1 Message Date
Kim Alvefur
c82f504f6a mod_pubsub: Send correct jid attribute in disco#items
Fixes use in PEP where the JID does not equal the bare domain.
2023-07-08 18:23:40 +02:00
Matthew Wild
ea9ea67911 mod_pubsub: Don't attempt to use server actor as publisher (fixes #1723) 2022-03-21 12:36:20 +00:00
Kim Alvefur
b0e565598a mod_pubsub: Allow configuring summary templates
Enables generation of summaries for more than Atom without additional
modules.
2022-01-24 23:06:45 +01:00
Kim Alvefur
c8ea4743f2 mod_pubsub: Use the util.xtemplate to render Atom summary 2022-01-24 23:04:38 +01:00
Kim Alvefur
55da054c9b mod_pubsub: Use the 'pubsub#type' setting to pick summary generator
Allows using different ones even if multiple semantically different
formats share the same root element xmlns, e.g. generic Atom and
XEP-0277 entries.
2022-01-24 23:05:26 +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
f2f78d4bf9 mod_pubsub: Allow specifying the JID of the pubsub service
This allows overriding it in cases where it is not equal to module.host,
like say, in mod_pep
2021-12-07 13:03:55 +01:00
Kim Alvefur
e08d82a077 mod_pubsub: Fix traceback in disco of non-existent node (thanks Martin)
In this case `ret` is a table not containing the node, which makes
pubsub_error_reply() try to get an error template with that `ret` table
as index, which returns a `nil` then passed to table.unpack, which in
turn throws the error.
2021-11-13 22:12:39 +01:00
Kim Alvefur
af11afa9c6 mod_pubsub: Return proper errors for disco queries on nodes
Previously this would return item-not-found, even when you could see the
node in disco#items.
2021-11-01 17:59:46 +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
8b769c373d mod_pubsub: Prevent max_items from being set to zero
Disable persistence instead if no items should be persisted.

XEP-0060 is not entirely clear on what either of those option really
mean.
2021-10-20 17:31:24 +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
69600b88eb mod_pubsub: Advertise support for 'max' as value for max_items
Ref #1643
2021-09-15 15:34:57 +02:00
Matthew Wild
bee45656d7 mod_pubsub/pubsub.lib: Export config forms for use by other modules
In this case I need them for 227 import/export.
2021-09-11 13:59:35 +01:00
Kim Alvefur
3b0eb07e5d mod_pubsub: Move reversal of item order in <items>
Examples in XEP-0060 suggest that items should be listed in
chronological order, but we get them from the archive in reverse
order.

However when requesting specific items by id the results keep that
order and we don't want to flip it again.

At some point it would likely be best to use the archive API directly
instead of this util.cache-compatible wrapper.
2021-09-05 18:42:44 +02:00
Kim Alvefur
22060f15cc mod_pubsub: Add support for limiting result size #1608 2021-09-05 16:43:41 +02:00
Kim Alvefur
b2327f5d4c mod_pubsub: Update callbacks on reload to more completely refresh config
This would also release any resources held via references from these
callbacks.

I'm not sure why we don't just re-new() the whole thing.

Related to #1382
2021-07-29 17:37:27 +02:00
Kim Alvefur
9ced42c9fb mod_pubsub: Update configuration on reload (fixes #1382)
Because of the way the previous pubsub service is carried access module
reloads, it would retain the configuration options with their previous
values from when the service was first created.
2021-07-25 18:58:25 +02:00
Kim Alvefur
7711193903 mod_pubsub: Silence warning about 'service' as argument [luacheck]
Maybe the 'service' in the outer scope should be moved down to minimize
overlap with other functions that receive the same service as argument?
2021-07-25 16:33:19 +02:00
Kim Alvefur
dfed446a5a util.pubsub: Signal that 'persistent-items' is unsupported when disabled
XEP-0060 says that this the way to indicate that 'persistent-items' is
unsupported, but doesn't explicitly say if it being disabled in the node
configuration also counts as unsupported.
2021-07-22 19:53:21 +02:00
Kim Alvefur
8116134258 mod_pubsub: Explicitly enable persistence by default to preserve behavior
Since nodes were always persistent according to the XEP-0060 definition.
Whether data is stored in memory or on disk was not what this setting
was meant for.
2021-07-21 23:35:08 +02:00
Kim Alvefur
c5cb457793 mod_pubsub: Remove publisher field when not exposing publisher
The publisher is already there on the item when the broadcaster gets it,
so it needs to do the opposite thing.
2021-07-25 14:23:35 +02:00
Kim Alvefur
4dc5192c99 mod_pubsub: Normalize 'publisher' JID
All the XEP-0060 examples have the publisher attribute set to a bare
JID, but the text does allow it to be the full JID.

Since mod_pubsub is more likely used for open nodes that anyone can
subscribe to it makes sense to not leak the full JIDs. This is also
disabled by defaults.

In mod_pep on the other hand it might make sense to have the full JID
since that data is more likely to be broadcast to contacts which are
already somewhat trusted.
2021-07-25 14:01:45 +02:00
Kim Alvefur
8e27e5311a mod_pubsub: Respect 'expose publisher' setting in item retrieval 2021-07-25 13:52:27 +02:00
Kim Alvefur
23dbdae2aa mod_pubsub: Fix inclusion of publisher (fixes #1399) 2019-05-01 22:33:22 +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
90e4a09661 mod_pubsub: Include <pubsub> with unsubscribe reply
XEP-0060 6.2.2

This is a MAY but it makes it nice and symmetric with the subscription
response. Reduces the need to remember which node you unsubscribed from.

Explicit > implicit etc.
2021-03-15 19:04:08 +01:00
Kim Alvefur
fd7e6d3731 Merge 0.11->trunk 2020-11-06 16:52:38 +01:00
Kim Alvefur
63f44f3640 mod_pubsub: Fix notification stanza type setting (fixes #1605) 2020-11-06 13:49:40 +01:00
Kim Alvefur
238b2bfc1c Merge 0.11->trunk 2020-11-05 22:31:25 +01:00
Kim Alvefur
ce3e3808f5 mod_pubsub: Lower priority of default <body> generator
in order to avoid conflict with a handler at the default (0) priority,
making it easier to write your own formatting in plugins.

this follows the common pattern of default modules having lower priority
2020-11-05 22:27:17 +01:00
Kim Alvefur
7af694f510 mod_pubsub: Comment on itemstore type 2020-10-25 15:23:36 +01:00
Kim Alvefur
c34989f57e mod_pubsub: Clarify kind of item store created
Planning to make this configurable, so good to distinguish it from
future backends.
2020-10-25 15:21:34 +01:00
Kim Alvefur
3133ff234a mod_pubsub: Don't set store as metatable
'archive' is not a metatable here, so this has no effect. Remove since
apparently nothing depends on this.
2020-10-25 15:20:14 +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
77a9f61e12 Merge 0.11->trunk 2020-02-27 20:05:47 +01:00
Kim Alvefur
9861fc79f1 mod_pubsub: Ignore an unused variable [luacheck] 2019-12-23 22:28:42 +01:00
Matthew Wild
b5b9b70c88 util.pubsub, pubsub.lib and tests: Add text to precondition-not-met error (fixes #1455) 2019-10-27 14:45:57 +00:00
Emmanuel Gil Peyrot
01e7398877 mod_pubsub: Remove the unwanted check for @notify on <purge/>.
This most likely was copied from the handling of <retract/>, where it actually
is required by the spec (XEP-0060 §7.2.2.1), but this attribute doesn’t exist
for purge.
2019-09-28 20:00:39 +02:00
Kim Alvefur
4673e4897b mod_pubsub: Simplify configuration for node data (see #1302) 2019-02-22 07:33:23 +01:00
Kim Alvefur
6d84bd44ba mod_pubsub: Support requests for multiple items (fixes #1305) 2019-01-28 01:41:42 +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
7a66b6374c mod_pubsub: Exclude value of FORM_TYPE from stored data 2018-09-07 02:25:39 +02:00
Kim Alvefur
478a8be6b1 mod_pubsub: Fix dataforms error handling
The :data method returns the table holding parsed values always. The
second return value is a table in case some fields had problems.
2018-09-01 21:18:30 +02:00
Kim Alvefur
a6d4c6c8f6 mod_pubsub: Use dataforms validation to specify that max_items is an integer 2018-09-01 03:02:44 +02:00
Kim Alvefur
5c0b58cddf mod_pubsub: Use field mapping in util.dataforms 2018-09-01 03:01:55 +02:00
Kim Alvefur
8957ef2f7d mod_pubsub: Preserve current subscription options if given a partial form 2018-08-31 23:54:13 +02:00
Kim Alvefur
6b22fae603 mod_pubsub: Fix summary generation for Atom entries to use the correct field 2018-08-31 21:57:04 +02:00
Kim Alvefur
07d70a4d27 mod_pubsub: Add missing default value for deliver_payloads 2018-08-19 07:42:07 +02:00
Kim Alvefur
74cb841d99 mod_pubsub: Fix boolean value in form 2018-08-19 07:41:26 +02:00