Commit graph

5659 commits

Author SHA1 Message Date
Matthew Wild
57d168dd5e prosodyctl shell: More reliable detection of REPL/interactive mode (fixes #1895) 2025-03-13 11:37:11 +00:00
Matthew Wild
384e3dbea2 mod_admin_shell: Remove outdated help text (fixes #1898)
The ! commands have been broken for some time, and we're not going to
implement them right now. If we want fancier editing, we can now do that on
the client side (with readline and stuff).

Also removes mention of telnet!
2025-03-13 11:35:39 +00:00
Matthew Wild
8005ac825f mod_websocket: Merge session close handling changes from mod_c2s (bug fixes)
This should bring some fixes and general robustness that mod_websocket had
missed out on. The duplicated code here is not at all ideal. To prevent this
happening again, we should figure out how to have the common logic in a single
place, while still being able to do the websocket-specific parts that we need.

The main known bug that this fixes is that it's possible for a session to get
into a non-destroyable state. For example, if we try to session:close() a
hibernating session, then session.conn is nil and the function will simply
return without doing anything. In the mod_c2s code we already handle this, and
just destroy the session. But if a hibernating websocket session is never
resumed or becomes non-resumable, it will become immortal!

By merging the fix from mod_c2s, the session should now be correctly
destroyed.
2025-03-11 18:44:40 +00:00
Matthew Wild
5b4624137d mod_c2s: Code formatting change
Although we do sometimes use single-line if blocks, I'm expanding this one to
make it easier to compare with the duplicated (but modified) code in
mod_websocket that we plan to de-duplicate one day.
2025-03-11 18:37:16 +00:00
Matthew Wild
afb9bc34a0 mod_storage_internal: Use UUIDv7 for message ids
This matches what we use for SQL already, so provides some consistency.

Client developers prefer sortable ids.
2025-03-10 11:54:52 +00:00
Matthew Wild
830f3e122c mod_external_services: Also use TURN REST credential algo for 'turns' (thanks moreroid) 2025-03-01 16:19:43 +00:00
Kim Alvefur
e52cc0126d mod_component: Don't return error reply for errors, fixes #1897 2025-02-22 21:48:07 +01:00
Kim Alvefur
68296b6a8e mod_bosh,mod_websocket: Don't load mod_http_altconnect in global context
It blocked loading on VirtualHosts since it was already loaded globally

Thanks eTaurus
2025-02-22 21:45:34 +01:00
Matthew Wild
13dc010593 mod_invites: Hide --group flag unless mod_invites_groups is enabled
The WIP groups support is not complete yet, and won't work without extra
modules (which are not yet a part of Prosody). For now we hide --group support
unless mod_invites_groups (community module) is specified in modules_enabled.
2025-02-17 23:06:06 +00:00
Matthew Wild
edc68f5407 mod_invites: Fix traceback when no flags passed 2025-02-17 22:57:58 +00:00
Matthew Wild
764c388d38 mod_invites: Deprecate 'mod_invites generate' in favour of new shell commands 2025-02-17 19:12:40 +00:00
Matthew Wild
6855f5c8c3 mod_admin_shell: Improve help listing in non-REPL mode 2025-02-17 19:10:48 +00:00
Matthew Wild
75b8824b00 mod_admin_shell: Fix simple command execution (e.g. help) 2025-02-17 19:10:26 +00:00
Matthew Wild
efc31d66ef mod_admin_shell: Set flag on session when in REPL mode 2025-02-17 19:09:11 +00:00
Matthew Wild
c8cf32b614 mod_admin_shell: Improved error handling for shell-invoked commands 2025-02-17 18:25:52 +00:00
Matthew Wild
79381510cf mod_admin_shell, util.prosodyctl.shell: Process command-line args on server-side, with argparse support
This allow a shell-command to provide a 'flags' field, which will automatically
cause the parameters to be fed through argparse.

The rationale is to make it easier for more complex commands to be invoked
from the command line (`prosodyctl shell foo bar ...`). Until now they were
limited to accepting a list of strings, and any complex argument processing
was non-standard and awkward to implement.
2025-02-17 17:02:35 +00:00
Kim Alvefur
f21ea48481 mod_invites: Fix storing --group (thanks lissine)
This made it ignore `--group` completely, but if you incorrectly used
`--group foo` it would store `groups=true`.

Introduced in 9ba11ef91ce4
2025-02-17 00:55:27 +01:00
Matthew Wild
573e9f2716 mod_bosh, mod_websocket: Add soft dependency on mod_http_altconnect 2025-02-16 13:32:59 +00:00
Matthew Wild
83e4560a6c mod_http_altconnect: Imported from prosody-modules 6d5a19bdd718 w/changes
Changes from community version:

  - Add options to allow explicit control over whether BOSH/WS is advertised
  - Always serve XML at /host-meta (no guessing based on Accept), least surprising
2025-02-16 13:19:05 +00:00
Matthew Wild
9bae17a0bb mod_http_file_share: Persist total storage usage when it increases (fixes #1891) 2025-02-15 17:10:30 +00:00
Kim Alvefur
346f58c9d9 core.certmanager: Move LuaSec verification tweaks to mod_s2s
These two settings are only really needed for XMPP server-to-server
connections.
2025-02-15 00:19:01 +01:00
Matthew Wild
f5f2755b63 mod_cloud_notify, mod_cron, mod_invites: Add 'prosody.' prefix to requires 2025-02-15 10:31:37 +00:00
Matthew Wild
d71473df3b MUC: Use new XEP namespace for hats by default
Revert with muc_hats_compat = true in the config if necessary.
2025-02-14 13:08:45 +00:00
Matthew Wild
df63482b96 mod_admin_shell: Remove duplicated line 2025-02-13 17:05:36 +00:00
Matthew Wild
56dc05885e mod_admin_shell: Rename user:setrole to user:set_roles
This is more readable and accessible, and it will only be harder to change
after release.
2025-02-13 16:20:42 +00:00
Matthew Wild
f8a9943d17 mod_admin_shell: Hide secondary role commands, focus on primary roles
Secondary roles are an advanced feature without any strong use cases
currently. Having multiple ways to manage roles is confusing.

Now the 'user:role' command will just show the primary role if that is all
there is, but will list secondary roles too if there are any (which in 99.9%
of cases there won't be).
2025-02-13 16:18:59 +00:00
Matthew Wild
009996c9e8 mod_admin_shell: Support for hiding certain commands from default help listing
Useful for e.g. deprecated commands.
2025-02-13 16:16:19 +00:00
Matthew Wild
4cc122bdc0 mod_account_activity: Fix error when no duration specified in shell command 2025-02-13 16:15:16 +00:00
Matthew Wild
b07c1436e7 mod_admin_shell: Fix result handling of user addrole/delrole commands 2025-02-13 15:54:39 +00:00
Matthew Wild
d384d98c11 mod_authz_internal: Fix error messages 2025-02-13 15:31:14 +00:00
Matthew Wild
dc810fea2d mod_authz_internal: Fix return values of secondary role management methods
usermanager expects (role, err) and (ok, err)
2025-02-13 15:30:23 +00:00
Matthew Wild
3cdaf29bf8 mod_presence: Fix traceback if origin gets disconnected during processing
Fixes #1887
2025-02-13 14:00:08 +00:00
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