Software /
code /
prosody
Changeset
11361:dab1a6e46087
mod_admin_shell: List global HTTP endpoints by default
Trick copied from the module commands
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 03 Feb 2021 23:28:02 +0100 |
parents | 11360:f36a2e54ac81 |
children | 11362:52d93fba2ee1 |
files | plugins/mod_admin_shell.lua |
diffstat | 1 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_admin_shell.lua Wed Feb 03 22:13:33 2021 +0100 +++ b/plugins/mod_admin_shell.lua Wed Feb 03 23:28:02 2021 +0100 @@ -1224,12 +1224,17 @@ function def_env.http:list(hosts) local print = self.session.print; + hosts = array.collect(set.new({ not hosts and "*" or nil }) + get_hosts_set(hosts)):sort(_sort_hosts); - for host in get_hosts_set(hosts) do + for _, host in ipairs(hosts) do local http_apps = modulemanager.get_items("http-provider", host); if #http_apps > 0 then local http_host = module:context(host):get_option_string("http_host"); - print("HTTP endpoints on "..host..(http_host and (" (using "..http_host.."):") or ":")); + if host == "*" then + print("Global HTTP endpoints available on all hosts:"); + else + print("HTTP endpoints on "..host..(http_host and (" (using "..http_host.."):") or ":")); + end for _, provider in ipairs(http_apps) do local url = module:context(host):http_url(provider.name, provider.default_path); print("", url);