view mod_reload_modules/mod_reload_modules.lua @ 502:aad0b2df9e6b

mod_reload_modules: Use module:hook_global() if available
author Matthew Wild <mwild1@gmail.com>
date Sat, 10 Dec 2011 22:48:59 +0000
parents 524f22ef2c2b
children 412f62d05a23
line wrap: on
line source

local mm = require "core.modulemanager";

local function reload_module(name)
	local ok, err = mm.reload(module.host, name);
	if ok then
		module:log("debug", "Reloaded %s", name);
	else
		module:log("error", "Failed to reload %s: %s", name, err);
	end
end

function reload_all()
	local modules = module:get_option_array("reload_modules");
	if not modules then
		module:log("warn", "No modules listed in the config to reload - set reload_modules to a list");
		return;
	end
	for _, module in ipairs(modules) do
		reload_module(module);
	end
end


if module.hook_global then
	module:hook_global("config-reloaded", reload_all);
else -- COMPAT w/pre-0.9
	function module.load()
		prosody.events.add_handler("config-reloaded", reload_all);
	end
	function module.unload()
		prosody.events.remove_handler("config-reloaded", reload_all);
	end
end