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
Kim Alvefur
7bc35fb961
Merge 0.12->trunk
2022-05-15 23:22:33 +02:00
Jonas Schäfer
38346dd6f1
net: isolate LuaSec-specifics
...
For this, various accessor functions are now provided directly on the
sockets, which reach down into the LuaSec implementation to obtain the
information.
While this may seem of little gain at first, it hides the implementation
detail of the LuaSec+LuaSocket combination that the actual socket and
the TLS layer are separate objects.
The net gain here is that an alternative implementation does not have to
emulate that specific implementation detail and "only" has to expose
LuaSec-compatible data structures on the new functions.
2022-04-27 17:44:14 +02:00
Matthew Wild
1ef09e4285
mod_admin_shell: Add watch:stanzas() command
2022-03-23 13:43:08 +00:00
Kim Alvefur
f9478ab242
mod_admin_shell: Squeeze some characters out of the Certificate column
...
The more compact these are, the better
2022-02-17 01:41:57 +01:00
Kim Alvefur
89c2a5ac30
mod_admin_shell: Fix description of muc:room() (thanks Link Mauve)
...
But then this is the internal API which is weird and unfriendly to
expose externally. Lots of methods to wrap tho ... one day.
2022-02-15 22:14:40 +01:00
Kim Alvefur
fd5a0f6a06
mod_admin_shell: Track connected events instead of created
...
The connection events are more appropriate here, where the s2s-created
events happens a bit later or earlier in a sessions lifetime depending
on its direction and for outgoing connections isn't actually the
creation time (which happens immediately after pressing enter, so not
very interesting), but rather closer to the connection time.
2022-02-06 14:34:02 +01:00
Kim Alvefur
0bff4f57cc
mod_admin_shell: Fix typo in comment [codespell]
2022-02-04 16:39:21 +01:00
Kim Alvefur
8fbf286e64
mod_admin_shell: Add descriptions of each column to 'help columns'
...
Since some of the titles are quite dense
2022-01-30 12:49:43 +01:00