2017-03-02 14:37:32 +00:00
|
|
|
using Gdk;
|
|
|
|
using Gee;
|
2020-03-10 22:53:11 +00:00
|
|
|
using Qlite;
|
2017-03-02 14:37:32 +00:00
|
|
|
|
|
|
|
using Xmpp;
|
|
|
|
using Dino.Entities;
|
|
|
|
|
|
|
|
namespace Dino {
|
|
|
|
|
|
|
|
public class AvatarManager : StreamInteractionModule, Object {
|
2017-03-19 11:55:36 +00:00
|
|
|
public static ModuleIdentity<AvatarManager> IDENTITY = new ModuleIdentity<AvatarManager>("avatar_manager");
|
|
|
|
public string id { get { return IDENTITY.id; } }
|
2017-03-02 14:37:32 +00:00
|
|
|
|
2020-06-10 17:53:56 +00:00
|
|
|
public signal void received_avatar(Jid jid, Account account);
|
2017-03-02 14:37:32 +00:00
|
|
|
|
|
|
|
private enum Source {
|
|
|
|
USER_AVATARS,
|
|
|
|
VCARD
|
|
|
|
}
|
|
|
|
|
|
|
|
private StreamInteractor stream_interactor;
|
|
|
|
private Database db;
|
2020-06-10 17:53:56 +00:00
|
|
|
private string folder = null;
|
2017-03-02 14:37:32 +00:00
|
|
|
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);
|
2017-03-24 09:40:48 +00:00
|
|
|
private HashMap<string, Pixbuf> cached_pixbuf = new HashMap<string, Pixbuf>();
|
2019-06-11 12:45:26 +00:00
|
|
|
private HashMap<string, Gee.List<SourceFuncWrapper>> pending_pixbuf = new HashMap<string, Gee.List<SourceFuncWrapper>>();
|
2017-03-02 14:37:32 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
private AvatarManager(StreamInteractor stream_interactor, Database db) {
|
|
|
|
this.stream_interactor = stream_interactor;
|
|
|
|
this.db = db;
|
2020-06-10 17:53:56 +00:00
|
|
|
this.folder = Path.build_filename(Dino.get_storage_dir(), "avatars");
|
|
|
|
DirUtils.create_with_parents(this.folder, 0700);
|
2017-03-12 12:19:04 +00:00
|
|
|
|
2020-06-10 17:53:56 +00:00
|
|
|
stream_interactor.account_added.connect(on_account_added);
|
|
|
|
stream_interactor.module_manager.initialize_account_modules.connect((_, modules) => {
|
|
|
|
modules.add(new Xep.UserAvatars.Module());
|
|
|
|
modules.add(new Xep.VCard.Module());
|
|
|
|
});
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
2019-04-19 19:42:40 +00:00
|
|
|
private async Pixbuf? get_avatar_by_hash(string hash) {
|
2018-01-12 20:03:09 +00:00
|
|
|
if (cached_pixbuf.has_key(hash)) {
|
|
|
|
return cached_pixbuf[hash];
|
2017-03-24 09:40:48 +00:00
|
|
|
}
|
2019-06-11 12:45:26 +00:00
|
|
|
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>();
|
2020-06-10 17:53:56 +00:00
|
|
|
Pixbuf? image = yield get_image(hash);
|
2017-03-24 09:40:48 +00:00
|
|
|
if (image != null) {
|
2018-01-12 20:03:09 +00:00
|
|
|
cached_pixbuf[hash] = image;
|
2019-05-29 14:52:36 +00:00
|
|
|
} else {
|
|
|
|
db.avatar.delete().with(db.avatar.hash, "=", hash).perform();
|
2017-03-24 09:40:48 +00:00
|
|
|
}
|
2019-06-11 12:45:26 +00:00
|
|
|
foreach (SourceFuncWrapper sfw in pending_pixbuf[hash]) {
|
|
|
|
sfw.sfun();
|
|
|
|
}
|
2017-03-24 09:40:48 +00:00
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
2020-06-10 17:53:56 +00:00
|
|
|
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;
|
2019-04-19 19:42:40 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 17:53:56 +00:00
|
|
|
int source = -1;
|
|
|
|
string? hash = null;
|
|
|
|
if (user_avatars.has_key(jid)) {
|
|
|
|
hash = user_avatars[jid];
|
|
|
|
source = 1;
|
|
|
|
} else if (vcard_avatars.has_key(jid)) {
|
|
|
|
hash = vcard_avatars[jid];
|
|
|
|
source = 2;
|
2019-05-29 14:53:34 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 17:53:56 +00:00
|
|
|
if (hash == null) return null;
|
|
|
|
|
|
|
|
if (cached_pixbuf.has_key(hash)) {
|
|
|
|
return cached_pixbuf[hash];
|
|
|
|
}
|
|
|
|
|
|
|
|
XmppStream? stream = stream_interactor.get_stream(account);
|
|
|
|
if (stream == null || !stream.negotiation_complete) return null;
|
|
|
|
|
|
|
|
if (pending_pixbuf.has_key(hash)) {
|
|
|
|
pending_pixbuf[hash].add(new SourceFuncWrapper(get_avatar.callback));
|
|
|
|
yield;
|
|
|
|
return cached_pixbuf[hash];
|
2019-04-19 19:42:40 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 17:53:56 +00:00
|
|
|
pending_pixbuf[hash] = new ArrayList<SourceFuncWrapper>();
|
|
|
|
Pixbuf? image = yield get_image(hash);
|
|
|
|
if (image != null) {
|
|
|
|
cached_pixbuf[hash] = image;
|
|
|
|
} else {
|
|
|
|
Bytes? bytes = null;
|
|
|
|
if (source == 1) {
|
|
|
|
bytes = yield Xmpp.Xep.UserAvatars.fetch_image(stream, jid, hash);
|
|
|
|
} else if (source == 2) {
|
|
|
|
bytes = yield Xmpp.Xep.VCard.fetch_image(stream, jid, hash);
|
|
|
|
if (bytes == null && jid.is_bare()) {
|
|
|
|
db.avatar.delete().with(db.avatar.jid_id, "=", db.get_jid_id(jid)).perform();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (bytes != null) {
|
|
|
|
store_image(hash, bytes);
|
|
|
|
image = yield get_image(hash);
|
|
|
|
}
|
|
|
|
cached_pixbuf[hash] = image;
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
2020-06-10 17:53:56 +00:00
|
|
|
foreach (SourceFuncWrapper sfw in pending_pixbuf[hash]) {
|
|
|
|
sfw.sfun();
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
2020-06-10 17:53:56 +00:00
|
|
|
return image;
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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");
|
2018-01-12 20:03:09 +00:00
|
|
|
XmppStream stream = stream_interactor.get_stream(account);
|
2017-03-02 14:37:32 +00:00
|
|
|
if (stream != null) {
|
2020-06-10 17:53:56 +00:00
|
|
|
Xmpp.Xep.UserAvatars.publish_png(stream, buffer, pixbuf.width, pixbuf.height);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
} catch (Error e) {
|
2019-03-15 19:56:19 +00:00
|
|
|
warning(e.message);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void on_account_added(Account account) {
|
2020-06-10 17:53:56 +00:00
|
|
|
stream_interactor.module_manager.get_module(account, Xep.UserAvatars.Module.IDENTITY).received_avatar_hash.connect((stream, jid, id) =>
|
2020-03-10 22:53:11 +00:00
|
|
|
on_user_avatar_received.begin(account, jid, id)
|
2017-03-02 14:37:32 +00:00
|
|
|
);
|
2020-06-10 17:53:56 +00:00
|
|
|
stream_interactor.module_manager.get_module(account, Xep.VCard.Module.IDENTITY).received_avatar_hash.connect((stream, jid, id) =>
|
2020-03-10 22:53:11 +00:00
|
|
|
on_vcard_avatar_received.begin(account, jid, id)
|
2017-03-02 14:37:32 +00:00
|
|
|
);
|
|
|
|
|
2020-03-10 22:53:11 +00:00
|
|
|
foreach (var entry in get_avatar_hashes(account, Source.USER_AVATARS).entries) {
|
|
|
|
user_avatars[entry.key] = entry.value;
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
2020-03-10 22:53:11 +00:00
|
|
|
foreach (var entry in get_avatar_hashes(account, Source.VCARD).entries) {
|
2020-06-10 17:53:56 +00:00
|
|
|
|
|
|
|
// FIXME: remove. temporary to remove falsely saved avatars.
|
|
|
|
if (stream_interactor.get_module(MucManager.IDENTITY).is_groupchat(entry.key, account)) {
|
|
|
|
db.avatar.delete().with(db.avatar.jid_id, "=", db.get_jid_id(entry.key)).perform();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-10 22:53:11 +00:00
|
|
|
vcard_avatars[entry.key] = entry.value;
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-10 17:53:56 +00:00
|
|
|
private async void on_user_avatar_received(Account account, Jid jid_, string id) {
|
|
|
|
Jid jid = jid_.bare_jid;
|
|
|
|
|
2018-01-12 20:03:09 +00:00
|
|
|
if (!user_avatars.has_key(jid) || user_avatars[jid] != id) {
|
|
|
|
user_avatars[jid] = id;
|
2020-03-10 22:53:11 +00:00
|
|
|
set_avatar_hash(account, jid, id, Source.USER_AVATARS);
|
|
|
|
}
|
2020-06-10 17:53:56 +00:00
|
|
|
received_avatar(jid, account);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 17:53:56 +00:00
|
|
|
private async void on_vcard_avatar_received(Account account, Jid jid_, string id) {
|
|
|
|
bool is_gc = stream_interactor.get_module(MucManager.IDENTITY).might_be_groupchat(jid_.bare_jid, account);
|
|
|
|
Jid jid = is_gc ? jid_ : jid_.bare_jid;
|
|
|
|
|
2018-01-12 20:03:09 +00:00
|
|
|
if (!vcard_avatars.has_key(jid) || vcard_avatars[jid] != id) {
|
|
|
|
vcard_avatars[jid] = id;
|
2020-06-10 17:53:56 +00:00
|
|
|
if (jid.is_bare()) { // don't save MUC occupant avatars
|
2020-03-10 22:53:11 +00:00
|
|
|
set_avatar_hash(account, jid, id, Source.VCARD);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-10 17:53:56 +00:00
|
|
|
received_avatar(jid, account);
|
2020-03-10 22:53:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
2020-06-10 17:53:56 +00:00
|
|
|
|
|
|
|
public void store_image(string id, Bytes data) {
|
|
|
|
File file = File.new_for_path(Path.build_filename(folder, id));
|
|
|
|
try {
|
|
|
|
if (file.query_exists()) file.delete(); //TODO y?
|
|
|
|
DataOutputStream fos = new DataOutputStream(file.create(FileCreateFlags.REPLACE_DESTINATION));
|
|
|
|
fos.write_bytes_async.begin(data);
|
|
|
|
} catch (Error e) {
|
|
|
|
// Ignore: we failed in storing, so we refuse to display later...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool has_image(string id) {
|
|
|
|
File file = File.new_for_path(Path.build_filename(folder, id));
|
|
|
|
return file.query_exists();
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Pixbuf? get_image(string id) {
|
|
|
|
try {
|
|
|
|
File file = File.new_for_path(Path.build_filename(folder, id));
|
|
|
|
FileInputStream stream = yield file.read_async();
|
|
|
|
|
|
|
|
uint8 fbuf[1024];
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
Checksum checksum = new Checksum (ChecksumType.SHA1);
|
|
|
|
while ((size = yield stream.read_async(fbuf)) > 0) {
|
|
|
|
checksum.update(fbuf, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (checksum.get_string() != id) {
|
|
|
|
FileUtils.remove(file.get_path());
|
|
|
|
}
|
|
|
|
stream.seek(0, SeekType.SET);
|
|
|
|
return yield new Pixbuf.from_stream_async(stream, null);
|
|
|
|
} catch (Error e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
2019-03-15 19:56:19 +00:00
|
|
|
}
|