mod_auth_external/examples/lua/prosody-auth-example.lua
author Kim Alvefur <zash@zash.se>
Mon, 18 May 2015 02:33:43 +0200
changeset 1742 b3f048af2dfe
parent 1164 b6280e8886f4
permissions -rw-r--r--
mod_storage_xmlarchive: The last :seek() should return something truish, if not, don't ignore

local actions = {};

function actions.auth(data)
	local user, host, pass = data:match("^([^:]+):([^:]+):(.+)$");
	if user == "someone" then
		return "1";
	end
end

for line in io.lines() do
	local action, data = line:match("^([^:]+)(.*)$");
	print(actions[action] and actions[action](data) or "0");
end