# HG changeset patch # User Waqas Hussain # Date 1370259580 -18000 # Node ID 809f7d46ad5c69680453b63650517b1cb95cf91c # Parent 5fd0860c86cdcdde15a21de671774e193a45d11f mod_auth_custom_http: Initial commit. diff -r 5fd0860c86cd -r 809f7d46ad5c mod_auth_custom_http/mod_auth_custom_http.lua --- /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); +