2012-09-12 01:23:19 +00:00
|
|
|
/**
|
2011-12-20 18:20:44 +00:00
|
|
|
* Copyright (C) 2011 Whisper Systems
|
2012-09-12 01:23:19 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* This program 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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.
|
2012-09-12 01:23:19 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms.recipients;
|
|
|
|
|
|
|
|
import android.content.Context;
|
2012-12-12 11:56:38 +00:00
|
|
|
import android.database.Cursor;
|
2011-12-20 18:20:44 +00:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.BitmapFactory;
|
|
|
|
import android.net.Uri;
|
2012-12-12 11:56:38 +00:00
|
|
|
import android.provider.ContactsContract;
|
|
|
|
import android.provider.ContactsContract.Contacts;
|
|
|
|
import android.provider.ContactsContract.PhoneLookup;
|
2012-12-24 16:40:37 +00:00
|
|
|
import android.util.Log;
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2012-12-31 00:42:33 +00:00
|
|
|
import org.thoughtcrime.securesms.contacts.ContactPhotoFactory;
|
2014-02-03 03:38:06 +00:00
|
|
|
import org.thoughtcrime.securesms.database.CanonicalAddressDatabase;
|
2014-01-14 08:26:43 +00:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.database.GroupDatabase;
|
2014-02-03 03:38:06 +00:00
|
|
|
import org.thoughtcrime.securesms.util.GroupUtil;
|
2012-12-24 16:40:37 +00:00
|
|
|
import org.thoughtcrime.securesms.util.LRUCache;
|
2013-09-11 22:32:18 +00:00
|
|
|
import org.whispersystems.textsecure.util.ListenableFutureTask;
|
2012-12-27 20:00:14 +00:00
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
2012-09-12 01:23:19 +00:00
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
import java.io.IOException;
|
2012-12-12 11:56:38 +00:00
|
|
|
import java.io.InputStream;
|
2012-12-24 16:40:37 +00:00
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.Map;
|
2012-12-27 20:00:14 +00:00
|
|
|
import java.util.concurrent.Callable;
|
|
|
|
import java.util.concurrent.ExecutorService;
|
2012-12-12 11:56:38 +00:00
|
|
|
|
|
|
|
public class RecipientProvider {
|
2012-09-12 01:23:19 +00:00
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
private static final Map<Long,Recipient> recipientCache = Collections.synchronizedMap(new LRUCache<Long,Recipient>(1000));
|
|
|
|
private static final ExecutorService asyncRecipientResolver = Util.newSingleThreadedLifoExecutor();
|
2012-09-12 01:23:19 +00:00
|
|
|
|
2012-12-12 11:56:38 +00:00
|
|
|
private static final String[] CALLER_ID_PROJECTION = new String[] {
|
|
|
|
PhoneLookup.DISPLAY_NAME,
|
|
|
|
PhoneLookup.LOOKUP_KEY,
|
|
|
|
PhoneLookup._ID,
|
|
|
|
};
|
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
public Recipient getRecipient(Context context, long recipientId, boolean asynchronous) {
|
|
|
|
Recipient cachedRecipient = recipientCache.get(recipientId);
|
2012-12-12 11:56:38 +00:00
|
|
|
|
2012-12-24 16:40:37 +00:00
|
|
|
if (cachedRecipient != null) return cachedRecipient;
|
2014-02-03 03:38:06 +00:00
|
|
|
else if (asynchronous) return getAsynchronousRecipient(context, recipientId);
|
|
|
|
else return getSynchronousRecipient(context, recipientId);
|
2012-12-24 16:40:37 +00:00
|
|
|
}
|
2012-12-12 11:56:38 +00:00
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
private Recipient getSynchronousRecipient(Context context, long recipientId) {
|
2012-12-24 16:40:37 +00:00
|
|
|
Log.w("RecipientProvider", "Cache miss [SYNC]!");
|
2012-12-12 11:56:38 +00:00
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
Recipient recipient;
|
|
|
|
RecipientDetails details;
|
|
|
|
String number = CanonicalAddressDatabase.getInstance(context).getAddressFromId(String.valueOf(recipientId));
|
2014-02-18 05:42:30 +00:00
|
|
|
final boolean isGroupRecipient = GroupUtil.isEncodedGroup(number);
|
2012-12-24 16:40:37 +00:00
|
|
|
|
2014-02-18 05:42:30 +00:00
|
|
|
if (isGroupRecipient) details = getGroupRecipientDetails(context, number);
|
|
|
|
else details = getRecipientDetails(context, number);
|
2014-01-14 08:26:43 +00:00
|
|
|
|
|
|
|
if (details != null) {
|
2014-02-03 03:38:06 +00:00
|
|
|
recipient = new Recipient(details.name, number, recipientId, details.contactUri, details.avatar);
|
2014-01-14 08:26:43 +00:00
|
|
|
} else {
|
2014-02-18 05:42:30 +00:00
|
|
|
final Bitmap defaultPhoto = isGroupRecipient
|
|
|
|
? ContactPhotoFactory.getDefaultGroupPhoto(context)
|
|
|
|
: ContactPhotoFactory.getDefaultContactPhoto(context);
|
|
|
|
recipient = new Recipient(null, number, recipientId, null, defaultPhoto);
|
2014-01-14 08:26:43 +00:00
|
|
|
}
|
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
recipientCache.put(recipientId, recipient);
|
2014-01-14 08:26:43 +00:00
|
|
|
return recipient;
|
|
|
|
}
|
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
private Recipient getAsynchronousRecipient(final Context context, final long recipientId) {
|
2012-12-24 16:40:37 +00:00
|
|
|
Log.w("RecipientProvider", "Cache miss [ASYNC]!");
|
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
final String number = CanonicalAddressDatabase.getInstance(context).getAddressFromId(String.valueOf(recipientId));
|
2014-02-18 05:42:30 +00:00
|
|
|
final boolean isGroupRecipient = GroupUtil.isEncodedGroup(number);
|
2014-01-14 08:26:43 +00:00
|
|
|
|
|
|
|
Callable<RecipientDetails> task = new Callable<RecipientDetails>() {
|
|
|
|
@Override
|
|
|
|
public RecipientDetails call() throws Exception {
|
2014-02-18 05:42:30 +00:00
|
|
|
if (isGroupRecipient) return getGroupRecipientDetails(context, number);
|
|
|
|
else return getRecipientDetails(context, number);
|
2014-01-14 08:26:43 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ListenableFutureTask<RecipientDetails> future = new ListenableFutureTask<RecipientDetails>(task, null);
|
|
|
|
|
|
|
|
asyncRecipientResolver.submit(future);
|
|
|
|
|
2014-02-18 05:42:30 +00:00
|
|
|
final Bitmap defaultPhoto = isGroupRecipient
|
|
|
|
? ContactPhotoFactory.getDefaultGroupPhoto(context)
|
|
|
|
: ContactPhotoFactory.getDefaultContactPhoto(context);
|
|
|
|
Recipient recipient = new Recipient(number, defaultPhoto, recipientId, future);
|
2014-02-03 03:38:06 +00:00
|
|
|
recipientCache.put(recipientId, recipient);
|
2014-01-14 08:26:43 +00:00
|
|
|
|
|
|
|
return recipient;
|
2012-12-24 16:40:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void clearCache() {
|
|
|
|
recipientCache.clear();
|
2012-12-12 11:56:38 +00:00
|
|
|
}
|
|
|
|
|
2014-02-20 23:41:52 +00:00
|
|
|
public void clearCache(Recipient recipient) {
|
|
|
|
if (recipientCache.containsKey(recipient.getRecipientId()))
|
|
|
|
recipientCache.remove(recipient.getRecipientId());
|
|
|
|
}
|
|
|
|
|
2012-12-24 16:40:37 +00:00
|
|
|
private RecipientDetails getRecipientDetails(Context context, String number) {
|
2012-12-12 11:56:38 +00:00
|
|
|
Uri uri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number));
|
2012-12-24 16:40:37 +00:00
|
|
|
Cursor cursor = context.getContentResolver().query(uri, CALLER_ID_PROJECTION,
|
|
|
|
null, null, null);
|
2012-12-12 11:56:38 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
if (cursor != null && cursor.moveToFirst()) {
|
|
|
|
Uri contactUri = Contacts.getLookupUri(cursor.getLong(2), cursor.getString(1));
|
|
|
|
Bitmap contactPhoto = getContactPhoto(context, Uri.withAppendedPath(Contacts.CONTENT_URI,
|
|
|
|
cursor.getLong(2)+""));
|
|
|
|
|
2012-12-24 16:40:37 +00:00
|
|
|
return new RecipientDetails(cursor.getString(0), contactUri, contactPhoto);
|
2012-12-12 11:56:38 +00:00
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
if (cursor != null)
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2014-01-14 08:26:43 +00:00
|
|
|
private RecipientDetails getGroupRecipientDetails(Context context, String groupId) {
|
|
|
|
try {
|
2014-02-03 03:38:06 +00:00
|
|
|
GroupDatabase.Reader reader = DatabaseFactory.getGroupDatabase(context)
|
|
|
|
.getGroup(GroupUtil.getDecodedId(groupId));
|
|
|
|
|
|
|
|
GroupDatabase.GroupRecord record;
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ((record = reader.getNext()) != null) {
|
|
|
|
byte[] avatarBytes = record.getAvatar();
|
|
|
|
Bitmap avatar;
|
2014-01-14 08:26:43 +00:00
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
if (avatarBytes == null) avatar = ContactPhotoFactory.getDefaultContactPhoto(context);
|
|
|
|
else avatar = BitmapFactory.decodeByteArray(avatarBytes, 0, avatarBytes.length);
|
2014-01-14 08:26:43 +00:00
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
return new RecipientDetails(record.getTitle(), null, avatar);
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
reader.close();
|
2014-01-14 08:26:43 +00:00
|
|
|
}
|
|
|
|
|
2014-02-03 03:38:06 +00:00
|
|
|
return null;
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w("RecipientProvider", e);
|
|
|
|
return null;
|
|
|
|
}
|
2014-01-14 08:26:43 +00:00
|
|
|
}
|
|
|
|
|
2012-12-12 11:56:38 +00:00
|
|
|
private Bitmap getContactPhoto(Context context, Uri uri) {
|
|
|
|
InputStream inputStream = ContactsContract.Contacts.openContactPhotoInputStream(context.getContentResolver(), uri);
|
|
|
|
|
|
|
|
if (inputStream == null)
|
2012-12-24 16:40:37 +00:00
|
|
|
return ContactPhotoFactory.getDefaultContactPhoto(context);
|
2012-12-12 11:56:38 +00:00
|
|
|
else
|
|
|
|
return BitmapFactory.decodeStream(inputStream);
|
|
|
|
}
|
|
|
|
|
2012-12-24 16:40:37 +00:00
|
|
|
public static class RecipientDetails {
|
|
|
|
public final String name;
|
|
|
|
public final Bitmap avatar;
|
|
|
|
public final Uri contactUri;
|
|
|
|
|
|
|
|
public RecipientDetails(String name, Uri contactUri, Bitmap avatar) {
|
|
|
|
this.name = name;
|
|
|
|
this.avatar = avatar;
|
|
|
|
this.contactUri = contactUri;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|