Software /
code /
prosody
File
util/sasl/external.lua @ 6097:538cdc3d8225
plugins/muc/muc.lib: Move (de)construct_stanza_id into `handle_iq_to_occupant`
It is the only place they were used; and I left the old function names in as comments.
One reason for doing this was to reduce accesses to _occupants; which may be in a database in future revisions
author | daurnimator <quae@daurnimator.com> |
---|---|
date | Fri, 21 Feb 2014 17:17:01 -0500 |
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;