blob: a9a8fb862d344801159559f045d5350df6ded66c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
using Gdk;
using Xmpp;
namespace Dino {
public class AvatarStorage : Xep.PixbufStorage, Object {
string folder;
public AvatarStorage(string folder) {
this.folder = folder;
}
public void store(string id, uint8[] data) {
File file = File.new_for_path(id);
if (file.query_exists()) file.delete(); //TODO y?
DataOutputStream fos = new DataOutputStream(file.create(FileCreateFlags.REPLACE_DESTINATION));
fos.write(data);
}
public bool has_image(string id) {
File file = File.new_for_path(folder + id);
return file.query_exists();
}
public Pixbuf? get_image(string id) {
try {
return new Pixbuf.from_file(folder + id);
} catch (Error e) {
return null;
}
}
}
}
|