Commit graph

5627 commits

Author SHA1 Message Date
Matthew Wild
91e846ee71 mod_invites: Add shell commands to list, show and delete pending invitations 2025-02-13 13:04:37 +00:00
Matthew Wild
94385af697 mod_invites: Shell command to create reset links 2025-02-13 12:21:16 +00:00
Matthew Wild
85b82fdb3d mod_account_activity: Add shell command to list inactive accounts
Including accounts which may never have logged in.
2025-02-12 17:15:29 +00:00
Matthew Wild
6b6707efe5 mod_account_activity: Fix required module names 2025-02-12 17:15:00 +00:00
Matthew Wild
54b77fd3ca mod_account_activity: Record an account's last activity timestamp
This is similar to mod_lastlog/mod_lastlog2.

Some functionality was dropped, compared to mod_lastlog2. These features
(recording the IP address, or tracking the timestamp of multiple events) are
handled better by the mod_audit family of modules. For example, those
correctly handle multiple logins, IP address truncation, and data retention
policies.

The "registered" timestamp from mod_lastlog2 was also dropped, as this has
been stored in account_details by Prosody itself since at least 0.12 already.
2025-02-12 12:33:45 +00:00
Kim Alvefur
c1655a181f mod_storage_sql: Fix tests for SQLite3
Tests does not run the code that initializes `sqlite_version`
2025-02-08 12:55:40 +01:00
Matthew Wild
d6f8c4fe18 MUC: Don't inform people about the avatar hash when there is none 2025-02-07 10:19:36 +00:00
Matthew Wild
3d61988313 mod_vcard: Switch store name for MUC hosts (thanks lissine) 2025-02-06 17:37:59 +00:00
Matthew Wild
857c61ffd3 mod_muc: Integrate support for vcards/avatars on MUC rooms
This was previously served by a community module (mod_vcard_muc).

It can be disabled by setting `vcard_muc = false` in the config.
2025-02-06 17:08:46 +00:00
Matthew Wild
839498eb5d mod_vcard: Some support for handling vcards on components 2025-02-06 17:03:03 +00:00
Matthew Wild
eac45d938a mod_vcard: Fire event when vcard updated 2025-02-06 17:02:29 +00:00
Matthew Wild
810b59d50e mod_vcard: Add API to get hash of the vcard avatar 2025-02-06 17:02:02 +00:00
Matthew Wild
ba53fa2e21 mod_c2s: Add debug log when disconnecting all user sessions 2025-02-06 12:40:11 +00:00
Kim Alvefur
56c7957a56 mod_admin_shell: Fix column alignment in 'help roles' 2025-02-02 14:12:52 +01:00
Kim Alvefur
084774ae50 mod_admin_shell: Fix help forgetting arguments
The array:pluck() method mutates the args, replacing the table items
with the resulting strings. On later runs I assume it tries to index the
string, which returns nil, emptying the array.
2025-02-02 13:33:17 +01:00
Rémi Bardon
9732b0f9d8 mod_tokenauth: Fix expiry lasting one second too much
Because the code was using `< now` in a lot of places, things expiring at the current second
wouldn't be marked as expired. It isn't noticeable in real-world scenarios but I wanted to
create OAuth 2.0 tokens valid for 0 second in integration tests and it wasn't possible.

By using `<=` instead of `<`, we make sure tokens don't live a single millisecond more than
what they are supposed to.
2025-02-01 20:45:28 +01:00
Kim Alvefur
edfe2fe98c mod_storage_sql: Don't treat Enter or Ctrl-C as yes in upgrade command
It seems to imply that No is the default, so it shouldn't continue doing
the Yes action unless you actually press Y
2025-01-23 22:32:44 +01:00
Kim Alvefur
c8134dd9a9 mod_storage_sql: Detect SQLite3 without UPSERT (or SQLCipher 3.x)
SQLCipher v3.4.1 (the version in Debian 12) is based on SQLite3 v3.15.2,
while UPSERT support was introduced in SQLite3 v3.24.0

This check was not needed before because we v3.24.0 has not been in a
version of Debian we support for a long, long time.

Note however that SQLCipher databases are not compatible across major
versions, upgrading from v3.x to v4.x requires executing a migration.
Attempts at making `prosodyctl mod_storage_sql upgrade` perform such a
migration has not been successful.

Executing the following in the `sqlcipher` tool should do the migration:

	PRAGMA key = '<key material>';
	PRAGMA cipher_migrate;
2025-01-23 19:33:05 +01:00
Matthew Wild
76f00fc2e3 mod_admin_shell: Remove log statement intended for development only 2025-01-16 11:35:19 +00:00
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
879cb1672f mod_authz_internal: Make host considered the parent configurable
This bestows the role specified by the 'host_user_role' setting onto
users of that host. For simplicity, only a single host can be specified.

Making it configurable allows for setups where VirtualHost and related
Components may be siblings instead of having a subdomain relationship.

For setups with many VirtualHosts sharing a single Component, the
'server_user_role' setting is more appropriate. Even more complicated
setups would have to resort to mod_firewall or similar.
2025-01-13 11:50:03 +01:00
Matthew Wild
c8d375af04 mod_cloud_notify: Merge from prosody-modules@fc521fb5ffa0
Many thanks to Thilo Molitor and Kim Alvefur for their work on this module
while it was in the community repository. It has been stable for some time, is
widely used, and provides a feature that is important to most deployments.
2025-01-09 16:49:27 +00:00
Matthew Wild
d0457564a3 mod_invites: Add support for invites_page option to use external invites pages
This allows Prosody to easily provide friendly invitation links, even without
setting up mod_invites_page (which is a community module). Admins can
configure it to use a third-party deployment such as https://xmpp.link or they
can deploy their own based on
https://github.com/modernxmpp/easy-xmpp-invitation

Alternatively they can just install mod_invites_page and this will all be
handled automatically by that.
2025-01-09 13:23:46 +00:00
Kim Alvefur
ede98f71e4 mod_storage_sql: Remove the word 'error' from debug messages
The word 'error' anywhere, especially in harmless debug messages, are
too often interpreted as fatal errors my some users, so best avoid that
word. These look too scary as it is, being tracebacks.
2025-01-08 22:30:30 +01:00
Kim Alvefur
f9731db67b mod_pubsub: Remove unused loop variable [luacheck] 2025-01-08 08:54:52 +01:00
Kim Alvefur
7ed9729e52 mod_admin_shell: Remove redundant 'mod_' prefix from debug message 2025-01-08 08:41:15 +01:00
Kim Alvefur
63690dd4a0 mod_admin_shell: Fix reporting origin module for commands
The field `_provided_by` comes from module:provides(), but these items
comes from moduel:add_item(), which include the originating module as a
'source' field of the event. However, this is absent when items are
retrieved at a later time than the initial event.
2025-01-08 08:11:02 +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
6ff135c812 mod_admin_shell: user:password(): Support prompting for password if none given 2025-01-07 19:25:12 +00:00
Matthew Wild
54de66e7b0 mod_admin_shell: user:create(): Reject promise with error message on failure 2025-01-07 19:24:05 +00:00
Matthew Wild
f40e997879 mod_admin_shell: Mark event as handled when requested input is submitted 2025-01-07 19:23:23 +00:00
Matthew Wild
54718fffe0 mod_admin_shell: user:create(): request password via prompt if none given 2025-01-07 18:17:57 +00:00
Matthew Wild
7a9bc06049 mod_admin_shell: Add session method to request (password) input from shell client 2025-01-07 18:17:30 +00:00
Matthew Wild
72b6c110f0 mod_admin_socket: Fire event on admin client disconnect 2025-01-07 18:16:23 +00:00
Matthew Wild
957c69461f mod_admin_shell: Don't pause async thread while waiting for promise result
This allows us to continue sending/receiving on the session, for example if
the promise will be resolved by other data that the client is going to send.

Specifically, this allows the repl-request-input to work without a deadlock.

It does open the door to interleaved commands/results, which may not be a good
thing overall, but can be restricted separately if necessary (e.g. a flag on
the session).
2025-01-07 18:15:50 +00:00
Matthew Wild
d58c6ae7ca mod_cron: Don't run tasks if loaded inside prosodyctl
It's common for modules to depend on mod_cron, and this can lead to it loading
inside prosodyctl, where we don't really want to run any cron tasks.
2025-01-07 18:06:29 +00:00
Matthew Wild
c7005840e6 mod_authz_internal: Make 'prosody:guest' default role for all unknown JIDs
This fixes an issue where e.g. remote users or even other users on the server
were unable to list MUC rooms.

We want to define a permission to list MUC rooms, but we want it to be
available to everyone by default (the traditional behaviour).

prosody:guest is the lowest role we have. I ran a quick check and it isn't
really used for anything right now that would be concerning.

It was originally designed for anonymous logins. I think it's safe to treat
remote JIDs as equivalent, since we have no trust relationship with anonymous
users either.
2025-01-07 14:41:32 +00:00
Matthew Wild
25b7ac8ece mod_pep: Support for node/item management commands 2025-01-07 14:27:34 +00:00
Matthew Wild
a10a0140e5 mod_pubsub: Expand shell commands to include node/item management 2025-01-07 14:27:18 +00:00
Matthew Wild
0d15dab13f mod_roster: Add basic roster management shell commands 2025-01-07 12:26:03 +00:00
Matthew Wild
3ebf89a8c6 mod_flags: New module to view and manage flags on user accounts via shell/API
This will be useful for server operators to easily identify flagged accounts,
etc.
2025-01-03 11:45:48 +00:00
Matthew Wild
f45d88d614 mod_admin_shell: stats:show(): Friendlier error message when statistics disabled 2024-12-28 18:35:24 +00:00
Kim Alvefur
a2197df832 mod_saslauth: Use fully qualified import here too
Looks like I forgot to update these when merging the channel binding
changes after the great renamening.

Ref #1223
2024-11-24 14:53:49 +01:00
Kim Alvefur
0f931dea2a MUC: Use fully qualified import
Seems to be hard to break old habits?

Ref #1223
2024-11-23 17:43:43 +01:00
Kim Alvefur
ab148f782f muc: Update link to XEP-0421 (instead of inbox) 2024-11-23 16:46:34 +01:00
Matthew Wild
9de5f1149b mod_smacks: Run session destruction code in session's async context
This is the Right Thing and should fix various potential issues and race
conditions.
2024-11-21 17:02:55 +00:00
Matthew Wild
6bbfcd801a mod_c2s, mod_s2s: Support for queuing callbacks to run in session thread
This allows certain session-specific code that needs to run in the async
context, but is itself triggered outside of that context (e.g. timers), to
be queued.

An example of this is the session destruction code of mod_smacks, when the
hibernation timeout is reached.
2024-11-21 17:02:07 +00:00
Kim Alvefur
19429a5e7d mod_smacks: Fix previous commit for case of no session found 2024-11-19 00:57:24 +01:00
Kim Alvefur
fff5a91e37 mod_smacks: Prevent traceback on attempting to resume destroyed session
This shouldn't be possible, but seems to happen anyway after net.server
somehow calling the close handler twice, which also should not happen.
2024-11-19 00:53:01 +01:00