changeset 1043:809f7d46ad5c

mod_auth_custom_http: Initial commit.
author Waqas Hussain <waqas20@gmail.com>
date Mon, 03 Jun 2013 16:39:40 +0500
parents 5fd0860c86cd
children fcb9bf7ac107
files mod_auth_custom_http/mod_auth_custom_http.lua
diffstat 1 files changed, 67 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_auth_custom_http/mod_auth_custom_http.lua	Mon Jun 03 16:39:40 2013 +0500
@@ -0,0 +1,67 @@
+-- Prosody IM
+-- Copyright (C) 2008-2010 Waqas Hussain
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
+
+local datamanager = require "util.datamanager";
+local log = require "util.logger".init("auth_custom_http");
+local type = type;
+local error = error;
+local ipairs = ipairs;
+local hashes = require "util.hashes";
+local jid_bare = require "util.jid".bare;
+local config = require "core.configmanager";
+local usermanager = require "core.usermanager";
+local new_sasl = require "util.sasl".new;
+local nodeprep = require "util.encodings".stringprep.nodeprep;
+local hosts = hosts;
+
+local prosody = _G.prosody;
+
+local provider = {};
+
+function provider.test_password(username, password)
+	return nil, "Not supported"
+end
+
+function provider.get_password(username)
+	return nil, "Not supported"
+end
+
+function provider.set_password(username, password)
+	return nil, "Not supported"
+end
+
+function provider.user_exists(username)
+	return true;
+end
+
+function provider.create_user(username, password)
+	return nil, "Not supported"
+end
+
+function provider.delete_user(username)
+	return nil, "Not supported"
+end
+
+function provider.get_sasl_handler()
+	local getpass_authentication_profile = {
+		plain_test = function(sasl, username, password, realm)
+			local prepped_username = nodeprep(username);
+			if not prepped_username then
+				log("debug", "NODEprep failed on username: %s", username);
+				return "", nil;
+			end
+			local postdata = require "util.json".encode({ username = username, password = password });
+			local result = require "socket.http".request("http://example.com/path", postdata);
+			return result == "true", true;
+		end,
+	};
+	return new_sasl(module.host, getpass_authentication_profile);
+end
+	
+
+module:provides("auth", provider);
+