2013-07-06 13:54:35 +00:00
|
|
|
/*
|
|
|
|
* This file is part of gitg
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 - Jesse van den Kieboom
|
|
|
|
*
|
|
|
|
* gitg is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* gitg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with gitg. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
public class Gitg.AvatarCache : Object
|
|
|
|
{
|
|
|
|
private Gee.HashMap<string, Gdk.Pixbuf?> d_cache;
|
|
|
|
private static AvatarCache? s_instance;
|
|
|
|
|
|
|
|
construct
|
|
|
|
{
|
|
|
|
d_cache = new Gee.HashMap<string, Gdk.Pixbuf>();
|
|
|
|
}
|
|
|
|
|
|
|
|
private AvatarCache()
|
|
|
|
{
|
|
|
|
Object();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static AvatarCache @default()
|
|
|
|
{
|
|
|
|
if (s_instance == null)
|
|
|
|
{
|
|
|
|
s_instance = new AvatarCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_instance;
|
|
|
|
}
|
|
|
|
|
2015-08-25 16:32:27 +00:00
|
|
|
public async Gdk.Pixbuf? load(string email, int size = 50, Cancellable? cancellable = null)
|
2013-07-06 13:54:35 +00:00
|
|
|
{
|
|
|
|
var id = Checksum.compute_for_string(ChecksumType.MD5, email.down());
|
|
|
|
|
2015-08-25 16:32:27 +00:00
|
|
|
var ckey = @"$id $size";
|
|
|
|
|
|
|
|
if (d_cache.has_key(ckey))
|
2013-07-06 13:54:35 +00:00
|
|
|
{
|
2015-08-25 16:32:27 +00:00
|
|
|
return d_cache[ckey];
|
2013-07-06 13:54:35 +00:00
|
|
|
}
|
|
|
|
|
2015-12-29 22:57:54 +00:00
|
|
|
var gravatar = @"https://www.gravatar.com/avatar/$(id)?d=404&s=$(size)";
|
2013-07-06 13:54:35 +00:00
|
|
|
var gfile = File.new_for_uri(gravatar);
|
|
|
|
|
2015-08-25 16:32:27 +00:00
|
|
|
var pixbuf = yield read_avatar_from_file(id, gfile, size, cancellable);
|
2013-07-06 14:02:56 +00:00
|
|
|
|
2015-08-25 16:32:27 +00:00
|
|
|
d_cache[ckey] = pixbuf;
|
2013-07-06 14:02:56 +00:00
|
|
|
return pixbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
private async Gdk.Pixbuf? read_avatar_from_file(string id,
|
|
|
|
File file,
|
2015-08-25 16:32:27 +00:00
|
|
|
int size,
|
2013-07-06 14:02:56 +00:00
|
|
|
Cancellable? cancellable)
|
|
|
|
{
|
2013-07-06 13:54:35 +00:00
|
|
|
InputStream stream;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2015-12-19 20:03:51 +00:00
|
|
|
stream = yield Gitg.PlatformSupport.http_get(file, cancellable);
|
2013-07-06 13:54:35 +00:00
|
|
|
}
|
2019-04-29 17:31:44 +00:00
|
|
|
catch(Error e)
|
2013-07-06 13:54:35 +00:00
|
|
|
{
|
2020-05-27 14:21:19 +00:00
|
|
|
debug("Can not retrieve avatar from %s: %s", file.get_path(), e.message);
|
2013-07-06 13:54:35 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8[] buffer = new uint8[4096];
|
|
|
|
var loader = new Gdk.PixbufLoader();
|
|
|
|
|
2015-08-25 16:32:27 +00:00
|
|
|
loader.set_size(size, size);
|
2013-07-06 13:54:35 +00:00
|
|
|
|
2013-07-06 14:02:56 +00:00
|
|
|
return yield read_avatar(id, stream, buffer, loader, cancellable);
|
2013-07-06 13:54:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private async Gdk.Pixbuf? read_avatar(string id,
|
|
|
|
InputStream stream,
|
|
|
|
uint8[] buffer,
|
|
|
|
Gdk.PixbufLoader loader,
|
2013-07-06 14:02:56 +00:00
|
|
|
Cancellable? cancellable)
|
2013-07-06 13:54:35 +00:00
|
|
|
{
|
|
|
|
ssize_t n;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
n = yield stream.read_async(buffer, Priority.LOW, cancellable);
|
|
|
|
}
|
|
|
|
catch { return null; }
|
|
|
|
|
|
|
|
if (n != 0)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
loader.write(buffer[0:n]);
|
|
|
|
}
|
|
|
|
catch { return null; }
|
|
|
|
|
|
|
|
return yield read_avatar(id, stream, buffer, loader, cancellable);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Finished reading
|
|
|
|
try
|
|
|
|
{
|
|
|
|
loader.close();
|
|
|
|
} catch { return null; }
|
|
|
|
|
|
|
|
return loader.get_pixbuf();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ex: ts=4 noet
|