mod_external_services: Allow specifying a credential generation callback

This is especially targeted at services added via the items API. More
involved credential generation should use the event hook.
This commit is contained in:
Kim Alvefur 2020-07-25 12:22:03 +02:00
parent 0b65dea7c0
commit 5bc6130e57

View file

@ -84,7 +84,7 @@ local function prepare(item)
srv.expires = os.time() + item.ttl;
end
if (item.secret == true and default_secret) or type(item.secret) == "string" then
local secret_cb = algorithms[item.algorithm] or algorithms[srv.type];
local secret_cb = item.credentials_cb or algorithms[item.algorithm] or algorithms[srv.type];
local secret = item.secret;
if secret == true then
secret = default_secret;