moduleapi: Allow soft dependencies via module:depends(mod, true)

This commit is contained in:
Matthew Wild 2025-02-16 13:29:07 +00:00
parent 83e4560a6c
commit 1bb0fa47bc
2 changed files with 7 additions and 2 deletions

View file

@ -136,10 +136,14 @@ function api:require(lib)
return f();
end
function api:depends(name)
function api:depends(name, soft)
local modulemanager = require"prosody.core.modulemanager";
if self:get_option_inherited_set("modules_disabled", {}):contains(name) then
error("Dependency on disabled module mod_"..name);
if not soft then
error("Dependency on disabled module mod_"..name);
end
self:log("debug", "Not loading disabled soft dependency mod_%s", name);
return nil, "disabled";
end
if not self.dependencies then
self.dependencies = {};