Commit graph

179 commits

Author SHA1 Message Date
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
Kim Alvefur
b5a87898ee mod_admin_shell: Use exact match instead of Lua patterns in c2s,s2s:show
It is unexpected that 'example.com' matches 'exampleicom.org' and this
use of Lua patterns is undocumented and unlikely to be widely known or
used.
2022-01-30 11:10:51 +01:00
Kim Alvefur
46ad556ca0 mod_admin_shell: Fix traceback on rendering graph of stats without extra labels
Stops an error when extra_labels is nil since it attempts to index it

Unsure about correctness
2022-01-29 15:01:38 +01:00
Kim Alvefur
d9f7b26328 mod_admin_shell: Add help section about stats 2022-01-29 14:58:37 +01:00
Kim Alvefur
09d7e131d0 mod_admin_shell: Add help section about customizing table columns 2022-01-28 20:39:13 +01:00
Kim Alvefur
7a706aecec mod_admin_shell: Add command to show current user roles 2022-01-23 20:06:50 +01:00
Kim Alvefur
1809c0460f mod_admin_shell: Add help section about roles
As in the argument to user:create() and user:roles()

Tricky to come up with something sensible to write when Prosody core
only knows of the 'prosody:admin' role so far.
2022-01-23 19:55:32 +01:00
Kim Alvefur
28bd099515 mod_admin_shell: Log creation of incoming s2s connections during ping
The 's2s-created' fires just after accepting the TCP connection, before
the addresses are known, so this can have some false positives.
2021-12-27 17:04:33 +01:00
Kim Alvefur
257f52d826 mod_admin_shell: Print s2s related events while waiting for ping
Gives a better idea of what's taking time.
2021-12-26 16:26:36 +01:00
Kim Alvefur
6e0bbc2af5 mod_smacks: Limit queue memory consumption using new util
This brings back the queue size limit that was once added, then removed
because destroying the session when reaching the limit was not great.
Instead, the queue wraps and overwrites the oldest unacked stanza on the
assumption that it will probably be acked anyway and thus does not need
to be delivered. If those discarded stanzas turn out to be needed on
resumption then the resumption fails.
2021-12-14 20:00:45 +01:00
Kim Alvefur
1ffb6f0b3d mod_admin_shell: Add port as a c2s/s2s:show column definition
Allows inferring whether Direct TLS was used, or perhaps which SRV
record was chosen. Not shown by default.
2021-12-07 13:21:20 +01:00
Kim Alvefur
9f2249b3db mod_admin_shell: Handle global roles (pass host=*)
Is it not odd that um.set_roles() takes `nil` to mean global?
2021-12-06 22:33:46 +01:00
Kim Alvefur
a45484c131 mod_admin_shell: Only check that local users exist locally 2021-12-06 22:23:38 +01:00
Kim Alvefur
cf137f9902 mod_admin_shell: Support setting roles on hosts other than the users'
Needed to e.g. grant admin rights on a component, or grant non-local
users local privileges.

Leave the same host syntax for convenience, since this might be the
common case.
2021-12-06 21:56:19 +01:00
Kim Alvefur
efa1f442ae mod_admin_shell: Add command for updating roles user:roles(jid, roles)
This would allow e.g. granting admin status without changing the config
and without a restart.
2021-12-06 21:55:57 +01:00
Kim Alvefur
95fae62ac5 mod_admin_shell: Allow setting roles when creating user 2021-12-04 02:25:01 +01:00
Kim Alvefur
2f274d8026 mod_admin_shell: List periodic tasks in module:info 2021-11-22 19:07:56 +01:00
Kim Alvefur
3f4a73c66b mod_admin_shell: Remove now redundant promise awaiting in dns:lookup() 2021-11-27 14:16:13 +01:00
Kim Alvefur
769a3ed263 mod_admin_shell: Remove now redundant promise awaiting in xmpp:ping() 2021-11-27 14:15:55 +01:00
Kim Alvefur
bdc838bf11 mod_admin_shell: Fix indentation
It was all of for some reason
2021-11-26 22:28:37 +01:00
Kim Alvefur
aac203f0d9 mod_admin_shell: Wait for promises
I've typed `>require"util.async".wait_for(...)` for the last time!
2021-11-26 22:26:48 +01:00
Kim Alvefur
51c1c97fe2 mod_admin_shell: Reduce width of 'Status' column
'unavailable' was the longest possibility, dropping it probably
differentiates available from unavailable more, in less space.
2021-11-26 11:40:48 +01:00
Kim Alvefur
2ec4d4a83d mod_admin_shell: Reduce width of 'Security' column (thanks Link Mauve)
Tricky to represent "secure, but no details" in short enough space.
2021-11-26 11:39:13 +01:00
Kim Alvefur
fe93f28b16 mod_admin_shell: Fix showing default HTTP path in module:info
Thanks mod_http_openmetrics
2021-11-25 17:07:13 +01:00
Kim Alvefur
6e91f0ad43 mod_admin_shell: Factor out simple function in module:info for reuse
Marginal improvement in readability
2021-11-24 20:12:22 +01:00
Kim Alvefur
1ac4aed7cd mod_admin_shell: List collected metrics in module:info
Lets you know what to look for with stats:show()
2021-11-24 20:03:38 +01:00
Kim Alvefur
2388b800b2 mod_admin_shell: List net providers in module:info 2021-11-23 17:59:40 +01:00
Kim Alvefur
ce8107379d mod_admin_shell: Return counts of shown vs total from new table views
Not exactly the way it was before, but close enough and useful.
2021-11-16 16:06:41 +01:00
Kim Alvefur
38c7c944ca mod_admin_shell: Handle absence of connection in security column (thanks arcseconds)
I surmise this can happen in a disconnected/smacks hibernation state.
2021-11-15 13:31:06 +01:00
Kim Alvefur
c9479cbb69 util.human.io: Pass nil to cell mapper to signal missing value
Seems more like conventional Lua than passing an empty string to signal
lack of value.
2021-11-12 11:43:24 +01:00
Kim Alvefur
35589d345e mod_admin_shell: Respect metatables in output serialization
Makes it so that returning e.g. util.cache :table() produces useful
output, which otherwise would look like empty tables.
2021-11-12 11:33:09 +01:00
Kim Alvefur
fd09aa9659 mod_admin_shell: Specify a width for cert column
Avoids ellipsis
2021-11-10 21:31:41 +01:00
Kim Alvefur
7f68cacb79 mod_admin_shell: Indicate bi-directional s2s connections 2021-11-10 20:25:37 +01:00
Kim Alvefur
5f93ef8119 mod_admin_shell: Allow passing columns as a string for convenience 2021-11-10 16:28:54 +01:00
Kim Alvefur
aef0454598 mod_admin_shell: Optionally group session listings by host when not included as column
Similar to the earlier view
2021-11-10 15:54:27 +01:00
Kim Alvefur
29535c322a mod_admin_shell: New table based implementation of c2s and s2s:show()
Nicer and more readable.

Thanks jonas’ and prosody@ for JID length stats to inform column widths.
2021-11-10 17:59:35 +01:00
Kim Alvefur
e1d1be0068 mod_admin_shell: Show HTTP base-URLs in module:info()
Because it's nice, not having to find it in http:list(), which could
have a lot of items.
2021-10-13 20:46:04 +02:00
Kim Alvefur
3d4ee088ae mod_admin_shell: Allow passing an exit code to server:shutdown()
Mirroring the internal API
2021-09-30 23:22:51 +02:00
Kim Alvefur
d6122ce3a5 mod_admin_shell: Keep unrestricted environment for session lifetime
Makes it so that global values set in the environment are kept longer
than within one line, and thus can be used until the session ends. They
still don't pollute the global environment, which is an error anyway.

Thanks phryk for noticing.
2021-08-11 14:55:59 +02:00
Kim Alvefur
df48c1e867 mod_admin_shell: module:info: List 'items' that can be formatted easily
Some items like HTTP providers would be very verbose, others are tricky
to handle.
2021-06-12 18:06:37 +02:00
Kim Alvefur
bd8d770411 mod_admin_shell: module:info: Show friendlier name for known 'items' 2021-06-12 18:06:13 +02:00