191 lines
7.3 KiB
Vala
191 lines
7.3 KiB
Vala
using Gdk;
|
|
using Gee;
|
|
using Qlite;
|
|
|
|
using Xmpp;
|
|
using Dino.Entities;
|
|
|
|
namespace Dino {
|
|
|
|
public class AvatarManager : StreamInteractionModule, Object {
|
|
public static ModuleIdentity<AvatarManager> IDENTITY = new ModuleIdentity<AvatarManager>("avatar_manager");
|
|
public string id { get { return IDENTITY.id; } }
|
|
|
|
public signal void received_avatar(Pixbuf avatar, Jid jid, Account account);
|
|
|
|
private enum Source {
|
|
USER_AVATARS,
|
|
VCARD
|
|
}
|
|
|
|
private StreamInteractor stream_interactor;
|
|
private Database db;
|
|
private HashMap<Jid, string> user_avatars = new HashMap<Jid, string>(Jid.hash_func, Jid.equals_func);
|
|
private HashMap<Jid, string> vcard_avatars = new HashMap<Jid, string>(Jid.hash_func, Jid.equals_func);
|
|
private AvatarStorage avatar_storage = new AvatarStorage(get_storage_dir());
|
|
private HashMap<string, Pixbuf> cached_pixbuf = new HashMap<string, Pixbuf>();
|
|
private HashMap<string, Gee.List<SourceFuncWrapper>> pending_pixbuf = new HashMap<string, Gee.List<SourceFuncWrapper>>();
|
|
private const int MAX_PIXEL = 192;
|
|
|
|
public static void start(StreamInteractor stream_interactor, Database db) {
|
|
AvatarManager m = new AvatarManager(stream_interactor, db);
|
|
stream_interactor.add_module(m);
|
|
}
|
|
|
|
public static string get_storage_dir() {
|
|
return Path.build_filename(Dino.get_storage_dir(), "avatars");
|
|
}
|
|
|
|
private AvatarManager(StreamInteractor stream_interactor, Database db) {
|
|
this.stream_interactor = stream_interactor;
|
|
this.db = db;
|
|
stream_interactor.account_added.connect(on_account_added);
|
|
stream_interactor.module_manager.initialize_account_modules.connect(initialize_avatar_modules);
|
|
}
|
|
|
|
private void initialize_avatar_modules(Account account, ArrayList<XmppStreamModule> modules) {
|
|
modules.add(new Xep.UserAvatars.Module(avatar_storage));
|
|
modules.add(new Xep.VCard.Module(avatar_storage));
|
|
}
|
|
|
|
private async Pixbuf? get_avatar_by_hash(string hash) {
|
|
if (cached_pixbuf.has_key(hash)) {
|
|
return cached_pixbuf[hash];
|
|
}
|
|
if (pending_pixbuf.has_key(hash)) {
|
|
pending_pixbuf[hash].add(new SourceFuncWrapper(get_avatar_by_hash.callback));
|
|
yield;
|
|
return cached_pixbuf[hash];
|
|
}
|
|
pending_pixbuf[hash] = new ArrayList<SourceFuncWrapper>();
|
|
Pixbuf? image = yield avatar_storage.get_image(hash);
|
|
if (image != null) {
|
|
cached_pixbuf[hash] = image;
|
|
} else {
|
|
db.avatar.delete().with(db.avatar.hash, "=", hash).perform();
|
|
}
|
|
foreach (SourceFuncWrapper sfw in pending_pixbuf[hash]) {
|
|
sfw.sfun();
|
|
}
|
|
return image;
|
|
}
|
|
|
|
public bool has_avatar(Account account, Jid jid) {
|
|
string? hash = get_avatar_hash(account, jid);
|
|
if (hash != null) {
|
|
if (cached_pixbuf.has_key(hash)) {
|
|
return true;
|
|
}
|
|
return avatar_storage.has_image(hash);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public async Pixbuf? get_avatar(Account account, Jid jid) {
|
|
Jid jid_ = jid;
|
|
if (!stream_interactor.get_module(MucManager.IDENTITY).is_groupchat_occupant(jid, account)) {
|
|
jid_ = jid.bare_jid;
|
|
}
|
|
|
|
string? hash = get_avatar_hash(account, jid_);
|
|
if (hash != null) {
|
|
return yield get_avatar_by_hash(hash);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private string? get_avatar_hash(Account account, Jid jid) {
|
|
string? user_avatars_id = user_avatars[jid];
|
|
if (user_avatars_id != null) {
|
|
return user_avatars_id;
|
|
}
|
|
string? vcard_avatars_id = vcard_avatars[jid];
|
|
if (vcard_avatars_id != null) {
|
|
return vcard_avatars_id;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public void publish(Account account, string file) {
|
|
try {
|
|
Pixbuf pixbuf = new Pixbuf.from_file(file);
|
|
if (pixbuf.width >= pixbuf.height && pixbuf.width > MAX_PIXEL) {
|
|
int dest_height = (int) ((float) MAX_PIXEL / pixbuf.width * pixbuf.height);
|
|
pixbuf = pixbuf.scale_simple(MAX_PIXEL, dest_height, InterpType.BILINEAR);
|
|
} else if (pixbuf.height > pixbuf.width && pixbuf.width > MAX_PIXEL) {
|
|
int dest_width = (int) ((float) MAX_PIXEL / pixbuf.height * pixbuf.width);
|
|
pixbuf = pixbuf.scale_simple(dest_width, MAX_PIXEL, InterpType.BILINEAR);
|
|
}
|
|
uint8[] buffer;
|
|
pixbuf.save_to_buffer(out buffer, "png");
|
|
XmppStream stream = stream_interactor.get_stream(account);
|
|
if (stream != null) {
|
|
stream.get_module(Xep.UserAvatars.Module.IDENTITY).publish_png(stream, buffer, pixbuf.width, pixbuf.height);
|
|
}
|
|
} catch (Error e) {
|
|
warning(e.message);
|
|
}
|
|
}
|
|
|
|
private void on_account_added(Account account) {
|
|
stream_interactor.module_manager.get_module(account, Xep.UserAvatars.Module.IDENTITY).received_avatar.connect((stream, jid, id) =>
|
|
on_user_avatar_received.begin(account, jid, id)
|
|
);
|
|
stream_interactor.module_manager.get_module(account, Xep.VCard.Module.IDENTITY).received_avatar.connect((stream, jid, id) =>
|
|
on_vcard_avatar_received.begin(account, jid, id)
|
|
);
|
|
|
|
foreach (var entry in get_avatar_hashes(account, Source.USER_AVATARS).entries) {
|
|
user_avatars[entry.key] = entry.value;
|
|
}
|
|
foreach (var entry in get_avatar_hashes(account, Source.VCARD).entries) {
|
|
vcard_avatars[entry.key] = entry.value;
|
|
}
|
|
}
|
|
|
|
private async void on_user_avatar_received(Account account, Jid jid, string id) {
|
|
if (!user_avatars.has_key(jid) || user_avatars[jid] != id) {
|
|
user_avatars[jid] = id;
|
|
set_avatar_hash(account, jid, id, Source.USER_AVATARS);
|
|
}
|
|
Pixbuf? avatar = yield get_avatar_by_hash(id);
|
|
if (avatar != null) {
|
|
received_avatar(avatar, jid, account);
|
|
}
|
|
}
|
|
|
|
private async void on_vcard_avatar_received(Account account, Jid jid, string id) {
|
|
if (!vcard_avatars.has_key(jid) || vcard_avatars[jid] != id) {
|
|
vcard_avatars[jid] = id;
|
|
if (!jid.is_full()) { // don't save MUC occupant avatars
|
|
set_avatar_hash(account, jid, id, Source.VCARD);
|
|
}
|
|
}
|
|
Pixbuf? avatar = yield get_avatar_by_hash(id);
|
|
if (avatar != null) {
|
|
received_avatar(avatar, jid, account);
|
|
}
|
|
}
|
|
|
|
public void set_avatar_hash(Account account, Jid jid, string hash, int type) {
|
|
db.avatar.insert()
|
|
.value(db.avatar.jid_id, db.get_jid_id(jid))
|
|
.value(db.avatar.account_id, account.id)
|
|
.value(db.avatar.hash, hash)
|
|
.value(db.avatar.type_, type)
|
|
.perform();
|
|
}
|
|
|
|
public HashMap<Jid, string> get_avatar_hashes(Account account, int type) {
|
|
HashMap<Jid, string> ret = new HashMap<Jid, string>(Jid.hash_func, Jid.equals_func);
|
|
foreach (Row row in db.avatar.select({db.avatar.jid_id, db.avatar.hash})
|
|
.with(db.avatar.type_, "=", type)
|
|
.with(db.avatar.account_id, "=", account.id)) {
|
|
ret[db.get_jid_by_id(row[db.avatar.jid_id])] = row[db.avatar.hash];
|
|
}
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
}
|