File

util/sasl/external.lua @ 6429:675aea867574

plugins/muc: Add muc-occupant-groupchat event - Plugins can cancel messages before they are broadcast; and while they still have real from jid - Use it for subject changes - Allows for custom roles (via role_rank) - Roles are now checked before subject - Removed muc-subject-change event
author daurnimator <quae@daurnimator.com>
date Thu, 25 Sep 2014 17:43:00 -0400
parent 5687:e879b53e9df8
child 6777:5de6b93d0190
line wrap: on
line source

local saslprep = require "util.encodings".stringprep.saslprep;

module "sasl.external"

local function external(self, message)
	message = saslprep(message);
	local state
	self.username, state = self.profile.external(message);

	if state == false then
		return "failure", "account-disabled";
	elseif state == nil  then
		return "failure", "not-authorized";
	elseif state == "expired" then
		return "false", "credentials-expired";
	end

	return "success";
end

function init(registerMechanism)
	registerMechanism("EXTERNAL", {"external"}, external);
end

return _M;