mod_external_services: Warn about missing recommended fields

These are RECOMMENDED in XEP-0215 so most likely a mistake if they are
left out.

Of the two REQUIRED fields, 'host' falls back to module.host and 'type'
rejects the whole item.
This commit is contained in:
Kim Alvefur 2021-11-24 13:43:13 +01:00
parent 6e91f0ad43
commit 7683221a64

View file

@ -63,12 +63,16 @@ local function prepare(item)
end
if type(item.transport) == "string" then
srv.transport = item.transport;
else
module:log("warn", "Service missing recommended 'transport' field: %q", item);
end
if type(item.host) == "string" then
srv.host = item.host;
end
if type(item.port) == "number" then
srv.port = item.port;
elseif not srv.port then
module:log("warn", "Service missing recommended 'port' field: %q", item);
end
if type(item.username) == "string" then
srv.username = item.username;