all repos — cgit @ ce56d89a2662549acd178292450798f5ffcd4bc6

a hyperfast web frontend for git written in c

filters/email-gravatar.lua (view raw)

 1-- This script may be used with the email-filter or repo.email-filter settings in cgitrc.
 2-- It adds gravatar icons to author names. It is designed to be used with the lua:
 3-- prefix in filters. It is much faster than the corresponding python script.
 4--
 5-- Requirements:
 6-- 	luacrypto >= 0.3
 7-- 	<http://mkottman.github.io/luacrypto/>
 8--
 9
10local crypto = require("crypto")
11
12function filter_open(email, page)
13	buffer = ""
14	md5 = crypto.digest("md5", email:sub(2, -2):lower())
15end
16
17function filter_close()
18	html("<img src='//www.gravatar.com/avatar/" .. md5 .. "?s=13&amp;d=retro' style='height:10pt;width:10pt' alt='Gravatar' /> " .. buffer)
19end
20
21function filter_write(str)
22	buffer = buffer .. str
23end
24
25