Commit graph

221 commits

Author SHA1 Message Date
Matthew Wild
918e8f51e8 mod_pubsub: Remove duplicate create_node command
Removed the one without error handling.
2025-01-14 12:26:14 +00:00
Kim Alvefur
f9731db67b mod_pubsub: Remove unused loop variable [luacheck] 2025-01-08 08:54:52 +01:00
Kim Alvefur
0fe28ddb09 mod_pubsub: Quiet down check for service admin
This produced a *lot* of noise, especially listing items.
2025-01-07 23:37:41 +01:00
Kim Alvefur
c900aab69e mod_pubsub: Limit node listing based on new ACL-aware metadata method
Ensures that nodes that one does not have metadata access to are hidden
from view.

This follows from the new ACL-aware method added in 3b357ab6b6eb.
2025-01-07 22:57:39 +01:00
Matthew Wild
a10a0140e5 mod_pubsub: Expand shell commands to include node/item management 2025-01-07 14:27:18 +00:00
Kim Alvefur
3b07918800 mod_pubsub: Pass metadata directly into form
Reduces duplication and need to edit in two places when adding another
metadata field.
2024-11-08 02:15:10 +01:00
Kim Alvefur
e32aba4c53 mod_pubsub: Use new metadata method
No longer bypasses access control to retrieve this config subset, which
is also explicitly named in the service config now.
2024-11-08 02:12:45 +01:00
Kim Alvefur
c175dc8265 mod_pubsub: Move precondition error wrangling out of util.pubsub
Removes dependency on util.error from util.pubsub which was only used
for this one special case.

Line count reduction!

Would be even nicer if templating could be done by util.error itself.
2024-10-29 14:56:02 +01:00
Kim Alvefur
ff05b0773d mod_pubsub: Allow passing additional error context
Sometimes it is useful to pass additional information along.
2024-10-27 15:23:45 +01:00
Kim Alvefur
9dd5775dce mod_pubsub: Use error registry
This is what util.error was made for!

This replaces the custom error stanza builder with common code in
util.stanza that knows enough about util.error and namespaced errors.

Some awkwardness remains in the way util.pubsub returns conflicting
form fields.
2024-10-27 15:18:24 +01:00
Kim Alvefur
eb612ac519 mod_pubsub: Check new role framework for node creation privileges
This enables granting regular users permission to create nodes via the
new roles framework. Previously this required either making everyone an
admin or writing a custom mod_pubsub variant with different permission
details.

Previous default behavior of only allowing creation by admin is kept as
to not give out unexpected permissions on upgrade, but could be
reevaluated at a later time.

Fixes #1324
2024-10-13 13:03:08 +02: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
fabcc21881 mod_pubsub: Ignore shadowed variable [luacheck] 2024-03-06 19:12:11 +01:00
Matthew Wild
7ad4c88432 mod_pubsub: Add shell commands to create and list nodes 2024-03-06 17:38:21 +00:00
Kim Alvefur
37ba63f50b mod_pubsub: Provide some node properties in summary template #1809
Gives some access to node details which are otherwise hard to determine
if you only see the plain text summary, since it is shared based on the
pubsub#type setting (or payload xmlns).
2023-11-22 22:35:44 +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
a8b0c56f65 plugins: Use get_option_enum where appropriate 2021-01-16 21:04:58 +01:00
Kim Alvefur
2b56e0473a Merge 0.12->trunk 2023-07-10 00:34:37 +02:00
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
98922d54b1 plugins: Prefix module imports with prosody namespace 2023-03-24 13:15:28 +01:00
Matthew Wild
2b72eb4211 mod_pubsub/pubsub.lib: Fix accidental name/var swap (thanks scansion) 2023-03-22 16:44:47 +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
Matthew Wild
d73714b4f4 Switch to a new role-based authorization framework, removing is_admin()
We began moving away from simple "is this user an admin?" permission checks
before 0.12, with the introduction of mod_authz_internal and the ability to
dynamically change the roles of individual users.

The approach in 0.12 still had various limitations however, and apart from
the introduction of roles other than "admin" and the ability to pull that info
from storage, not much actually changed.

This new framework shakes things up a lot, though aims to maintain the same
functionality and behaviour on the surface for a default Prosody
configuration. That is, if you don't take advantage of any of the new
features, you shouldn't notice any change.

The biggest change visible to developers is that usermanager.is_admin() (and
the auth provider is_admin() method) have been removed. Gone. Completely.

Permission checks should now be performed using a new module API method:

  module:may(action_name, context)

This method accepts an action name, followed by either a JID (string) or
(preferably) a table containing 'origin'/'session' and 'stanza' fields (e.g.
the standard object passed to most events). It will return true if the action
should be permitted, or false/nil otherwise.

Modules should no longer perform permission checks based on the role name.
E.g. a lot of code previously checked if the user's role was prosody:admin
before permitting some action. Since many roles might now exist with similar
permissions, and the permissions of prosody:admin may be redefined
dynamically, it is no longer suitable to use this method for permission
checks. Use module:may().

If you start an action name with ':' (recommended) then the current module's
name will automatically be used as a prefix.

To define a new permission, use the new module API:

  module:default_permission(role_name, action_name)
  module:default_permissions(role_name, { action_name[, action_name...] })

This grants the specified role permission to execute the named action(s) by
default. This may be overridden via other mechanisms external to your module.

The built-in roles that developers should use are:

 - prosody:user (normal user)
 - prosody:admin (host admin)
 - prosody:operator (global admin)

The new prosody:operator role is intended for server-wide actions (such as
shutting down Prosody).

Finally, all usage of is_admin() in modules has been fixed by this commit.
Some of these changes were trickier than others, but no change is expected to
break existing deployments.

EXCEPT: mod_auth_ldap no longer supports the ldap_admin_filter option. It's
very possible nobody is using this, but if someone is then we can later update
it to pull roles from LDAP somehow.
2022-06-15 12:15:01 +01:00
Kim Alvefur
8959868a28 util.stanza: Add method for extracting a single attribute value
Sometimes you only care about a single attribute, but the child tag
itself may be optional, leading to needing `tag and tag.attr.foo` or
`stanza:find("tag@foo")`.

The `:find()` method is fairly complex, so avoiding it for this kind of
simpler use case is a win.
2022-08-17 19:04:30 +02:00
Kim Alvefur
5251c9b686 compat: Remove handling of Lua 5.1 location of 'unpack' function 2022-07-11 19:07:38 +02: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