Commit graph

145 commits

Author SHA1 Message Date
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
b94a30ddcc mod_admin_shell: Fix lint [luacheck] 2023-11-21 22:18:42 +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
Kim Alvefur
32ce8884ba mod_admin_shell: Make 'Role' column dynamically sized
Some of the new roles don't quite fit nicely into 4 characters
(excluding ellipsis). Given the ability to dynamically add additional
roles from the config and possibly from modules, it seems better to just
make it a relative size since we can't know how long they will be.
2023-10-26 13:29:28 +02:00
Matthew Wild
f7323ed6e4 core, plugins: Split prosody:user role into prosody:{guest,registered,member}
This gives us more granular control over different types of user account.
Accounts registered by IBR get assigned prosody:registered by default, while
accounts provisioned by an admin (e.g. via prosodyctl shell) will receive
prosody:member by default.
2023-06-29 15:36:13 +01:00
Kim Alvefur
46781dc892 mod_admin_shell: Use new serialize preset to simplify default config
Two pairs replaced by one.  Blame lua-format for the line diff delta.
2023-06-09 17:38:46 +02:00
Kim Alvefur
9777b5158f mod_admin_shell: Warn when (un-)loading module would be undone by restart
Reminder to update the configuration if the change is to be permanent.
2023-06-06 22:00:54 +02:00
Kim Alvefur
9480954e92 mod_admin_shell: Show internal URL where different from external 2023-05-28 22:33:45 +02:00
Kim Alvefur
ba878e7230 mod_admin_shell: Show internal URL in addition to external in http:list
To help with configuring reverse proxies.
2023-05-24 14:49:29 +02:00
Kim Alvefur
c71ab7f1ef mod_admin_shell: Allow logging HTTP events with debug:logevents("http")
Mirroring debug:events("http"), and to replace the "Firing event: GET /"
log lines in net.http.server
2023-05-14 19:02:26 +02:00
Kim Alvefur
f3ec84d5ef mod_admin_shell: Allow logging global events with debug:logevents("*")
Missing feature. It should behave like debug:events()
2023-05-14 19:01:01 +02:00
Kim Alvefur
8a854d169b mod_admin_shell: Refactor 'cert' column
Removes some dead code and hopefully simplifies a bit.

There's a tree of possibilities with the two tri-state status
properties, something like

chain:
* nil -- cert validation disabled?
* invalid -- something wrong with the chain (including ee cert)
* valid -- chain ok
	cert:
	* nil -- incomplete validation??
	* invalid -- mismatched names or such
	* valid -- all good!
2023-04-30 23:45:55 +02:00
Kim Alvefur
6114ccee11 Merge 0.12->trunk 2023-04-19 11:42:36 +02:00
Kim Alvefur
2fc0c66f01 mod_admin_shell: Use same wildcard matching in other s2s command
Consistency is nice.
2023-04-10 14:24:39 +02:00
Kim Alvefur
f9f118178a mod_admin_shell: Factor apart wildcard matching into function for reuse
Applying this for s2s:close[all]() would also be nice.
2023-04-10 14:12:48 +02:00
Kim Alvefur
dbb0c688cb mod_admin_shell: Add config:set([host,] key, value) because why not
We had config:get() but not this.

> <MattJ> Yeah, why did we never implement that?

Handy if you want to quickly try out settings without reloading the
whole config.
2023-04-08 11:28:55 +02:00
Kim Alvefur
9f691e9796 mod_admin_shell: Allow wildcard matches like s2s:show("*.example.com")
E.g. if you want to show connections to/from a domain, including its
subdomains, this is handy.
2023-04-08 10:16:18 +02:00
Kim Alvefur
506ee45da2 mod_admin_shell: Fix display of remote cert status when expired etc
Looks like autocomplete unhelpfully capitalized this word, but it's
lowercase where it is set in mod_s2s_auth_certs
2023-04-06 17:09:03 +02:00
Kim Alvefur
67ea0ee50e mod_admin_socket: Return error on unhandled input to prevent apparent freeze
When mod_admin_socket is loaded without mod_admin_shell, attempt to use
`prosodyctl shell` will appear to freeze after any input, since no
response is returned.
2023-02-16 17:20:09 +01:00
Kim Alvefur
20532df525 mod_admin_shell: Ensure available connection for column 'secure'
Similar to #1777
2022-10-23 16:22:12 +02:00
Kim Alvefur
c51152432a mod_admin_shell: Ensure connection exists to get port from (fixes #1777) 2022-10-23 16:19:39 +02:00
Kim Alvefur
ee21d9480a mod_admin_shell: Switch names for user role management commands
user:roles() does not convey that this is the mutating command, it
should have been called setroles from the start but wasn't due to lack
of foresight. This has to accidentally removing roles when wanting to
show them.
2022-08-15 18:56:22 +02:00
Kim Alvefur
dc79c92cbc mod_admin_shell: Tighten up type checks to fix #1754 (thanks clouded)
Due to the dummy statistics provider (see core.statsmanager line 250)
having a metatable that allows infinite indexing where everything is
always the same table, which end up in suf() in the concatenation line.
2022-05-15 23:16:14 +02:00
Kim Alvefur
2fa6a01018 mod_admin_shell: Allow "*" as substitute for 'nil' for easier CLI usage
Since prosodyctl shell with additional arguments assumes the first two
are a section:command() and any following arguments are strings, passing
a bare 'nil' is not possible. In order to avoid delving into this rabbit
hole, instead produce a token that alone is not really a legal JID for
use as wildcard.
2023-04-07 14:03:24 +02:00
Kim Alvefur
f937942519 mod_admin_shell: Make IP column thinner if IPv6 is disabled
IPv6 addresses can be pretty long, so if they can be more compact,
that's nice.

But nobody would disable IPv6, would they?
2023-04-07 13:09:00 +02:00
Kim Alvefur
c490579025 mod_admin_shell: Make default column width 1 part
These gets used for usernames, resources and other random session fields
that don't have a column definition in `available_columns`
2023-04-07 13:07:00 +02:00
Kim Alvefur
65dffa88a8 mod_admin_shell: Fix attempt to compare number with string
Missed the # in 93c1590b5951
2023-04-07 13:04:15 +02:00
Kim Alvefur
44689ccfd4 mod_admin_shell: Dynamically size JIDs and hosts
Reasoning: a hostname is one part, a JID is 3 parts.
2023-04-07 12:58:02 +02:00
Kim Alvefur
ab15502d8b mod_admin_shell: More dynamic widths calculations 2023-04-07 12:48:17 +02:00
Kim Alvefur
31427da24f mod_admin_shell: Calculate widths of columns from example values
Harder to accidentally count wrong if Lua is doing the counting on a
plausible input.
2023-04-06 17:07:09 +02:00
Kim Alvefur
56cfc08952 mod_admin_shell: Strip 'prosody:' prefix to allow narrower Role column 2023-04-02 22:44:29 +02:00
Kim Alvefur
13084baa38 mod_admin_shell: Allow matching on host or bare JID in c2s:show
Only supporting exact match on full JID isn't helpful if you want to
list sessions per host or user.
2023-03-31 22:01:27 +02:00
Kim Alvefur
e53ef27a1c core.usermanager: Correct formatting of not implemented error
Spaces, no hyphen, apparently.
2023-03-26 16:51:33 +02:00
Kim Alvefur
8720067f24 mod_admin_shell: Enable user after creation with role
Fixes that otherwise the user was created in a disabled state and left
as such.
2023-03-26 16:45:34 +02:00
Kim Alvefur
1d6989afb1 mod_admin_shell: Simplify user creation when no role given
Idea here is to prevent a user from being created with the default role
if a different role was given, but that dance wouldn't be needed if no
role is provided.
2023-03-26 16:45:23 +02:00
Kim Alvefur
98922d54b1 plugins: Prefix module imports with prosody namespace 2023-03-24 13:15:28 +01:00
Kim Alvefur
c425da3c6a mod_admin_shell: Limit module dependency listings to loaded on current host
E.g. module:info("http") with many http modules loaded would show a lot
of duplication, as each module would be listed for each host, even if
not actually enabled on that host.
2023-03-10 12:33:02 +01:00
Kim Alvefur
283322543e mod_admin_shell: Show reverse dependencies in module:info()
Why was this module loaded? Now you can find out!
2023-03-05 14:08:26 +01:00
Kim Alvefur
701fb4fce0 mod_admin_shell: Add commands to disable and enable accounts
First proper UI to enable/disable, allowing it to be tested.
2023-02-23 18:10:06 +01:00
Kim Alvefur
02b01c4826 Merge 0.12->trunk 2023-02-16 20:15:39 +01:00
Kim Alvefur
dc958f1e40 mod_admin_shell: Match substring in muc:affiliations() like muc:occupants()
Maybe one day we'll get consistent filtering semantics everywhere.
2023-01-30 00:14:50 +01:00
Kim Alvefur
1b71a53fb7 mod_admin_shell: Sort MUC users by relation and JID
Suggested by MattJ, our resident UI expert :)
2023-01-29 21:37:13 +01:00
Kim Alvefur
5c676bab58 mod_admin_shell: Make Role and Affiliation columns the same width for aesthetics
The length of the title "Affiliation" made them both close enough that
it looked off.
2023-01-29 18:57:28 +01:00
Kim Alvefur
6e120ad485 mod_admin_shell: Use tables to present MUC users
Tables are awesome!
2023-01-29 18:31:25 +01:00
Kim Alvefur
d5b5b5ba86 mod_admin_shell: Factor out room retrieval into common function
Justification: See diffstat
2023-01-29 17:55:56 +01:00
Kim Alvefur
08a730746c mod_admin_shell: Add muc:affiliations(room) command to list memberships
Easier than going trough muc:room():each_affiliation() since you have to
do fiddly things to reach the print() function.
2023-01-29 17:53:21 +01:00
Kim Alvefur
2b0584d2ee mod_admin_shell: Add muc:occupants(room) command to list occupants
Easier than going trough muc:room():each_occupant() since you have to do
fiddly things to reach the print() function.
2023-01-29 17:41:08 +01:00