Commit graph

97 commits

Author SHA1 Message Date
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
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
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
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
98922d54b1 plugins: Prefix module imports with prosody namespace 2023-03-24 13:15:28 +01: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
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
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
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
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
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
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
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
4673e4897b mod_pubsub: Simplify configuration for node data (see #1302) 2019-02-22 07:33:23 +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
6b22fae603 mod_pubsub: Fix summary generation for Atom entries to use the correct field 2018-08-31 21:57:04 +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
8d3bfff0c2 mod_pubsub: Only attach publisher on normal "item" broadcasts
The 'publisher' is only on <item> in the schema.
2018-08-16 15:18:29 +02:00
Kim Alvefur
1e2b0d97f0 mod_pubsub: Prepare to support turning notifications off for each kind of broadcast 2018-08-16 14:47:30 +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
ff222c379d mod_pubsub, mod_pep, util.pubsub: Move capability definitions into util.pubsub to avoid duplication 2018-08-08 20:48:02 +01:00
Kim Alvefur
31443e5e2e mod_pubsub, mod_pep: The "restricted" affiliation should be allowed to be unsubscribed but nothing else
Can't revoke their subscriptions on change of access model otherwise
2018-08-06 18:33:33 +02:00
Kim Alvefur
9c54f104f1 mod_pubsub: Add 'get_configuration' capability to relevant affiliations
Like ca5228a7d907 did for mod_pep

Thanks pep.
2018-08-05 19:12:29 +02:00
Kim Alvefur
abeade9213 mod_pubsub: Add a public method for retrieving the service object
There is already a set_service()
2018-08-05 18:28:31 +02:00
Matthew Wild
756c775043 mod_pubsub: Add comment to document nodestore/itemstore methods 2018-08-04 21:33:17 +01:00
Kim Alvefur
4310c5f921 mod_pubsub: Restrict access model to 'whitelist' and 'open'
'presence' and 'roster' makes more sense for PEP
'auithorize' needs additional code for authorization flow
2018-08-04 03:31:21 +02:00
Kim Alvefur
b4e05514d2 mod_pubsub: Add configurable maximum on number of items
Like aefb96a52f5f
2018-08-04 03:13:55 +02:00