mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
moduleapi: Allow soft dependencies via module:depends(mod, true)
This commit is contained in:
parent
83e4560a6c
commit
1bb0fa47bc
2 changed files with 7 additions and 2 deletions
1
CHANGES
1
CHANGES
|
@ -62,6 +62,7 @@ TRUNK
|
||||||
- Method for retrieving integer settings from config
|
- Method for retrieving integer settings from config
|
||||||
- It is now easy for modules to expose a Prosody shell command, by adding a shell-command item
|
- It is now easy for modules to expose a Prosody shell command, by adding a shell-command item
|
||||||
- Modules can now implement a module.ready method which will be called after server initialization
|
- Modules can now implement a module.ready method which will be called after server initialization
|
||||||
|
- module:depends() now accepts a second parameter 'soft' to enable soft dependencies
|
||||||
|
|
||||||
### Configuration
|
### Configuration
|
||||||
|
|
||||||
|
|
|
@ -136,10 +136,14 @@ function api:require(lib)
|
||||||
return f();
|
return f();
|
||||||
end
|
end
|
||||||
|
|
||||||
function api:depends(name)
|
function api:depends(name, soft)
|
||||||
local modulemanager = require"prosody.core.modulemanager";
|
local modulemanager = require"prosody.core.modulemanager";
|
||||||
if self:get_option_inherited_set("modules_disabled", {}):contains(name) then
|
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
|
end
|
||||||
if not self.dependencies then
|
if not self.dependencies then
|
||||||
self.dependencies = {};
|
self.dependencies = {};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue