mod_http: Generate URL from configuration in prosodyctl

This removes the need to configure e.g. http_external_url or similar
settings in order to get correct URLs out of prosodyctl, as the API
depends on portmanager to know the actual ports that are used.
This commit is contained in:
Kim Alvefur 2023-07-26 14:39:36 +02:00
parent 3d3beadab6
commit 7721cc667b

View file

@ -82,6 +82,7 @@ function moduleapi.http_url(module, app_name, default_path, mode)
local external_url = url_parse(module:get_option_string("http_external_url")); local external_url = url_parse(module:get_option_string("http_external_url"));
if external_url and mode ~= "internal" then if external_url and mode ~= "internal" then
-- Current URL does not depend on knowing which ports are used, only configuration.
local url = { local url = {
scheme = external_url.scheme; scheme = external_url.scheme;
host = external_url.host; host = external_url.host;
@ -93,6 +94,36 @@ function moduleapi.http_url(module, app_name, default_path, mode)
return url_build(url); return url_build(url);
end end
if prosody.process_type ~= "prosody" then
-- We generally don't open ports outside of Prosody, so we can't rely on
-- portmanager to tell us which ports and services are used and derive the
-- URL from that, so instead we derive it entirely from configuration.
local https_ports = module:get_option_array("https_ports", { 5281 });
local scheme = "https";
local port = tonumber(https_ports[1]);
if not port then
-- https is disabled and no http_external_url set
scheme = "http";
local http_ports = module:get_option_array("http_ports", { 5280 });
port = tonumber(http_ports[1]);
if not port then
return "http://disabled.invalid/";
end
end
local url = {
scheme = scheme;
host = module:get_option_string("http_host", module.global and module:get_option_string("http_default_host") or module.host);
port = port;
path = get_base_path(module, app_name, default_path or "/" .. app_name);
}
if ports_by_scheme[url.scheme] == url.port then
url.port = nil
end
return url_build(url);
end
-- Use portmanager to find the actual port of https or http services
local services = portmanager.get_active_services(); local services = portmanager.get_active_services();
local http_services = services:get("https") or services:get("http") or {}; local http_services = services:get("https") or services:get("http") or {};
for interface, ports in pairs(http_services) do -- luacheck: ignore 213/interface for interface, ports in pairs(http_services) do -- luacheck: ignore 213/interface