Use string list strdup_strings for mimetypes
[cgit.git] / filters / email-gravatar.lua
blob52cf4268a4963188e577aa0de8b06ad5dfc447c3
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 --
10 local crypto = require("crypto")
12 function filter_open(email, page)
13 buffer = ""
14 md5 = crypto.digest("md5", email:sub(2, -2):lower())
15 end
17 function filter_close()
18 html("<img src='//www.gravatar.com/avatar/" .. md5 .. "?s=13&amp;d=retro' width='13' height='13' alt='Gravatar' /> " .. buffer)
19 return 0
20 end
22 function filter_write(str)
23 buffer = buffer .. str
24 end