/usr/share/lua/5.1/recaptcha.lua is in sputnik 12.06.27-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | module(..., package.seeall)
-----------------------------------------------------------------------------
-- ReCaptcha (http://recaptcha.net/) is a free captcha web service that
-- shows the visitors words from old books helping digitize them. This,
-- module provides a Lua interface to recaptcha. You will need to get your
-- own API key from recaptcha.net to use it.
--
-- See http://sputnik.freewisdom.org/lib/recaptcha
-- License: MIT/X
-- (c) 2008 Yuri Takhteyev
-----------------------------------------------------------------------------
local ReCaptcha = {}
local ReCaptcha_mt = {__metatable = {}, __index = ReCaptcha}
-----------------------------------------------------------------------------
-- Creates a new ReCaptcha object.
--
-- @param args a single argument with two fields: the private API
-- key and the public API key.
-- @return an instance of ReCaptcha.
-----------------------------------------------------------------------------
function new(args)
local obj = setmetatable({}, ReCaptcha_mt)
obj.private = args[2]
obj.public = args[1]
return obj
end
-----------------------------------------------------------------------------
-- Returns a table of names of fields posted by the captcha widget.
--
-- @return a table of field names.
-----------------------------------------------------------------------------
function ReCaptcha:get_fields()
return {"recaptcha_challenge_field", "recaptcha_response_field"}
end
-----------------------------------------------------------------------------
-- Returns the html block that creates the ReCaptcha widget.
--
-- @param options a table of options.
-- @return a string containing JavaScript and HTML for
-- inclusion in an HTML document.
-----------------------------------------------------------------------------
function ReCaptcha:get_html(options)
options = options or {}
return string.format([[
<script>
var RecaptchaOptions = {
theme : '%s',
lang : '%s',
};
</script>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=%s">
</script>
<noscript>
<iframe src="http://api.recaptcha.net/noscript?k=%s"
height="300" width="500" frameborder="0"></iframe><br/>
<textarea name="recaptcha_challenge_field" rows="3" cols="40">
</textarea>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge">
</noscript>
]], options.theme or "white", options.lang or "en", self.public, self.public)
end
-----------------------------------------------------------------------------
-- Verifies the captcha.
--
-- @param params the table of POST parameters submitted by the client.
-- @param remote_ip user's IP address.
-- @return true if the verification is successful and false
-- otherwise.
-----------------------------------------------------------------------------
function ReCaptcha:verify(params, remote_ip)
require("socket.http")
local result, err = socket.http.request(
"http://api-verify.recaptcha.net/verify",
"privatekey="..self.private
.."&remoteip="..remote_ip
.."&challenge="..params.recaptcha_challenge_field
.."&response="..(params.recaptcha_response_field or "")
)
if not result then
return false, err
else
if result=="true" then
return true
else
result, err = string.match(result, "(%w+)\n(.*)")
return (result and result=="true"), err
end
end
end
|