Commit graph

222 commits

Author SHA1 Message Date
Kim Alvefur
98922d54b1 plugins: Prefix module imports with prosody namespace 2023-03-24 13:15:28 +01:00
Matthew Wild
e703759258 mod_admin_shell, mod_admin_telnet, util.prosodyctl.shell: Separate output from final result
Fixes the client pausing for input after output from commands.
2020-06-01 16:14:06 +01:00
Matthew Wild
b0463f0290 mod_admin_telnet: Become a front for mod_admin_shell 2020-06-01 15:43:47 +01:00
Kim Alvefur
29f51d7e6d mod_admin_telnet: Update existing sessions on reload
This removes the need to disconnect and reconnect to the telnet console
for changes to take effect.
2020-05-16 20:46:12 +02:00
Kim Alvefur
783f5430a5 mod_admin_telnet: Use tostring as fallback in pretty printing
This has some nice effects such as functions, VirtualHosts and other
things being printed using their `__tostring` metamethod.
2020-05-02 20:41:35 +02:00
Kim Alvefur
95b5facf3b mod_admin_telnet: Don't pretty-print the normal console stuff
Typing e.g. `c2s` would dump out a bunch of stuff that would probably
just confuse users.

Now you only get pretty-printing when poking around in the internals
with `>`.
2020-05-02 20:39:33 +02:00
Kim Alvefur
f1c4d468e2 mod_admin_telnet: Reuse existing pretty printing setup
Didn't do the configurable defaults thing here because I was going to do
this, so that there's only one spot where it's done.
2020-05-02 20:37:49 +02:00
Kim Alvefur
bfdff4488f mod_admin_telnet: Allow configuring pretty printing defaults
Mostly just to have the defaults merged so you can e.g.

output:configure({maxdepth=1})
2020-05-02 20:32:43 +02:00
Kim Alvefur
7369538232 mod_admin_telnet: Silence luacheck 2020-04-29 23:28:21 +02:00
Kim Alvefur
222299d18c mod_admin_telnet: Add a command to configure pretty-printing settings
Sometimes you wanna adjust the maxdepth or something.
2020-04-29 23:15:01 +02:00
Kim Alvefur
c38264dd58 mod_admin_telnet: Add a TODO for someone to find in the future 2020-04-29 22:59:01 +02:00
Kim Alvefur
3da0521744 mod_admin_telnet: Document HTTP command in internal help 2020-04-29 22:56:35 +02:00
Kim Alvefur
de35ba33a1 mod_admin_telnet: Document (in the internal help) debug commands 2020-04-29 22:48:36 +02:00
Kim Alvefur
edce14b4a4 mod_admin_telnet: Pretty-print values returned from commands
This makes it much nicer to inspect Prosody internals.

Existing textual status messages from commands are not serialized to
preserve existing behavior. Explicit serialization of configuration is
kept in order to make it clear that returned strings are serialized
strings that would look like what's actually in the config file.

The default maxdepth of 2 seems ought to be an okay default, balanced
between showing enough structure to continue exploring and DoS-ing your
terminal.

Thanks to Ge0rG for the motivation to finally do this.
2020-04-29 22:23:05 +02:00
Kim Alvefur
1724e9a271 Merge 0.11->trunk 2020-03-22 21:13:09 +01:00
Kim Alvefur
89af997157 mod_admin_telnet: Handle unavailable cipher info (fixes #1510)
The LuaSec :info() method gathers info using the OpenSSL function
SSL_get_current_cipher(). Documentation for this function states that it
may return NULL if no session has been established (yet). If so, the
LuaSec functions wrapping this return nil, triggering a nil-indexing
error in mod_admin_telnet.
2020-03-22 17:35:26 +01:00
Kim Alvefur
1969b96da1 mod_admin_telnet: Allow passing list of hosts to http:list()
Lets you select what hosts to list http services on. In particular, this
enables listing global http services, which was not possible before.
2020-02-24 18:38:09 +01:00
Kim Alvefur
3947003b7e mod_admin_telnet: Fix host selection filter, fixes loading on components
get_hosts_with_module(a component, mod) would still filter out
components since they don't have type="component" instead of "local"

Introduced in 4d3549e64489
2020-02-22 18:32:50 +01:00
Kim Alvefur
23cd82ba5f mod_admin_telnet: Reflow hosts filter for readability 2020-02-22 18:23:38 +01:00
Kim Alvefur
3827fd9716 mod_admin_telnet: Avoid indexing missing socket (thanks tmolitor)
if `sock` was nil it would still proceed with SNI and ALPN checks
2020-02-05 23:29:39 +01:00
Kim Alvefur
b37a36b1be mod_admin_telnet: Use promise based DNS resolving
Mostly done for testing this new API
2020-01-24 23:29:14 +01:00
Kim Alvefur
c305f96931 Merge 0.11->trunk 2020-01-24 23:28:15 +01:00
Kim Alvefur
1d1491c01b mod_admin_telnet: Create a DNS resolver per console session (fixes #1492)
This is now the common pattern, eg see mod_s2s.
2020-01-24 23:27:49 +01:00
Kim Alvefur
d7df11baf3 mod_admin_telnet: Silence luacheck warnings 2019-12-23 21:38:19 +01:00
Kim Alvefur
6183e7a303 mod_admin_telnet: Include config:get() in help text 2019-12-22 20:10:20 +01:00
Kim Alvefur
fac877feaa mod_admin_telnet: Use common sort function in s2s:show 2019-12-15 22:15:52 +01:00
Kim Alvefur
13622b141e mod_admin_telnet: Use existing host comparison when comparing JIDs 2019-12-15 21:44:58 +01:00
Kim Alvefur
567e4183b5 mod_admin_telnet: Sort hosts in module:list 2019-12-15 22:08:20 +01:00
Kim Alvefur
7b64b46af1 mod_admin_telnet: Refactor internal function for listing hosts
Splits out a function that doesn't deal with modules for reuse elsewhere
2019-12-15 22:07:24 +01:00
Kim Alvefur
d146d6b8ac mod_admin_telnet: Merge hostname comparison functions
Missed that there existed one already when writing the one for host:list
2019-12-15 21:42:42 +01:00
Kim Alvefur
d0cd5469d2 mod_admin_telnet: Sort by complete labels
Might as well.
2019-12-15 20:44:10 +01:00
Kim Alvefur
d7570eee7e mod_admin_telnet: Fix host sorting
Reversing each %P is a noop
2019-12-15 20:43:02 +01:00
Kim Alvefur
655294f93e mod_admin_telnet: Avoid using LuaSocket for timestamps
Using util.time will make it easier to move away from LuaSocket if we
ever wanted to do that.
2019-12-08 13:38:48 +01:00
Kim Alvefur
3d63c139e6 mod_admin_telnet: Sort hosts
Groups by domain in DNS hierarchy order or something.

Why not split on '.' you ask? Well becasue that's not what I typed here. Also "[^.]" is longer than "%P".
2019-11-30 21:56:21 +01:00
Kim Alvefur
593c04436f mod_admin_telnet: Display ALPN in show_tls() if supported and available 2019-11-21 00:16:20 +01:00
Kim Alvefur
e130b37797 mod_admin_telnet: Show SNI name in show_tls() if available 2019-11-20 21:31:46 +01:00
Kim Alvefur
1a78e0a7ac mod_admin_telnet: Show s2s authentication method (probably) used 2019-11-02 16:02:37 +01:00
Kim Alvefur
7b43531fa9 mod_admin_telnet: xmpp:ping: Log ping time 2019-10-06 19:35:35 +02:00
Kim Alvefur
f304a306dd mod_admin_telnet: Use new compact function for waiting on promises 2019-09-29 18:44:58 +02:00
Kim Alvefur
2a9da5b8f0 mod_admin_telnet: Identify native bidi sessions 2019-09-08 18:51:15 +02:00
Kim Alvefur
60fddf5c7c mod_admin_telnet: Identify bidi-capable s2sout sessions (fixes #1403) 2019-09-07 15:53:05 +02:00
Matthew Wild
e7d4ae6aac mod_admin_telnet: Allow viewing HTTP event listeners via debug:events('http') 2018-10-09 15:02:44 +01:00
Kim Alvefur
55998f91c2 mod_admin_telnet: Guard against missing table field 2018-09-30 14:55:39 +02:00
Kim Alvefur
03b285fc26 mod_admin_telnet: Create metatable only once 2018-09-30 14:55:15 +02:00
Kim Alvefur
d334d70ca6 mod_admin_telnet: Remove unused histogram [luacheck] 2018-09-30 14:54:51 +02:00
Kim Alvefur
86b9efb4ba mod_admin_telnet: Remove unused variable [luacheck] 2018-09-30 14:48:44 +02:00
Kim Alvefur
95c0aba3f5 mod_admin_telnet: Import net.server instead of relying on global 2018-09-30 14:37:25 +02:00
Kim Alvefur
a8aba229b0 mod_admin_telnet: Use prosody.hosts to be more explicit and avoid name clash with 'hosts' arguments [luacheck] 2018-09-30 14:33:42 +02:00
Kim Alvefur
5a249d370b mod_admin_telnet: Remove or rename various unused arguments and variables [luacheck] 2018-09-30 14:32:32 +02:00
Kim Alvefur
1efa591f74 mod_admin_telnet: Rename variable to avoid name clash [luacheck] 2018-09-30 14:16:49 +02:00