2014-01-10 06:17:09 +01:00
|
|
|
-- This script may be used with the email-filter or repo.email-filter settings in cgitrc.
|
|
|
|
-- It adds gravatar icons to author names. It is designed to be used with the lua:
|
|
|
|
-- prefix in filters. It is much faster than the corresponding python script.
|
|
|
|
--
|
|
|
|
-- Requirements:
|
2019-01-03 02:11:14 +01:00
|
|
|
-- luaossl
|
|
|
|
-- <http://25thandclement.com/~william/projects/luaossl.html>
|
2014-01-10 06:17:09 +01:00
|
|
|
--
|
|
|
|
|
2019-01-03 02:11:14 +01:00
|
|
|
local digest = require("openssl.digest")
|
|
|
|
|
|
|
|
function md5_hex(input)
|
|
|
|
local b = digest.new("md5"):final(input)
|
|
|
|
local x = ""
|
|
|
|
for i = 1, #b do
|
|
|
|
x = x .. string.format("%.2x", string.byte(b, i))
|
|
|
|
end
|
|
|
|
return x
|
|
|
|
end
|
2014-01-10 06:17:09 +01:00
|
|
|
|
2014-01-13 16:24:40 +01:00
|
|
|
function filter_open(email, page)
|
2014-01-10 06:17:09 +01:00
|
|
|
buffer = ""
|
2019-01-03 02:11:14 +01:00
|
|
|
md5 = md5_hex(email:sub(2, -2):lower())
|
2014-01-10 06:17:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function filter_close()
|
2014-01-15 13:39:54 +01:00
|
|
|
html("<img src='//www.gravatar.com/avatar/" .. md5 .. "?s=13&d=retro' width='13' height='13' alt='Gravatar' /> " .. buffer)
|
2014-01-14 18:07:23 +01:00
|
|
|
return 0
|
2014-01-10 06:17:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function filter_write(str)
|
|
|
|
buffer = buffer .. str
|
|
|
|
end
|
|
|
|
|
|
|
|
|