]> granicus.if.org Git - cgit/commitdiff
filter: fix libravatar email-filter https issue
authorChristian Hesse <mail@eworm.de>
Wed, 10 Sep 2014 09:24:07 +0000 (11:24 +0200)
committerLukas Fleischer <cgit@cryptocrack.de>
Sat, 13 Dec 2014 11:38:42 +0000 (12:38 +0100)
Serving cgit via https and getting avatar via http gives error messages
about untrusted content. This decides whether or not to use https link
by looking at the environment variable HTTPS, which is set in CGI.

filters/email-libravatar.lua

index a248be419073223e1d457e509a0dfedd955a71cf..b0e244747e1b683d6d6b19113acaa55423921b34 100644 (file)
@@ -15,7 +15,8 @@ function filter_open(email, page)
 end
 
 function filter_close()
-       html("<img src='//cdn.libravatar.org/avatar/" .. md5 .. "?s=13&amp;d=retro' width='13' height='13' alt='Libravatar' /> " .. buffer)
+       baseurl = os.getenv("HTTPS") and "https://seccdn.libravatar.org/" or "http://cdn.libravatar.org/"
+       html("<img src='" .. baseurl .. "avatar/" .. md5 .. "?s=13&amp;d=retro' width='13' height='13' alt='Libravatar' /> " .. buffer)
        return 0
 end