view mod_auth_external_insecure/examples/lua/prosody-auth-example.lua @ 4867:9d29467f4d5b

mod_http_xep227: Fix luacheck warnings
author Matthew Wild <mwild1@gmail.com>
date Sat, 15 Jan 2022 13:46:34 +0000
parents f84ede3e9e3b
children
line wrap: on
line source

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