core/usermanager.lua

Thu, 23 Oct 2008 03:53:51 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 23 Oct 2008 03:53:51 +0100
changeset 120
ef964468f174
parent 60
44800be871f5
child 228
875842235836
permissions
-rw-r--r--

TLS/SASL no longer should include the connhandler module


require "util.datamanager"
local datamanager = datamanager;
local log = require "util.logger".init("usermanager");

module "usermanager"

function validate_credentials(host, username, password)
	log("debug", "User '%s' is being validated", username);
	local credentials = datamanager.load(username, host, "accounts") or {};
	if password == credentials.password then return true; end
	return false;
end

function user_exists(username, host)
	return datamanager.load(username, host, "accounts") ~= nil;
end

function create_user(username, password, host)
	return datamanager.store(username, host, "accounts", {password = password});
end

return _M;

mercurial