mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 18:27:43 +00:00
Cache generated avatars
This commit is contained in:
parent
0d6c094f8f
commit
fb9874dc27
1 changed files with 52 additions and 25 deletions
|
@ -180,8 +180,9 @@ public class ContactInfo {
|
||||||
long now = new Date().getTime();
|
long now = new Date().getTime();
|
||||||
|
|
||||||
// Favicons
|
// Favicons
|
||||||
Log.i("Cleanup favicons");
|
Log.i("Cleanup avatars");
|
||||||
File[] favicons = new File(context.getFilesDir(), "favicons").listFiles();
|
for (String type : new String[]{"favicons", "generated"}) {
|
||||||
|
File[] favicons = new File(context.getFilesDir(), type).listFiles();
|
||||||
if (favicons != null)
|
if (favicons != null)
|
||||||
for (File file : favicons)
|
for (File file : favicons)
|
||||||
if (file.lastModified() + CACHE_FAVICON_DURATION < now) {
|
if (file.lastModified() + CACHE_FAVICON_DURATION < now) {
|
||||||
|
@ -190,6 +191,7 @@ public class ContactInfo {
|
||||||
Log.w("Error deleting " + file);
|
Log.w("Error deleting " + file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void clearCache(Context context) {
|
static void clearCache(Context context) {
|
||||||
clearCache(context, true);
|
clearCache(context, true);
|
||||||
|
@ -203,7 +205,8 @@ public class ContactInfo {
|
||||||
if (!files)
|
if (!files)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
final File dir = new File(context.getFilesDir(), "favicons");
|
for (String type : new String[]{"favicons", "generated"}) {
|
||||||
|
final File dir = new File(context.getFilesDir(), type);
|
||||||
executorFavicon.submit(new Runnable() {
|
executorFavicon.submit(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
|
@ -218,6 +221,7 @@ public class ContactInfo {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
static ContactInfo[] get(Context context, long account, String folderType, String selector, Address[] addresses) {
|
static ContactInfo[] get(Context context, long account, String folderType, String selector, Address[] addresses) {
|
||||||
|
@ -506,9 +510,23 @@ public class ContactInfo {
|
||||||
|
|
||||||
// Generated
|
// Generated
|
||||||
boolean identicon = false;
|
boolean identicon = false;
|
||||||
if (info.bitmap == null && generated) {
|
if (info.bitmap == null && generated && !TextUtils.isEmpty(info.email)) {
|
||||||
|
File dir = new File(context.getFilesDir(), "generated");
|
||||||
|
if (!dir.exists())
|
||||||
|
dir.mkdir();
|
||||||
|
|
||||||
|
File[] files = dir.listFiles(new FilenameFilter() {
|
||||||
|
@Override
|
||||||
|
public boolean accept(File file, String name) {
|
||||||
|
return name.startsWith(info.email);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (files != null && files.length == 1) {
|
||||||
|
Log.i("Generated from cache=" + files[0].getName());
|
||||||
|
info.bitmap = BitmapFactory.decodeFile(files[0].getAbsolutePath());
|
||||||
|
info.type = Helper.getExtension(files[0].getName());
|
||||||
|
} else {
|
||||||
int dp = Helper.dp2pixels(context, GENERATED_ICON_SIZE);
|
int dp = Helper.dp2pixels(context, GENERATED_ICON_SIZE);
|
||||||
if (!TextUtils.isEmpty(info.email)) {
|
|
||||||
if (identicons) {
|
if (identicons) {
|
||||||
identicon = true;
|
identicon = true;
|
||||||
info.bitmap = ImageHelper.generateIdenticon(
|
info.bitmap = ImageHelper.generateIdenticon(
|
||||||
|
@ -519,6 +537,15 @@ public class ContactInfo {
|
||||||
info.email, address.getPersonal(), dp, context);
|
info.email, address.getPersonal(), dp, context);
|
||||||
info.type = "letter";
|
info.type = "letter";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add to cache
|
||||||
|
File output = new File(dir, info.email + "." + info.type);
|
||||||
|
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(output))) {
|
||||||
|
info.bitmap.compress(Bitmap.CompressFormat.PNG, 90, os);
|
||||||
|
} catch (IOException ex) {
|
||||||
|
Log.e(ex);
|
||||||
|
}
|
||||||
|
Log.i("Generated to cache=" + output.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue