2012-07-20 02:23:49 +00:00
|
|
|
/**
|
2011-12-20 18:20:44 +00:00
|
|
|
* Copyright (C) 2011 Whisper Systems
|
2012-07-20 02:23:49 +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-07-20 02:23:49 +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;
|
|
|
|
|
2014-10-16 05:26:55 +00:00
|
|
|
import android.content.ActivityNotFoundException;
|
2011-12-20 18:20:44 +00:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.Intent;
|
2014-02-23 21:59:12 +00:00
|
|
|
import android.content.res.TypedArray;
|
2014-03-09 13:00:39 +00:00
|
|
|
import android.graphics.Bitmap;
|
2014-06-03 23:24:44 +00:00
|
|
|
import android.provider.ContactsContract;
|
2012-09-12 01:23:19 +00:00
|
|
|
import android.provider.ContactsContract.QuickContact;
|
2015-03-08 18:37:18 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2015-01-30 06:37:01 +00:00
|
|
|
import android.text.TextUtils;
|
2012-07-20 02:23:49 +00:00
|
|
|
import android.util.AttributeSet;
|
2011-12-20 18:20:44 +00:00
|
|
|
import android.util.Log;
|
|
|
|
import android.view.View;
|
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.LinearLayout;
|
|
|
|
import android.widget.TextView;
|
2014-10-16 05:26:55 +00:00
|
|
|
import android.widget.Toast;
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2015-03-24 12:44:22 +00:00
|
|
|
import com.afollestad.materialdialogs.AlertDialogWrapper;
|
|
|
|
|
2014-12-14 02:10:59 +00:00
|
|
|
import org.thoughtcrime.securesms.ConversationFragment.SelectionClickListener;
|
2015-04-13 17:30:22 +00:00
|
|
|
import org.thoughtcrime.securesms.components.BubbleContainer;
|
2015-03-31 22:44:41 +00:00
|
|
|
import org.thoughtcrime.securesms.components.ThumbnailView;
|
2014-12-14 02:10:59 +00:00
|
|
|
import org.thoughtcrime.securesms.contacts.ContactPhotoFactory;
|
2014-11-03 23:16:04 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2014-03-01 22:17:55 +00:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
2012-07-20 02:23:49 +00:00
|
|
|
import org.thoughtcrime.securesms.database.MmsDatabase;
|
2015-01-15 21:35:35 +00:00
|
|
|
import org.thoughtcrime.securesms.database.MmsSmsDatabase;
|
2014-03-01 22:17:55 +00:00
|
|
|
import org.thoughtcrime.securesms.database.SmsDatabase;
|
2012-10-28 23:04:24 +00:00
|
|
|
import org.thoughtcrime.securesms.database.model.MediaMmsMessageRecord;
|
|
|
|
import org.thoughtcrime.securesms.database.model.MessageRecord;
|
|
|
|
import org.thoughtcrime.securesms.database.model.NotificationMmsMessageRecord;
|
2014-11-03 23:16:04 +00:00
|
|
|
import org.thoughtcrime.securesms.jobs.MmsDownloadJob;
|
2014-11-08 19:35:58 +00:00
|
|
|
import org.thoughtcrime.securesms.jobs.MmsSendJob;
|
|
|
|
import org.thoughtcrime.securesms.jobs.SmsSendJob;
|
2014-12-12 09:03:24 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.PartAuthority;
|
2012-07-20 02:23:49 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.Slide;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
2014-02-20 05:06:54 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DateUtils;
|
2014-06-12 01:03:01 +00:00
|
|
|
import org.thoughtcrime.securesms.util.Emoji;
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2014-12-14 02:10:59 +00:00
|
|
|
import java.util.Set;
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
/**
|
|
|
|
* A view that displays an individual conversation item within a conversation
|
|
|
|
* thread. Used by ComposeMessageActivity's ListActivity via a ConversationAdapter.
|
2012-07-20 02:23:49 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
public class ConversationItem extends LinearLayout {
|
2014-02-23 21:59:12 +00:00
|
|
|
private final static String TAG = ConversationItem.class.getSimpleName();
|
2011-12-20 18:20:44 +00:00
|
|
|
|
|
|
|
private MessageRecord messageRecord;
|
|
|
|
private MasterSecret masterSecret;
|
2013-05-05 19:51:36 +00:00
|
|
|
private boolean groupThread;
|
2014-02-26 08:30:29 +00:00
|
|
|
private boolean pushDestination;
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
private View bodyBubble;
|
|
|
|
private TextView bodyText;
|
|
|
|
private TextView dateText;
|
|
|
|
private TextView indicatorText;
|
|
|
|
private TextView groupStatusText;
|
|
|
|
private ImageView secureImage;
|
|
|
|
private ImageView failedImage;
|
|
|
|
private ImageView contactPhoto;
|
|
|
|
private ImageView deliveryImage;
|
|
|
|
private ImageView pendingIndicator;
|
|
|
|
private BubbleContainer bubbleContainer;
|
|
|
|
|
|
|
|
private Set<MessageRecord> batchSelected;
|
|
|
|
private SelectionClickListener selectionClickListener;
|
2015-03-31 22:44:41 +00:00
|
|
|
private ThumbnailView mediaThumbnail;
|
2015-01-30 06:37:01 +00:00
|
|
|
private Button mmsDownloadButton;
|
|
|
|
private TextView mmsDownloadingLabel;
|
|
|
|
|
2014-12-14 02:10:59 +00:00
|
|
|
private final MmsDownloadClickListener mmsDownloadClickListener = new MmsDownloadClickListener();
|
2013-09-16 07:55:01 +00:00
|
|
|
private final MmsPreferencesClickListener mmsPreferencesClickListener = new MmsPreferencesClickListener();
|
2014-12-14 02:10:59 +00:00
|
|
|
private final ClickListener clickListener = new ClickListener();
|
2015-01-30 06:37:01 +00:00
|
|
|
private final Context context;
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public ConversationItem(Context context) {
|
|
|
|
super(context);
|
2012-07-20 02:23:49 +00:00
|
|
|
this.context = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ConversationItem(Context context, AttributeSet attrs) {
|
|
|
|
super(context, attrs);
|
|
|
|
this.context = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onFinishInflate() {
|
|
|
|
super.onFinishInflate();
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
this.bodyText = (TextView) findViewById(R.id.conversation_item_body);
|
|
|
|
this.dateText = (TextView) findViewById(R.id.conversation_item_date);
|
2014-03-01 22:17:55 +00:00
|
|
|
this.indicatorText = (TextView) findViewById(R.id.indicator_text);
|
2012-10-29 23:51:42 +00:00
|
|
|
this.groupStatusText = (TextView) findViewById(R.id.group_message_status);
|
2011-12-20 18:20:44 +00:00
|
|
|
this.secureImage = (ImageView)findViewById(R.id.sms_secure_indicator);
|
|
|
|
this.failedImage = (ImageView)findViewById(R.id.sms_failed_indicator);
|
|
|
|
this.mmsDownloadButton = (Button) findViewById(R.id.mms_download_button);
|
|
|
|
this.mmsDownloadingLabel = (TextView) findViewById(R.id.mms_label_downloading);
|
|
|
|
this.contactPhoto = (ImageView)findViewById(R.id.contact_photo);
|
2014-11-19 20:46:59 +00:00
|
|
|
this.deliveryImage = (ImageView)findViewById(R.id.delivered_indicator);
|
2015-01-30 06:37:01 +00:00
|
|
|
this.bodyBubble = findViewById(R.id.body_bubble);
|
2014-03-01 22:17:55 +00:00
|
|
|
this.pendingIndicator = (ImageView)findViewById(R.id.pending_approval_indicator);
|
2015-01-30 06:37:01 +00:00
|
|
|
this.bubbleContainer = (BubbleContainer)findViewById(R.id.bubble);
|
2015-03-31 22:44:41 +00:00
|
|
|
this.mediaThumbnail = (ThumbnailView)findViewById(R.id.image_view);
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
setOnClickListener(clickListener);
|
2014-02-17 01:44:51 +00:00
|
|
|
if (mmsDownloadButton != null) mmsDownloadButton.setOnClickListener(mmsDownloadClickListener);
|
2015-03-31 22:44:41 +00:00
|
|
|
if (mediaThumbnail != null) {
|
|
|
|
mediaThumbnail.setThumbnailClickListener(new ThumbnailClickListener());
|
|
|
|
mediaThumbnail.setOnLongClickListener(new MultiSelectLongClickListener());
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-03-08 18:37:18 +00:00
|
|
|
public void set(@NonNull MasterSecret masterSecret,
|
|
|
|
@NonNull MessageRecord messageRecord,
|
|
|
|
@NonNull Set<MessageRecord> batchSelected,
|
|
|
|
@NonNull SelectionClickListener selectionClickListener,
|
2015-01-15 21:35:35 +00:00
|
|
|
boolean groupThread, boolean pushDestination)
|
2011-12-20 18:20:44 +00:00
|
|
|
{
|
2014-12-14 02:10:59 +00:00
|
|
|
this.masterSecret = masterSecret;
|
|
|
|
this.messageRecord = messageRecord;
|
|
|
|
this.batchSelected = batchSelected;
|
|
|
|
this.selectionClickListener = selectionClickListener;
|
|
|
|
this.groupThread = groupThread;
|
|
|
|
this.pushDestination = pushDestination;
|
|
|
|
|
|
|
|
setSelectionBackgroundDrawables(messageRecord);
|
2012-10-28 23:04:24 +00:00
|
|
|
setBodyText(messageRecord);
|
2014-02-17 19:54:39 +00:00
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
if (hasConversationBubble(messageRecord)) {
|
|
|
|
setBubbleState(messageRecord);
|
2014-02-17 01:44:51 +00:00
|
|
|
setStatusIcons(messageRecord);
|
|
|
|
setContactPhoto(messageRecord);
|
|
|
|
setGroupMessageStatus(messageRecord);
|
|
|
|
setEvents(messageRecord);
|
2014-03-01 22:17:55 +00:00
|
|
|
setMinimumWidth();
|
2015-01-30 06:37:01 +00:00
|
|
|
setMediaAttributes(messageRecord);
|
2012-10-28 23:04:24 +00:00
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2013-04-26 18:23:43 +00:00
|
|
|
public void unbind() {
|
|
|
|
}
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public MessageRecord getMessageRecord() {
|
|
|
|
return messageRecord;
|
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2012-10-28 23:04:24 +00:00
|
|
|
/// MessageRecord Attribute Parsers
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
private void setBubbleState(MessageRecord messageRecord) {
|
|
|
|
final int transportationState;
|
|
|
|
if ((messageRecord.isPending() || messageRecord.isFailed()) &&
|
|
|
|
pushDestination &&
|
|
|
|
!messageRecord.isForcedSms())
|
|
|
|
{
|
|
|
|
transportationState = BubbleContainer.TRANSPORT_STATE_PUSH_PENDING;
|
|
|
|
} else if (messageRecord.isPending() ||
|
|
|
|
messageRecord.isFailed() ||
|
|
|
|
messageRecord.isPendingInsecureSmsFallback())
|
|
|
|
{
|
|
|
|
transportationState = BubbleContainer.TRANSPORT_STATE_SMS_PENDING;
|
|
|
|
} else if (messageRecord.isPush()) {
|
|
|
|
transportationState = BubbleContainer.TRANSPORT_STATE_PUSH_SENT;
|
|
|
|
} else {
|
|
|
|
transportationState = BubbleContainer.TRANSPORT_STATE_SMS_SENT;
|
|
|
|
}
|
2014-12-14 02:10:59 +00:00
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
final int mediaCaptionState;
|
|
|
|
if (!hasMedia(messageRecord)) {
|
|
|
|
mediaCaptionState = BubbleContainer.MEDIA_STATE_NO_MEDIA;
|
|
|
|
} else if (isCaptionlessMms(messageRecord)) {
|
|
|
|
mediaCaptionState = BubbleContainer.MEDIA_STATE_CAPTIONLESS;
|
|
|
|
} else {
|
|
|
|
mediaCaptionState = BubbleContainer.MEDIA_STATE_CAPTIONED;
|
2014-02-24 00:03:42 +00:00
|
|
|
}
|
2015-01-30 06:37:01 +00:00
|
|
|
|
|
|
|
bubbleContainer.setState(transportationState, mediaCaptionState);
|
|
|
|
}
|
2014-02-26 08:30:29 +00:00
|
|
|
|
2014-12-14 02:10:59 +00:00
|
|
|
private void setSelectionBackgroundDrawables(MessageRecord messageRecord) {
|
|
|
|
int[] attributes = new int[]{R.attr.conversation_list_item_background_selected,
|
|
|
|
R.attr.conversation_item_background};
|
|
|
|
|
|
|
|
TypedArray drawables = context.obtainStyledAttributes(attributes);
|
|
|
|
|
|
|
|
if (batchSelected.contains(messageRecord)) {
|
|
|
|
setBackgroundDrawable(drawables.getDrawable(0));
|
|
|
|
} else {
|
|
|
|
setBackgroundDrawable(drawables.getDrawable(1));
|
|
|
|
}
|
|
|
|
|
|
|
|
drawables.recycle();
|
|
|
|
}
|
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
private boolean hasConversationBubble(MessageRecord messageRecord) {
|
|
|
|
return !messageRecord.isGroupAction();
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isCaptionlessMms(MessageRecord messageRecord) {
|
|
|
|
return TextUtils.isEmpty(messageRecord.getDisplayBody()) && messageRecord.isMms();
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean hasMedia(MessageRecord messageRecord) {
|
2015-03-15 00:53:07 +00:00
|
|
|
return messageRecord.isMms() &&
|
|
|
|
!messageRecord.isMmsNotification() &&
|
|
|
|
((MediaMmsMessageRecord)messageRecord).getPartCount() > 0;
|
2015-01-30 06:37:01 +00:00
|
|
|
}
|
|
|
|
|
2014-02-26 08:30:29 +00:00
|
|
|
private void setBodyText(MessageRecord messageRecord) {
|
2014-12-14 02:10:59 +00:00
|
|
|
bodyText.setClickable(false);
|
|
|
|
bodyText.setFocusable(false);
|
2015-01-30 06:37:01 +00:00
|
|
|
|
|
|
|
if (isCaptionlessMms(messageRecord)) {
|
|
|
|
bodyText.setVisibility(View.GONE);
|
|
|
|
} else {
|
|
|
|
bodyText.setText(Emoji.getInstance(context).emojify(messageRecord.getDisplayBody(),
|
|
|
|
new Emoji.InvalidatingPageLoadedListener(bodyText)),
|
|
|
|
TextView.BufferType.SPANNABLE);
|
|
|
|
bodyText.setVisibility(View.VISIBLE);
|
|
|
|
}
|
2014-12-14 02:10:59 +00:00
|
|
|
|
|
|
|
if (bodyText.isClickable() && bodyText.isFocusable()) {
|
|
|
|
bodyText.setOnLongClickListener(new MultiSelectLongClickListener());
|
|
|
|
bodyText.setOnClickListener(new MultiSelectLongClickListener());
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
private void setMediaAttributes(MessageRecord messageRecord) {
|
|
|
|
if (messageRecord.isMmsNotification()) {
|
|
|
|
setNotificationMmsAttributes((NotificationMmsMessageRecord) messageRecord);
|
|
|
|
} else if (messageRecord.isMms()) {
|
|
|
|
resolveMedia((MediaMmsMessageRecord) messageRecord);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-28 23:04:24 +00:00
|
|
|
private void setContactPhoto(MessageRecord messageRecord) {
|
2014-01-08 22:29:05 +00:00
|
|
|
if (! messageRecord.isOutgoing()) {
|
2012-10-28 23:04:24 +00:00
|
|
|
setContactPhotoForRecipient(messageRecord.getIndividualRecipient());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setStatusIcons(MessageRecord messageRecord) {
|
|
|
|
failedImage.setVisibility(messageRecord.isFailed() ? View.VISIBLE : View.GONE);
|
2015-03-09 20:14:39 +00:00
|
|
|
if (messageRecord.isOutgoing()) pendingIndicator.setVisibility(View.GONE);
|
2015-01-15 21:35:35 +00:00
|
|
|
if (messageRecord.isOutgoing()) indicatorText.setVisibility(View.GONE);
|
|
|
|
|
2012-10-28 23:04:24 +00:00
|
|
|
secureImage.setVisibility(messageRecord.isSecure() ? View.VISIBLE : View.GONE);
|
2014-03-28 02:46:27 +00:00
|
|
|
bodyText.setCompoundDrawablesWithIntrinsicBounds(0, 0, messageRecord.isKeyExchange() ? R.drawable.ic_menu_login : 0, 0);
|
2014-11-19 20:46:59 +00:00
|
|
|
deliveryImage.setVisibility(!messageRecord.isKeyExchange() && messageRecord.isDelivered() ? View.VISIBLE : View.GONE);
|
2012-10-28 23:04:24 +00:00
|
|
|
|
|
|
|
mmsDownloadButton.setVisibility(View.GONE);
|
|
|
|
mmsDownloadingLabel.setVisibility(View.GONE);
|
|
|
|
|
2015-03-11 21:23:45 +00:00
|
|
|
if (messageRecord.isFailed()) setFailedStatusIcons();
|
|
|
|
else if (messageRecord.isPendingInsecureSmsFallback()) setFallbackStatusIcons();
|
|
|
|
else if (messageRecord.isPending()) dateText.setText(" ··· ");
|
|
|
|
else setSentStatusIcons();
|
2015-01-15 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void setSentStatusIcons() {
|
|
|
|
final long timestamp;
|
|
|
|
if (messageRecord.isPush()) timestamp = messageRecord.getDateSent();
|
|
|
|
else timestamp = messageRecord.getDateReceived();
|
2014-01-08 22:29:05 +00:00
|
|
|
|
2015-01-15 21:35:35 +00:00
|
|
|
dateText.setText(DateUtils.getExtendedRelativeTimeSpanString(getContext(), timestamp));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setFailedStatusIcons() {
|
|
|
|
dateText.setText(R.string.ConversationItem_error_not_delivered);
|
2015-03-27 17:37:59 +00:00
|
|
|
if (indicatorText != null) {
|
|
|
|
indicatorText.setText(R.string.ConversationItem_click_for_details);
|
|
|
|
indicatorText.setVisibility(View.VISIBLE);
|
|
|
|
}
|
2015-01-15 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void setFallbackStatusIcons() {
|
|
|
|
pendingIndicator.setVisibility(View.VISIBLE);
|
|
|
|
indicatorText.setVisibility(View.VISIBLE);
|
2015-03-11 21:23:45 +00:00
|
|
|
indicatorText.setText(R.string.ConversationItem_click_to_approve_unencrypted);
|
2012-10-28 23:04:24 +00:00
|
|
|
}
|
|
|
|
|
2014-03-01 22:17:55 +00:00
|
|
|
private void setMinimumWidth() {
|
|
|
|
if (indicatorText != null && indicatorText.getVisibility() == View.VISIBLE && indicatorText.getText() != null) {
|
2014-04-01 01:47:24 +00:00
|
|
|
final float density = getResources().getDisplayMetrics().density;
|
2015-01-30 06:37:01 +00:00
|
|
|
bodyBubble.setMinimumWidth(indicatorText.getText().length() * (int) (6.5 * density));
|
2014-03-01 22:17:55 +00:00
|
|
|
} else {
|
2015-01-30 06:37:01 +00:00
|
|
|
bodyBubble.setMinimumWidth(0);
|
2014-03-01 22:17:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-28 23:04:24 +00:00
|
|
|
private void setEvents(MessageRecord messageRecord) {
|
2015-03-16 17:31:42 +00:00
|
|
|
setClickable(batchSelected.isEmpty() &&
|
|
|
|
(messageRecord.isFailed() ||
|
|
|
|
messageRecord.isPendingInsecureSmsFallback() ||
|
|
|
|
messageRecord.isBundleKeyExchange()));
|
2012-10-28 23:04:24 +00:00
|
|
|
}
|
|
|
|
|
2012-10-29 23:51:42 +00:00
|
|
|
private void setGroupMessageStatus(MessageRecord messageRecord) {
|
2013-05-05 19:51:36 +00:00
|
|
|
if (groupThread && !messageRecord.isOutgoing()) {
|
|
|
|
this.groupStatusText.setText(messageRecord.getIndividualRecipient().toShortString());
|
|
|
|
this.groupStatusText.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
2012-10-29 23:51:42 +00:00
|
|
|
this.groupStatusText.setVisibility(View.GONE);
|
2013-05-05 19:51:36 +00:00
|
|
|
}
|
2012-10-29 23:51:42 +00:00
|
|
|
}
|
|
|
|
|
2012-10-28 23:04:24 +00:00
|
|
|
private void setNotificationMmsAttributes(NotificationMmsMessageRecord messageRecord) {
|
2014-02-19 06:08:24 +00:00
|
|
|
String messageSize = String.format(context.getString(R.string.ConversationItem_message_size_d_kb),
|
2012-09-08 03:03:23 +00:00
|
|
|
messageRecord.getMessageSize());
|
2014-02-19 06:08:24 +00:00
|
|
|
String expires = String.format(context.getString(R.string.ConversationItem_expires_s),
|
2012-09-08 03:03:23 +00:00
|
|
|
DateUtils.getRelativeTimeSpanString(getContext(),
|
|
|
|
messageRecord.getExpiration(),
|
|
|
|
false));
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
dateText.setText(messageSize + "\n" + expires);
|
2012-07-20 02:23:49 +00:00
|
|
|
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
if (MmsDatabase.Status.isDisplayDownloadButton(messageRecord.getStatus())) {
|
2011-12-20 18:20:44 +00:00
|
|
|
mmsDownloadButton.setVisibility(View.VISIBLE);
|
|
|
|
mmsDownloadingLabel.setVisibility(View.GONE);
|
|
|
|
} else {
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
mmsDownloadingLabel.setText(MmsDatabase.Status.getLabelForStatus(context, messageRecord.getStatus()));
|
2011-12-20 18:20:44 +00:00
|
|
|
mmsDownloadButton.setVisibility(View.GONE);
|
|
|
|
mmsDownloadingLabel.setVisibility(View.VISIBLE);
|
2013-09-16 07:55:01 +00:00
|
|
|
|
|
|
|
if (MmsDatabase.Status.isHardError(messageRecord.getStatus()) && !messageRecord.isOutgoing())
|
|
|
|
setOnClickListener(mmsDownloadClickListener);
|
|
|
|
else if (MmsDatabase.Status.DOWNLOAD_APN_UNAVAILABLE == messageRecord.getStatus() && !messageRecord.isOutgoing())
|
|
|
|
setOnClickListener(mmsPreferencesClickListener);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
private void resolveMedia(MediaMmsMessageRecord messageRecord) {
|
|
|
|
if (hasMedia(messageRecord)) {
|
2015-03-31 22:44:41 +00:00
|
|
|
mediaThumbnail.setImageResource(messageRecord.getSlideDeckFuture(), masterSecret);
|
2013-04-26 18:23:43 +00:00
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2012-10-28 23:04:24 +00:00
|
|
|
/// Helper Methods
|
|
|
|
|
|
|
|
private void setContactPhotoForRecipient(final Recipient recipient) {
|
2014-03-28 02:46:27 +00:00
|
|
|
if (contactPhoto == null) return;
|
2014-03-06 23:58:26 +00:00
|
|
|
|
2014-03-09 13:00:39 +00:00
|
|
|
Bitmap contactPhotoBitmap;
|
|
|
|
|
|
|
|
if ((recipient.getContactPhoto() == ContactPhotoFactory.getDefaultContactPhoto(context)) && (groupThread)) {
|
|
|
|
contactPhotoBitmap = recipient.getGeneratedAvatar(context);
|
|
|
|
} else {
|
2014-12-30 01:31:41 +00:00
|
|
|
contactPhotoBitmap = recipient.getContactPhoto();
|
2014-03-09 13:00:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
contactPhoto.setImageBitmap(contactPhotoBitmap);
|
2014-03-06 23:58:26 +00:00
|
|
|
|
2012-10-28 23:04:24 +00:00
|
|
|
contactPhoto.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
if (recipient.getContactUri() != null) {
|
|
|
|
QuickContact.showQuickContact(context, contactPhoto, recipient.getContactUri(), QuickContact.MODE_LARGE, null);
|
|
|
|
} else {
|
2014-06-03 23:24:44 +00:00
|
|
|
final Intent intent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
|
|
|
|
intent.putExtra(ContactsContract.Intents.Insert.PHONE, recipient.getNumber());
|
|
|
|
intent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
|
2012-10-28 23:04:24 +00:00
|
|
|
context.startActivity(intent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2012-08-04 00:34:09 +00:00
|
|
|
|
2012-10-28 23:04:24 +00:00
|
|
|
contactPhoto.setVisibility(View.VISIBLE);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2012-10-28 23:04:24 +00:00
|
|
|
/// Event handlers
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private void handleKeyExchangeClicked() {
|
|
|
|
Intent intent = new Intent(context, ReceiveKeyActivity.class);
|
2014-12-18 02:14:19 +00:00
|
|
|
intent.putExtra("recipient", messageRecord.getIndividualRecipient().getRecipientId());
|
2014-02-03 03:38:06 +00:00
|
|
|
intent.putExtra("recipient_device_id", messageRecord.getRecipientDeviceId());
|
2013-04-30 18:14:01 +00:00
|
|
|
intent.putExtra("body", messageRecord.getBody().getBody());
|
2011-12-20 18:20:44 +00:00
|
|
|
intent.putExtra("thread_id", messageRecord.getThreadId());
|
2013-05-23 23:36:24 +00:00
|
|
|
intent.putExtra("message_id", messageRecord.getId());
|
2013-09-14 20:33:23 +00:00
|
|
|
intent.putExtra("is_bundle", messageRecord.isBundleKeyExchange());
|
2014-02-16 23:23:49 +00:00
|
|
|
intent.putExtra("is_identity_update", messageRecord.isIdentityUpdate());
|
2014-02-22 22:22:12 +00:00
|
|
|
intent.putExtra("is_push", messageRecord.isPush());
|
2011-12-20 18:20:44 +00:00
|
|
|
intent.putExtra("sent", messageRecord.isOutgoing());
|
|
|
|
context.startActivity(intent);
|
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-03-31 22:44:41 +00:00
|
|
|
private class ThumbnailClickListener implements ThumbnailView.ThumbnailClickListener {
|
|
|
|
private void fireIntent(Slide slide) {
|
2014-03-28 02:46:27 +00:00
|
|
|
Log.w(TAG, "Clicked: " + slide.getUri() + " , " + slide.getContentType());
|
2011-12-20 18:20:44 +00:00
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
|
|
|
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
2014-12-12 09:03:24 +00:00
|
|
|
intent.setDataAndType(PartAuthority.getPublicPartUri(slide.getUri()), slide.getContentType());
|
2014-10-16 05:26:55 +00:00
|
|
|
try {
|
|
|
|
context.startActivity(intent);
|
|
|
|
} catch (ActivityNotFoundException anfe) {
|
|
|
|
Log.w(TAG, "No activity existed to view the media.");
|
|
|
|
Toast.makeText(context, R.string.ConversationItem_unable_to_open_media, Toast.LENGTH_LONG).show();
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-03-31 22:44:41 +00:00
|
|
|
public void onClick(final View v, final Slide slide) {
|
2014-12-14 02:10:59 +00:00
|
|
|
if (!batchSelected.isEmpty()) {
|
|
|
|
selectionClickListener.onItemClick(null, ConversationItem.this, -1, -1);
|
|
|
|
} else if (MediaPreviewActivity.isContentTypeSupported(slide.getContentType())) {
|
2014-08-12 19:11:23 +00:00
|
|
|
Intent intent = new Intent(context, MediaPreviewActivity.class);
|
|
|
|
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
|
|
|
intent.setDataAndType(slide.getUri(), slide.getContentType());
|
2014-12-18 02:14:19 +00:00
|
|
|
if (!messageRecord.isOutgoing()) intent.putExtra(MediaPreviewActivity.RECIPIENT_EXTRA, messageRecord.getIndividualRecipient().getRecipientId());
|
2014-08-12 19:11:23 +00:00
|
|
|
intent.putExtra(MediaPreviewActivity.DATE_EXTRA, messageRecord.getDateReceived());
|
2015-01-30 06:37:01 +00:00
|
|
|
|
2015-03-13 18:23:01 +00:00
|
|
|
context.startActivity(intent);
|
2014-08-12 19:11:23 +00:00
|
|
|
} else {
|
2015-03-24 12:44:22 +00:00
|
|
|
AlertDialogWrapper.Builder builder = new AlertDialogWrapper.Builder(context);
|
2014-08-12 19:11:23 +00:00
|
|
|
builder.setTitle(R.string.ConversationItem_view_secure_media_question);
|
2015-03-24 12:44:22 +00:00
|
|
|
builder.setIconAttribute(R.attr.dialog_alert_icon);
|
2014-08-12 19:11:23 +00:00
|
|
|
builder.setCancelable(true);
|
|
|
|
builder.setMessage(R.string.ConversationItem_this_media_has_been_stored_in_an_encrypted_database_external_viewer_warning);
|
|
|
|
builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2015-03-31 22:44:41 +00:00
|
|
|
fireIntent(slide);
|
2014-08-12 19:11:23 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.no, null);
|
|
|
|
builder.show();
|
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private class MmsDownloadClickListener implements View.OnClickListener {
|
|
|
|
public void onClick(View v) {
|
2012-10-28 23:04:24 +00:00
|
|
|
NotificationMmsMessageRecord notificationRecord = (NotificationMmsMessageRecord)messageRecord;
|
2015-01-15 21:35:35 +00:00
|
|
|
Log.w(TAG, "Content location: " + new String(notificationRecord.getContentLocation()));
|
2011-12-20 18:20:44 +00:00
|
|
|
mmsDownloadButton.setVisibility(View.GONE);
|
|
|
|
mmsDownloadingLabel.setVisibility(View.VISIBLE);
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2014-11-03 23:16:04 +00:00
|
|
|
ApplicationContext.getInstance(context)
|
|
|
|
.getJobManager()
|
|
|
|
.add(new MmsDownloadJob(context, messageRecord.getId(),
|
|
|
|
messageRecord.getThreadId(), false));
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2013-09-16 07:55:01 +00:00
|
|
|
private class MmsPreferencesClickListener implements View.OnClickListener {
|
|
|
|
public void onClick(View v) {
|
|
|
|
Intent intent = new Intent(context, PromptMmsActivity.class);
|
|
|
|
intent.putExtra("message_id", messageRecord.getId());
|
|
|
|
intent.putExtra("thread_id", messageRecord.getThreadId());
|
|
|
|
intent.putExtra("automatic", true);
|
|
|
|
context.startActivity(intent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private class ClickListener implements View.OnClickListener {
|
|
|
|
public void onClick(View v) {
|
2015-02-27 02:31:22 +00:00
|
|
|
if (messageRecord.isFailed()) {
|
2015-01-15 21:35:35 +00:00
|
|
|
Intent intent = new Intent(context, MessageDetailsActivity.class);
|
|
|
|
intent.putExtra(MessageDetailsActivity.MASTER_SECRET_EXTRA, masterSecret);
|
|
|
|
intent.putExtra(MessageDetailsActivity.MESSAGE_ID_EXTRA, messageRecord.getId());
|
|
|
|
intent.putExtra(MessageDetailsActivity.TYPE_EXTRA, messageRecord.isMms() ? MmsSmsDatabase.MMS_TRANSPORT : MmsSmsDatabase.SMS_TRANSPORT);
|
2015-02-27 02:31:22 +00:00
|
|
|
intent.putExtra(MessageDetailsActivity.IS_PUSH_GROUP_EXTRA, groupThread && pushDestination);
|
2015-01-15 21:35:35 +00:00
|
|
|
context.startActivity(intent);
|
|
|
|
} else if (messageRecord.isKeyExchange() &&
|
|
|
|
!messageRecord.isOutgoing() &&
|
|
|
|
!messageRecord.isProcessedKeyExchange() &&
|
|
|
|
!messageRecord.isStaleKeyExchange())
|
|
|
|
{
|
2011-12-20 18:20:44 +00:00
|
|
|
handleKeyExchangeClicked();
|
2015-03-11 21:23:45 +00:00
|
|
|
} else if (messageRecord.isPendingInsecureSmsFallback()) {
|
2014-03-01 22:17:55 +00:00
|
|
|
handleMessageApproval();
|
2015-01-15 21:35:35 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
|
2014-12-14 02:10:59 +00:00
|
|
|
private class MultiSelectLongClickListener implements OnLongClickListener, OnClickListener {
|
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View view) {
|
|
|
|
selectionClickListener.onItemLongClick(null, ConversationItem.this, -1, -1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
selectionClickListener.onItemClick(null, ConversationItem.this, -1, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-01 22:17:55 +00:00
|
|
|
private void handleMessageApproval() {
|
2014-04-01 01:47:24 +00:00
|
|
|
final int title;
|
|
|
|
final int message;
|
2014-06-14 00:39:29 +00:00
|
|
|
|
2015-03-11 21:23:45 +00:00
|
|
|
if (messageRecord.isMms()) title = R.string.ConversationItem_click_to_approve_unencrypted_mms_dialog_title;
|
|
|
|
else title = R.string.ConversationItem_click_to_approve_unencrypted_sms_dialog_title;
|
2014-06-14 00:39:29 +00:00
|
|
|
|
2015-03-11 21:23:45 +00:00
|
|
|
message = R.string.ConversationItem_click_to_approve_unencrypted_dialog_message;
|
2014-04-01 01:47:24 +00:00
|
|
|
|
2015-03-24 12:44:22 +00:00
|
|
|
AlertDialogWrapper.Builder builder = new AlertDialogWrapper.Builder(context);
|
2014-04-01 01:47:24 +00:00
|
|
|
builder.setTitle(title);
|
2014-06-14 00:39:29 +00:00
|
|
|
|
2014-04-01 01:47:24 +00:00
|
|
|
if (message > -1) builder.setMessage(message);
|
2014-06-14 00:39:29 +00:00
|
|
|
|
2014-03-01 22:17:55 +00:00
|
|
|
builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
if (messageRecord.isMms()) {
|
|
|
|
MmsDatabase database = DatabaseFactory.getMmsDatabase(context);
|
2015-03-11 21:23:45 +00:00
|
|
|
database.markAsInsecure(messageRecord.getId());
|
2014-03-01 22:17:55 +00:00
|
|
|
database.markAsOutbox(messageRecord.getId());
|
|
|
|
database.markAsForcedSms(messageRecord.getId());
|
2014-11-08 19:35:58 +00:00
|
|
|
|
|
|
|
ApplicationContext.getInstance(context)
|
|
|
|
.getJobManager()
|
|
|
|
.add(new MmsSendJob(context, messageRecord.getId()));
|
2014-03-01 22:17:55 +00:00
|
|
|
} else {
|
|
|
|
SmsDatabase database = DatabaseFactory.getSmsDatabase(context);
|
2015-03-11 21:23:45 +00:00
|
|
|
database.markAsInsecure(messageRecord.getId());
|
2014-03-01 22:17:55 +00:00
|
|
|
database.markAsOutbox(messageRecord.getId());
|
|
|
|
database.markAsForcedSms(messageRecord.getId());
|
2014-06-14 00:39:29 +00:00
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
ApplicationContext.getInstance(context)
|
|
|
|
.getJobManager()
|
|
|
|
.add(new SmsSendJob(context, messageRecord.getId(),
|
|
|
|
messageRecord.getIndividualRecipient().getNumber()));
|
|
|
|
}
|
2014-03-01 22:17:55 +00:00
|
|
|
}
|
|
|
|
});
|
2014-06-14 00:39:29 +00:00
|
|
|
|
2014-03-01 22:17:55 +00:00
|
|
|
builder.setNegativeButton(R.string.no, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
2014-04-01 01:47:24 +00:00
|
|
|
if (messageRecord.isMms()) {
|
|
|
|
DatabaseFactory.getMmsDatabase(context).markAsSentFailed(messageRecord.getId());
|
|
|
|
} else {
|
|
|
|
DatabaseFactory.getSmsDatabase(context).markAsSentFailed(messageRecord.getId());
|
|
|
|
}
|
2014-03-01 22:17:55 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.show();
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|