aboutsummaryrefslogtreecommitdiffstats
path: root/core/usermanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-06-04 14:33:36 +0100
committerMatthew Wild <mwild1@gmail.com>2010-06-04 14:33:36 +0100
commit3846f08f09defece7a04ef3e68b3843f5a206c08 (patch)
treeb4f0d686a0c95e975957f9d6943ffee8826937b5 /core/usermanager.lua
parentc294b198d31be8f2f9448442aad893462ff5e1c5 (diff)
downloadprosody-3846f08f09defece7a04ef3e68b3843f5a206c08.tar.gz
prosody-3846f08f09defece7a04ef3e68b3843f5a206c08.zip
Rename mod_defaultauth -> mod_auth_internal, mod_hashpassauth -> mod_auth_internal_hashed, and the providers to internal and internal_hashed respectively. Also no longer auto-load defaultauth, but instead auto-load the plugin selected for each host at startup based on the provider name.
Diffstat (limited to 'core/usermanager.lua')
-rw-r--r--core/usermanager.lua12
1 files changed, 9 insertions, 3 deletions
diff --git a/core/usermanager.lua b/core/usermanager.lua
index 6c269401..fe525bc1 100644
--- a/core/usermanager.lua
+++ b/core/usermanager.lua
@@ -7,6 +7,7 @@
--
local datamanager = require "util.datamanager";
+local modulemanager = require "core.modulemanager";
local log = require "util.logger".init("usermanager");
local type = type;
local error = error;
@@ -22,6 +23,8 @@ local prosody = _G.prosody;
local setmetatable = setmetatable;
+local default_provider = "internal";
+
module "usermanager"
function new_null_provider()
@@ -33,9 +36,8 @@ local function host_handler(host)
local host_session = hosts[host];
host_session.events.add_handler("item-added/auth-provider", function (event)
local provider = event.item;
- if config.get(host, "core", "authentication") == nil and provider.name == "default" then
- host_session.users = provider;
- elseif config.get(host, "core", "authentication") == provider.name then
+ local auth_provider = config.get(host, "core", "authentication") or default_provider;
+ if provider.name == auth_provider then
host_session.users = provider;
end
if host_session.users ~= nil and host_session.users.name ~= nil then
@@ -49,6 +51,10 @@ local function host_handler(host)
end
end);
host_session.users = new_null_provider(); -- Start with the default usermanager provider
+ local auth_provider = config.get(host, "core", "authentication") or default_provider;
+ if auth_provider ~= "null" then
+ modulemanager.load(host, "auth_"..auth_provider);
+ end
end;
prosody.events.add_handler("host-activated", host_handler, 100);
prosody.events.add_handler("component-activated", host_handler, 100);