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
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
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
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
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
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
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
3ecb639c71
mod_pubsub: Eliminate dead code
...
`data` is a stanza and always truthy
2019-07-25 12:26:07 +02:00
Kim Alvefur
ad90995e3f
mod_pubsub: Expose pubsub#access_model and pubsub#publish_model ( fixes #1387 )
2019-07-06 17:47:06 +02:00
Kim Alvefur
6d84bd44ba
mod_pubsub: Support requests for multiple items ( fixes #1305 )
2019-01-28 01:41:42 +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
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
Kim Alvefur
cadba32a24
mod_pubsub: Add a semicolon for consistency
2018-08-19 07:39:49 +02:00
Matthew Wild
512d844d91
util.pubsub, pubsub.lib: Improve error on attempt to publish invalid item
2018-08-18 15:26:35 +01:00
Matthew Wild
23cfd1b4d0
Pubsub: Add tests for :get_last_item() and fix for non-persistent nodes
2018-08-18 15:10:41 +01:00
Matthew Wild
716c68f983
pubsub.lib, util.pubsub: Move precondition checks to util.pubsub
2018-08-18 14:06:56 +01:00
Kim Alvefur
c6b4e592cf
mod_pubsub: Advertise support for subscription-options
...
Initial support was added in d614003a82c1
2018-08-18 14:38:49 +02:00
Kim Alvefur
0eed3a65c4
mod_pubsub: Advertise support for node meta-data
...
Node metadata in disco initially added in b6cb0a8f75b1
2018-08-18 14:32:03 +02:00
Kim Alvefur
533cefaaf1
mod_pubsub: Add support for thin notifications (without the full payload)
2018-08-16 15:20:29 +02:00
Kim Alvefur
b665028854
mod_pubsub: Use the correct form field
2018-08-16 15:07:28 +02:00
Kim Alvefur
2bbecd6d17
mod_pubsub: Specify defaults for notification settings
2018-08-16 15:05:01 +02:00
Kim Alvefur
997025dc39
mod_pubsub: Make notification of item retraction configurable
2018-08-16 14:44:09 +02:00
Kim Alvefur
fe1c3488eb
mod_pubsub: Make notification of node deletion configurable
2018-08-16 14:42:36 +02:00
Kim Alvefur
18f25e3b3f
mod_pubsub: Add support for "quiet nodes" (disabling notifications)
2018-08-16 14:49:42 +02:00
Kim Alvefur
ed8c19ee7a
mod_pubsub: Add payload type metadata field
2018-08-13 20:44:01 +02:00
Jonas Wielicki
2fde1f7e5e
pubsub.lib: fix more form fields
2018-08-06 17:16:42 +02:00
Kim Alvefur
3adccdd08c
Merge jonasw->trunk
2018-08-06 16:58:21 +02:00
Jonas Wielicki
4d905e1491
pubsub.lib: correctly emit data form fields
2018-08-06 16:27:05 +02:00
Jonas Wielicki
56b0cd35c6
pubsub.lib: auto-create node with publish-options if autocreation is enabled
2018-08-05 11:44:49 +02:00
Jonas Wielicki
3c1fedd6d7
pubsub.lib: ignore FORM_TYPE field in config_from_xep0060
2018-08-05 11:37:47 +02:00
Kim Alvefur
9c75dbe8a8
mod_pubsub: Rename variable subscription options form to improve readability
...
"options_form" ... options for what?
2018-08-05 02:01:58 +02:00
Matthew Wild
e657c53e5a
pubsub.lib: Enable publish-options unconditionally
2018-08-06 11:25:31 +01:00