Commit graph

13378 commits

Author SHA1 Message Date
Kim Alvefur
1f67f1170c lua-format: Let simple things be one line
This doesn't really handle nesting all that nicely tho.
2023-11-30 18:45:05 +01:00
Kim Alvefur
7afae2218d lua-format: Further tweaks
Keeping things a single line makes very deeply nested things "pyramids"
a single line, which makes them hard to read.
2023-01-18 18:35:24 +01:00
Kim Alvefur
de20f810d3 lua-format: Add new settings 2021-07-28 14:55:17 +02:00
Kim Alvefur
b80f212813 lua-format: Tweaks attempting to fit our code style 2020-07-07 18:23:23 +02:00
Kim Alvefur
39c96672e2 lua-format: Check in defaults
By starting with the built-in defaults, we get a nice history of
differences from those as we figure out what settings suit us

Sorted make comparisons easier.
2020-07-07 18:30:15 +02:00
Matthew Wild
227b0c9733 mod_user_account_management: Fire events with a fake (not destroyed) session
Previously these events fired after the session had been destroyed, which
removes many of the useful properties. The ones I chose to preserve here are
the ones used by the community module mod_audit, which seems like a good
baseline.
2023-11-30 17:46:18 +00:00
Kim Alvefur
8c53b06add mod_cron: Rebuild with new LuaFormatter settings (tabs!) 2023-11-30 18:42:56 +01:00
Kim Alvefur
934bd2a65e util.datamanager: Fix missing pack format when reading first index entry
Thanks MattJ
2023-11-30 18:09:53 +01:00
Matthew Wild
7adda6e938 mod_user_account_management: Add support for soft-deletion of accounts via IBR
When registration_delete_grace_period is set, accounts will be disabled for
the specified grace period before they are fully deleted.

During the grace period, accounts can be restored with the user:restore()
shell command.

The primary purpose is to prevent accidental or malicious deletion of a user's
account, which is traditionally very easy for any XMPP client to do with a
single stanza.
2023-11-30 13:48:43 +00:00
Matthew Wild
2132eca2e0 moduleapi: Log error message when ambiguous period spec is found in config 2023-11-30 13:43:23 +00:00
Matthew Wild
a669ffb5a2 util.human.io: Don't accept ambiguous durations by default
The new method parse_duration_lax() exports the old behaviour, mainly for
compatibility purposes.
2023-11-30 13:42:44 +00:00
Matthew Wild
56d45091bd mod_cron: Update Teal source and rebuild 2023-11-30 12:41:26 +00:00
Matthew Wild
090f4830bb mod_cron: Rename variable to fix shadowing (#luacheck) 2023-11-30 11:42:52 +00:00
Matthew Wild
2524736225 mod_cron: Add shell command to list registered cron tasks with status 2023-11-30 11:38:59 +00:00
Matthew Wild
82e46a35f5 mod_saslauth: Allow plugins to override return SASL condition/text 2023-11-30 11:22:40 +00:00
Matthew Wild
4263537301 luacheckrc, mod_http_file_share: Update for module API change (once->on_ready) 2023-11-30 10:14:17 +00:00
Matthew Wild
8a38b5d0da modulemanager: Allow modules to expose module.ready - to be called after init
This is a shortcut for module:on_ready() which exposes the functionality in an
idiomatic way consistent with module.load, module.unload, etc.

module.ready runs when the module is loaded and the server has finished
starting up.
2023-11-30 10:09:47 +00:00
Matthew Wild
f82d804e1d moduleapi: Rename :once() to :on_ready() for clarity
'Once' is ambiguous - once per what?

on_ready() executes its parameter when the module is loaded *and* the server
has finished starting.
2023-11-30 10:07:53 +00:00
Matthew Wild
253b2fba90 usermanager, mod_auth_internal_hashed: Support metadata when disabling a user
This allows us to store a time, actor, comment and/or reason why an account
was disabled, which seems a generally useful thing to support.
2023-11-30 09:47:00 +00:00
Kim Alvefur
b97c4ffc16 util.datamanager: Load first item into index earlier
Should get rid of fseek() call
2023-11-27 00:14:56 +01:00
Kim Alvefur
f5f64e3bdc mod_mam: Use for loop in metadata query
Some storage drivers will perform cleanup after the last iteration, but
if only one step is taken this might be delayed until the garbage
collector gets to it.
2023-11-26 22:58:11 +01:00
Matthew Wild
ad3ab533ed mod_tokenauth: Ignore invalid grants in storage that have no id 2023-11-29 17:51:34 +00:00
Matthew Wild
34b4ec02fe mod_invites: Fix linter issues 2023-11-29 17:50:33 +00:00
Matthew Wild
fb240ee25c mod_admin_shell: Fix linter issues 2023-11-29 17:49:20 +00:00
Matthew Wild
d200b57cfe mod_invites: Use new shell-command API 2023-11-29 17:34:44 +00:00
Matthew Wild
44aea8f4f5 mod_admin_shell: Remove verbose logging 2023-11-29 17:33:56 +00:00
Matthew Wild
a31ee8c429 mod_admin_shell: Remove timer:info() (it's been debug:timers() for some time) 2023-11-29 17:22:18 +00:00
Matthew Wild
0391039177 mod_admin_shell: Support for 'shell-command' items (global and per-host)
This should simplify adding shell commands from other modules, which will
reduce the growth of mod_admin_shell and make it easier for community modules
to expose commands too.
2023-11-29 17:19:53 +00:00
Matthew Wild
34cdcb5532 mod_admin_shell: Refactor help to data structures for extensibility
This makes it easier for commands added by other modules to add to the help
output, for example.
2023-11-29 17:18:17 +00:00
Kim Alvefur
2f2551e6d2 migrator: Add an escape hatch to allow arbitrary config options
Previously only SQL settings and the 'path' for internal storage could
be set, and only for SQL and internal storage.

input {
	type = "whatever";
	config = {
		whatever_foobar = "something"
	}
}
2023-11-27 17:19:16 +01:00
Kim Alvefur
8a2e65d5b7 util.poll: Rename things to clarify poll(2) limits
With epoll(7), MAX_EVENTS controls how many events can be retrieved in one
epoll_wait call, while with poll(2) this MAX_WATCHED controls how many
sockets or other FDs can be watched at once.
2023-11-27 08:19:52 +01:00
Kim Alvefur
97332bf56f mod_storage_internal: Clear archive item count cache after experimental trim
The previous count would be invalid at this point.

Should be possible to math out how many items are left, but this is left
as future work.
2023-11-26 18:02:13 +01:00
Kim Alvefur
c9aa3894ec mod_blocklist: Remove weak cache (and increase default LRU cache size)
Weak tables are said to have suboptimal performance, so we might as well
get replace it with an increased default LRU cache size.

Sorry about the 'and'
2023-11-26 17:41:38 +01:00
Kim Alvefur
c47cfefec0 mod_storage_internal: Close lazy-loading list abstraction after trim
Should be done here too.
2023-11-26 14:35:26 +01:00
Kim Alvefur
15f487b789 mod_storage_internal: Only close lazy-loading list store abstractions
Since datamanager can fall back to the old method of loading the whole
list, which wouldn't come with a :close method.
2023-11-26 14:29:08 +01:00
Kim Alvefur
812652818d util.startup: Use prosody. module namespace
Maybe we need some sort of lint for this?
2023-11-24 13:41:21 +01:00
Kim Alvefur
c41d63004a net.http.server: Complete async waiter for non-persistent connections
Otherwise requests with Connection: close would be stuck in the async
wait that starts after the handle_request() call.

Together with the new async debugging, this makes the async thread stay
in the set of waiting runners forever, where previously it would simply
be garbage collected.
2023-11-24 00:31:08 +01:00
Kim Alvefur
58988fbce5 mod_storage_internal: Close archive list after completion of iteration
This closes the two FDs that the random access list abstraction uses,
otherwise they are left to the garbage collector.
2023-11-23 17:49:57 +01: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
b94a30ddcc mod_admin_shell: Fix lint [luacheck] 2023-11-21 22:18:42 +01:00
Kim Alvefur
1e6027da6d util.async: Clip long line [luacheck] 2023-11-21 22:18:17 +01:00
Kim Alvefur
07d2f9f2e8 net.server_epoll: Avoid call to update socket watch flags when nothing changed
Should skip a syscall for each write when using epoll.
2023-11-21 22:06:28 +01:00
Kim Alvefur
da38e2af42 util.poll: Quadruple number of events retrieved at once from epoll
Better performance under load maybe?

See b890ceb1c24f for previous increase
2023-11-21 20:45:56 +01:00
Matthew Wild
f66f6ba60b mod_admin_shell: Add debug:async() command to show blocked async runners 2023-11-21 18:48:58 +00:00
Matthew Wild
9f06132513 util.async: Expose default runner function
This is purely for informational purposes, so it's possible to determine
externally whether a runner is using the default runner function (which
executes functions as work items) or a custom runner function.
2023-11-21 18:14:51 +00:00
Matthew Wild
ac680a900e util.async: Record current work item in the runner object
Mostly expected to be useful for debugging purposes.
2023-11-21 18:13:42 +00:00
Matthew Wild
9e43a7742a util.async: Improve debug logging in a few places
Knowing the state of the coroutine as well as the runner state can be helpful.
2023-11-21 18:12:49 +00:00
Matthew Wild
ab26786924 util.async: Export a table of currently-waiting runners
This can be used for debugging and introspection.
2023-11-21 18:11:40 +00:00
Kim Alvefur
c8e2129a82 util.poll: Return early if given zero timeout and no pending events
Should have been part of f33887f925e1 to ensure it won't skip processing
timers at all when very busy.
2023-11-21 17:43:46 +01:00
Kim Alvefur
43d1285dbd moduleapi: Update Teal spec
Updates for 65fb0d7a2312::59c3d775c7fa
2023-11-13 10:40:24 +01:00