Commit graph

177 commits

Author SHA1 Message Date
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
Kim Alvefur
0e6391e736 mod_admin_shell: Use a table to show help sections
Because tables make everything better and more readable!
2022-02-20 00:24:18 +01:00
Kim Alvefur
bd0e903b07 Merge 0.12->trunk 2022-10-24 15:25:12 +02:00
Kim Alvefur
8b82dc338c mod_admin_shell: Fix display of session without role (thanks Link Mauve)
This can happen to sessions before they are assigned a role
2022-09-23 11:58:15 +02:00
Kim Alvefur
95bba786f1 mod_admin_shell: Rename variable to avoid confusion with global function
For luacheck, but it doesn't actually complain about this right now
2022-08-25 22:42:41 +02:00
Kim Alvefur
b292127500 mod_admin_shell: Fix output from user:roles()
It used _G.print instead of the shell session print, which would
silently write to stdout
2022-08-25 22:40:41 +02:00
Kim Alvefur
96e172167d mod_admin_shell: Ensure account has role before it is usable
By creating the account first without a password it can't be used until
the role has set. This is most important for restricted accounts, as a
failure to set the role would lead to the account having more privileges
than indented.
2022-08-18 19:00:01 +02:00
Kim Alvefur
6f11c198b3 mod_admin_shell: Update help for user:create to reflect singular role argument 2022-08-18 18:10:18 +02:00
Matthew Wild
4db3f8cf46 mod_admin_shell: Update with new role management commands and help text 2022-08-18 16:46:07 +01:00
Kim Alvefur
1fac00b2af mod_admin_shell: Show session role in c2s:show 2022-08-15 16:36:00 +02:00
Matthew Wild
1f4c6548dc Merge 0.12->trunk 2022-08-18 15:43:16 +01:00
Kim Alvefur
0e7e43f62f mod_admin_shell: Remove obsolete module:load() argument from 0.8 time
This 'config' argument was removed without explanation in d8dbf569766c
2022-08-05 14:41:13 +02:00
Kim Alvefur
5251c9b686 compat: Remove handling of Lua 5.1 location of 'unpack' function 2022-07-11 19:07:38 +02:00
Kim Alvefur
d0ab468f40 mod_admin_shell: Show session id ping reply came
To point out which one when more than one connection was established, or
if it's an existing connection, allows correlation with s2s:show() or
with logs.
2022-06-13 21:25:42 +02:00
Kim Alvefur
b0c116f47b mod_admin_shell: Include last (mod_cron) task run time in module:info()
Don't think this is otherwise shown anywhere outside of debug logs
2022-06-01 17:27:17 +02:00
Kim Alvefur
3717f5872a mod_admin_shell: Drop unused argument [luacheck] 2022-05-31 13:26:44 +02:00
Kim Alvefur
b7bd70874a mod_admin_shell: Show bound ports in module:info
I.e. the subset of port:list() relevant to the specified module.
2022-05-31 00:31:56 +02:00
Kim Alvefur
8ba6d3a2b1 mod_admin_shell: Document the 'watch' section in the built-in help 2022-05-30 14:54:10 +02:00
Kim Alvefur
0267554c8e prosodyctl shell: Communicate width of terminal to mod_admin_shell
This lets it adjust the width of tables to the actual terminal width.
2022-05-30 15:28:44 +02:00