2017-10-16 20:11:42 +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/>.
|
|
|
|
*/
|
2019-02-01 03:28:40 +00:00
|
|
|
package org.thoughtcrime.securesms.conversation;
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2018-02-02 03:22:48 +00:00
|
|
|
import android.annotation.SuppressLint;
|
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.Intent;
|
2014-02-23 21:59:12 +00:00
|
|
|
import android.content.res.TypedArray;
|
2015-06-30 16:16:05 +00:00
|
|
|
import android.graphics.Color;
|
2015-06-29 15:49:32 +00:00
|
|
|
import android.graphics.PorterDuff;
|
2019-02-27 03:29:52 +00:00
|
|
|
import android.graphics.Typeface;
|
2017-03-28 19:05:30 +00:00
|
|
|
import android.net.Uri;
|
2019-02-01 17:06:59 +00:00
|
|
|
import android.text.Spannable;
|
2017-03-28 12:34:36 +00:00
|
|
|
import android.text.SpannableString;
|
2019-02-27 03:29:52 +00:00
|
|
|
import android.text.SpannableStringBuilder;
|
2017-03-28 12:34:36 +00:00
|
|
|
import android.text.Spanned;
|
2019-02-27 03:29:52 +00:00
|
|
|
import android.text.TextPaint;
|
2015-01-30 06:37:01 +00:00
|
|
|
import android.text.TextUtils;
|
2019-02-01 17:06:59 +00:00
|
|
|
import android.text.style.BackgroundColorSpan;
|
2019-02-27 03:29:52 +00:00
|
|
|
import android.text.style.CharacterStyle;
|
|
|
|
import android.text.style.ClickableSpan;
|
2019-02-01 17:06:59 +00:00
|
|
|
import android.text.style.ForegroundColorSpan;
|
2017-03-28 12:34:36 +00:00
|
|
|
import android.text.style.URLSpan;
|
2015-09-15 22:28:27 +00:00
|
|
|
import android.text.util.Linkify;
|
2012-07-20 02:23:49 +00:00
|
|
|
import android.util.AttributeSet;
|
2017-04-15 05:59:30 +00:00
|
|
|
import android.util.TypedValue;
|
2011-12-20 18:20:44 +00:00
|
|
|
import android.view.View;
|
2015-06-29 15:49:32 +00:00
|
|
|
import android.view.ViewGroup;
|
2019-09-12 06:42:52 +00:00
|
|
|
import android.widget.ImageView;
|
2011-12-20 18:20:44 +00:00
|
|
|
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
|
|
|
|
2020-08-19 01:40:34 +00:00
|
|
|
import androidx.annotation.DimenRes;
|
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import androidx.appcompat.app.AlertDialog;
|
|
|
|
|
2019-02-21 01:00:23 +00:00
|
|
|
import com.annimon.stream.Stream;
|
|
|
|
|
2019-06-21 02:21:48 +00:00
|
|
|
import org.thoughtcrime.securesms.ApplicationContext;
|
|
|
|
import org.thoughtcrime.securesms.BindableConversationItem;
|
|
|
|
import org.thoughtcrime.securesms.ConfirmIdentityDialog;
|
|
|
|
import org.thoughtcrime.securesms.MediaPreviewActivity;
|
|
|
|
import org.thoughtcrime.securesms.MessageDetailsActivity;
|
2017-07-21 22:59:27 +00:00
|
|
|
import org.thoughtcrime.securesms.attachments.DatabaseAttachment;
|
2016-08-14 05:55:43 +00:00
|
|
|
import org.thoughtcrime.securesms.components.AlertView;
|
2015-10-21 22:32:29 +00:00
|
|
|
import org.thoughtcrime.securesms.components.AudioView;
|
2018-06-26 17:27:44 +00:00
|
|
|
import org.thoughtcrime.securesms.components.ConversationItemFooter;
|
|
|
|
import org.thoughtcrime.securesms.components.ConversationItemThumbnail;
|
2017-03-28 19:05:30 +00:00
|
|
|
import org.thoughtcrime.securesms.components.DocumentView;
|
2019-06-21 02:21:48 +00:00
|
|
|
import org.thoughtcrime.securesms.components.LinkPreviewView;
|
2018-02-07 22:01:37 +00:00
|
|
|
import org.thoughtcrime.securesms.components.QuoteView;
|
2018-04-27 00:03:54 +00:00
|
|
|
import org.thoughtcrime.securesms.components.SharedContactView;
|
2019-04-17 14:21:30 +00:00
|
|
|
import org.thoughtcrime.securesms.components.StickerView;
|
2019-06-21 02:21:48 +00:00
|
|
|
import org.thoughtcrime.securesms.components.emoji.EmojiTextView;
|
2018-04-27 00:03:54 +00:00
|
|
|
import org.thoughtcrime.securesms.contactshare.Contact;
|
2019-06-21 02:21:48 +00:00
|
|
|
import org.thoughtcrime.securesms.database.AttachmentDatabase;
|
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;
|
2015-05-21 17:13:03 +00:00
|
|
|
import org.thoughtcrime.securesms.database.documents.IdentityKeyMismatch;
|
2012-10-28 23:04:24 +00:00
|
|
|
import org.thoughtcrime.securesms.database.model.MediaMmsMessageRecord;
|
|
|
|
import org.thoughtcrime.securesms.database.model.MessageRecord;
|
2017-01-20 23:26:17 +00:00
|
|
|
import org.thoughtcrime.securesms.database.model.MmsMessageRecord;
|
2018-02-07 22:01:37 +00:00
|
|
|
import org.thoughtcrime.securesms.database.model.Quote;
|
2017-07-21 22:59:27 +00:00
|
|
|
import org.thoughtcrime.securesms.jobs.AttachmentDownloadJob;
|
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;
|
2019-06-21 02:21:48 +00:00
|
|
|
import org.thoughtcrime.securesms.linkpreview.LinkPreview;
|
|
|
|
import org.thoughtcrime.securesms.linkpreview.LinkPreviewUtil;
|
|
|
|
import org.thoughtcrime.securesms.logging.Log;
|
2020-05-11 06:19:26 +00:00
|
|
|
import org.thoughtcrime.securesms.loki.utilities.MentionUtilities;
|
|
|
|
import org.thoughtcrime.securesms.loki.views.ProfilePictureView;
|
2017-10-16 20:11:42 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.GlideRequests;
|
2019-01-15 08:41:05 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.ImageSlide;
|
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;
|
2015-10-21 22:32:29 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.SlideClickListener;
|
2018-11-09 07:33:37 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.SlidesClickedListener;
|
2019-02-27 03:29:52 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.TextSlide;
|
2012-07-20 02:23:49 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
2017-08-01 15:56:00 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientModifiedListener;
|
2019-04-17 14:21:30 +00:00
|
|
|
import org.thoughtcrime.securesms.stickers.StickerUrl;
|
2019-09-12 06:42:52 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DateUtils;
|
|
|
|
import org.thoughtcrime.securesms.util.GroupUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.LongClickCopySpan;
|
|
|
|
import org.thoughtcrime.securesms.util.LongClickMovementMethod;
|
|
|
|
import org.thoughtcrime.securesms.util.SearchUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
import org.thoughtcrime.securesms.util.ThemeUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
2017-01-20 17:11:40 +00:00
|
|
|
import org.thoughtcrime.securesms.util.views.Stub;
|
2016-03-23 17:34:41 +00:00
|
|
|
import org.whispersystems.libsignal.util.guava.Optional;
|
2020-07-15 02:24:43 +00:00
|
|
|
import org.whispersystems.signalservice.loki.api.opengroups.PublicChat;
|
|
|
|
import org.whispersystems.signalservice.loki.api.opengroups.PublicChatAPI;
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2018-11-09 07:33:37 +00:00
|
|
|
import java.util.Collections;
|
2015-10-21 22:32:29 +00:00
|
|
|
import java.util.HashSet;
|
2015-05-26 20:12:11 +00:00
|
|
|
import java.util.List;
|
2015-03-19 20:08:48 +00:00
|
|
|
import java.util.Locale;
|
2014-12-14 02:10:59 +00:00
|
|
|
import java.util.Set;
|
|
|
|
|
2019-08-05 06:27:37 +00:00
|
|
|
import network.loki.messenger.R;
|
|
|
|
|
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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public class ConversationItem extends LinearLayout
|
2017-08-01 15:56:00 +00:00
|
|
|
implements RecipientModifiedListener, BindableConversationItem
|
2015-09-15 22:28:27 +00:00
|
|
|
{
|
2018-07-12 23:03:32 +00:00
|
|
|
private static final String TAG = ConversationItem.class.getSimpleName();
|
|
|
|
|
2019-02-27 03:29:52 +00:00
|
|
|
private static final int MAX_MEASURE_CALLS = 3;
|
|
|
|
private static final int MAX_BODY_DISPLAY_LENGTH = 1000;
|
2011-12-20 18:20:44 +00:00
|
|
|
|
|
|
|
private MessageRecord messageRecord;
|
2015-03-19 20:08:48 +00:00
|
|
|
private Locale locale;
|
2013-05-05 19:51:36 +00:00
|
|
|
private boolean groupThread;
|
2015-07-23 00:47:38 +00:00
|
|
|
private Recipient recipient;
|
2017-10-16 20:11:42 +00:00
|
|
|
private GlideRequests glideRequests;
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2018-07-25 05:16:48 +00:00
|
|
|
protected ViewGroup bodyBubble;
|
2018-07-18 20:53:50 +00:00
|
|
|
private QuoteView quoteView;
|
2019-02-27 03:29:52 +00:00
|
|
|
private EmojiTextView bodyText;
|
2018-07-18 20:53:50 +00:00
|
|
|
private ConversationItemFooter footer;
|
2019-04-17 14:21:30 +00:00
|
|
|
private ConversationItemFooter stickerFooter;
|
2018-07-18 20:53:50 +00:00
|
|
|
private TextView groupSender;
|
|
|
|
private TextView groupSenderProfileName;
|
|
|
|
private View groupSenderHolder;
|
2020-01-13 04:29:06 +00:00
|
|
|
private ProfilePictureView profilePictureView;
|
2019-09-12 06:42:52 +00:00
|
|
|
private ImageView moderatorIconImageView;
|
2018-07-25 05:16:48 +00:00
|
|
|
private ViewGroup contactPhotoHolder;
|
2018-07-18 20:53:50 +00:00
|
|
|
private AlertView alertView;
|
|
|
|
private ViewGroup container;
|
2018-06-26 17:27:44 +00:00
|
|
|
|
|
|
|
private @NonNull Set<MessageRecord> batchSelected = new HashSet<>();
|
2019-05-22 16:51:56 +00:00
|
|
|
private Recipient conversationRecipient;
|
|
|
|
private Stub<ConversationItemThumbnail> mediaThumbnailStub;
|
|
|
|
private Stub<AudioView> audioViewStub;
|
|
|
|
private Stub<DocumentView> documentViewStub;
|
|
|
|
private Stub<SharedContactView> sharedContactStub;
|
|
|
|
private Stub<LinkPreviewView> linkPreviewStub;
|
2019-04-17 14:21:30 +00:00
|
|
|
private Stub<StickerView> stickerStub;
|
2018-06-26 17:27:44 +00:00
|
|
|
private @Nullable EventListener eventListener;
|
2015-01-30 06:37:01 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
private int defaultBubbleColor;
|
2018-07-12 23:03:32 +00:00
|
|
|
private int measureCalls;
|
2015-07-20 20:40:57 +00:00
|
|
|
|
2018-11-09 07:33:37 +00:00
|
|
|
private final PassthroughClickListener passthroughClickListener = new PassthroughClickListener();
|
|
|
|
private final AttachmentDownloadClickListener downloadClickListener = new AttachmentDownloadClickListener();
|
|
|
|
private final SlideClickPassthroughListener singleDownloadClickListener = new SlideClickPassthroughListener(downloadClickListener);
|
|
|
|
private final SharedContactEventListener sharedContactEventListener = new SharedContactEventListener();
|
|
|
|
private final SharedContactClickListener sharedContactClickListener = new SharedContactClickListener();
|
2019-01-15 08:41:05 +00:00
|
|
|
private final LinkPreviewClickListener linkPreviewClickListener = new LinkPreviewClickListener();
|
2017-01-20 17:11:40 +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) {
|
2015-09-15 22:28:27 +00:00
|
|
|
this(context, null);
|
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
|
|
|
public ConversationItem(Context context, AttributeSet attrs) {
|
|
|
|
super(context, attrs);
|
|
|
|
this.context = context;
|
|
|
|
}
|
|
|
|
|
2015-09-24 00:19:24 +00:00
|
|
|
@Override
|
|
|
|
public void setOnClickListener(OnClickListener l) {
|
|
|
|
super.setOnClickListener(new ClickListener(l));
|
|
|
|
}
|
|
|
|
|
2012-07-20 02:23:49 +00:00
|
|
|
@Override
|
|
|
|
protected void onFinishInflate() {
|
|
|
|
super.onFinishInflate();
|
|
|
|
|
2015-07-20 20:40:57 +00:00
|
|
|
initializeAttributes();
|
2015-06-29 15:49:32 +00:00
|
|
|
|
2017-10-16 20:11:42 +00:00
|
|
|
this.bodyText = findViewById(R.id.conversation_item_body);
|
2018-06-26 17:27:44 +00:00
|
|
|
this.footer = findViewById(R.id.conversation_item_footer);
|
2019-04-17 14:21:30 +00:00
|
|
|
this.stickerFooter = findViewById(R.id.conversation_item_sticker_footer);
|
2017-10-16 20:11:42 +00:00
|
|
|
this.groupSender = findViewById(R.id.group_message_sender);
|
|
|
|
this.groupSenderProfileName = findViewById(R.id.group_message_sender_profile);
|
|
|
|
this.alertView = findViewById(R.id.indicators_parent);
|
2020-01-13 04:29:06 +00:00
|
|
|
this.profilePictureView = findViewById(R.id.profilePictureView);
|
2019-10-10 02:53:02 +00:00
|
|
|
this.moderatorIconImageView = findViewById(R.id.moderator_icon_image_view);
|
2018-07-25 05:16:48 +00:00
|
|
|
this.contactPhotoHolder = findViewById(R.id.contact_photo_container);
|
2017-10-16 20:11:42 +00:00
|
|
|
this.bodyBubble = findViewById(R.id.body_bubble);
|
|
|
|
this.mediaThumbnailStub = new Stub<>(findViewById(R.id.image_view_stub));
|
|
|
|
this.audioViewStub = new Stub<>(findViewById(R.id.audio_view_stub));
|
|
|
|
this.documentViewStub = new Stub<>(findViewById(R.id.document_view_stub));
|
2018-04-27 00:03:54 +00:00
|
|
|
this.sharedContactStub = new Stub<>(findViewById(R.id.shared_contact_view_stub));
|
2019-01-15 08:41:05 +00:00
|
|
|
this.linkPreviewStub = new Stub<>(findViewById(R.id.link_preview_stub));
|
2019-04-17 14:21:30 +00:00
|
|
|
this.stickerStub = new Stub<>(findViewById(R.id.sticker_view_stub));
|
2017-10-16 20:11:42 +00:00
|
|
|
this.groupSenderHolder = findViewById(R.id.group_sender_holder);
|
2018-02-07 22:01:37 +00:00
|
|
|
this.quoteView = findViewById(R.id.quote_view);
|
2018-06-26 17:27:44 +00:00
|
|
|
this.container = findViewById(R.id.container);
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-09-24 00:19:24 +00:00
|
|
|
setOnClickListener(new ClickListener(null));
|
2015-10-21 22:32:29 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
bodyText.setOnLongClickListener(passthroughClickListener);
|
|
|
|
bodyText.setOnClickListener(passthroughClickListener);
|
2017-03-28 12:34:36 +00:00
|
|
|
|
|
|
|
bodyText.setMovementMethod(LongClickMovementMethod.getInstance(getContext()));
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
@Override
|
2018-06-26 17:27:44 +00:00
|
|
|
public void bind(@NonNull MessageRecord messageRecord,
|
|
|
|
@NonNull Optional<MessageRecord> previousMessageRecord,
|
|
|
|
@NonNull Optional<MessageRecord> nextMessageRecord,
|
|
|
|
@NonNull GlideRequests glideRequests,
|
|
|
|
@NonNull Locale locale,
|
|
|
|
@NonNull Set<MessageRecord> batchSelected,
|
|
|
|
@NonNull Recipient conversationRecipient,
|
2019-02-01 17:06:59 +00:00
|
|
|
@Nullable String searchQuery,
|
2018-06-26 17:27:44 +00:00
|
|
|
boolean pulseHighlight)
|
2011-12-20 18:20:44 +00:00
|
|
|
{
|
2014-12-14 02:10:59 +00:00
|
|
|
this.messageRecord = messageRecord;
|
2015-03-19 20:08:48 +00:00
|
|
|
this.locale = locale;
|
2017-10-16 20:11:42 +00:00
|
|
|
this.glideRequests = glideRequests;
|
2014-12-14 02:10:59 +00:00
|
|
|
this.batchSelected = batchSelected;
|
2017-08-01 15:56:00 +00:00
|
|
|
this.conversationRecipient = conversationRecipient;
|
|
|
|
this.groupThread = conversationRecipient.isGroupRecipient();
|
2015-07-23 00:47:38 +00:00
|
|
|
this.recipient = messageRecord.getIndividualRecipient();
|
|
|
|
|
|
|
|
this.recipient.addListener(this);
|
2017-08-01 15:56:00 +00:00
|
|
|
this.conversationRecipient.addListener(this);
|
2014-12-14 02:10:59 +00:00
|
|
|
|
2018-07-18 20:53:50 +00:00
|
|
|
setGutterSizes(messageRecord, groupThread);
|
|
|
|
setMessageShape(messageRecord, previousMessageRecord, nextMessageRecord, groupThread);
|
|
|
|
setMediaAttributes(messageRecord, previousMessageRecord, nextMessageRecord, conversationRecipient, groupThread);
|
2018-07-12 23:03:32 +00:00
|
|
|
setInteractionState(messageRecord, pulseHighlight);
|
2019-10-09 05:41:14 +00:00
|
|
|
setBodyText(messageRecord, searchQuery, groupThread);
|
2018-07-12 23:03:32 +00:00
|
|
|
setBubbleState(messageRecord);
|
|
|
|
setStatusIcons(messageRecord);
|
|
|
|
setContactPhoto(recipient);
|
|
|
|
setGroupMessageStatus(messageRecord, recipient);
|
2019-04-17 14:21:30 +00:00
|
|
|
setGroupAuthorColor(messageRecord);
|
2018-07-12 23:03:32 +00:00
|
|
|
setAuthor(messageRecord, previousMessageRecord, nextMessageRecord, groupThread);
|
|
|
|
setQuote(messageRecord, previousMessageRecord, nextMessageRecord, groupThread);
|
2018-07-23 12:08:45 +00:00
|
|
|
setMessageSpacing(context, messageRecord, previousMessageRecord, nextMessageRecord, groupThread);
|
2018-07-12 23:03:32 +00:00
|
|
|
setFooter(messageRecord, nextMessageRecord, locale, groupThread);
|
2020-01-15 05:13:28 +00:00
|
|
|
adjustMarginsIfNeeded(messageRecord);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2018-04-02 23:17:32 +00:00
|
|
|
@Override
|
|
|
|
public void setEventListener(@Nullable EventListener eventListener) {
|
|
|
|
this.eventListener = eventListener;
|
|
|
|
}
|
|
|
|
|
2017-08-16 02:23:42 +00:00
|
|
|
@Override
|
2018-06-26 17:27:44 +00:00
|
|
|
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
|
|
|
|
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
|
2017-08-16 02:23:42 +00:00
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
if (isInEditMode()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-08-16 02:23:42 +00:00
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
boolean needsMeasure = false;
|
2017-08-16 02:23:42 +00:00
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
if (hasQuote(messageRecord)) {
|
|
|
|
int quoteWidth = quoteView.getMeasuredWidth();
|
|
|
|
int availableWidth = getAvailableMessageBubbleWidth(quoteView);
|
2017-08-16 02:23:42 +00:00
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
if (quoteWidth != availableWidth) {
|
|
|
|
quoteView.getLayoutParams().width = availableWidth;
|
|
|
|
needsMeasure = true;
|
2017-08-16 02:23:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-07 05:13:08 +00:00
|
|
|
if (hasThumbnail(messageRecord) && messageRecord.getDisplayBody(context).length() > 0) {
|
|
|
|
ViewUtil.updateLayoutParams(bodyText, getAvailableMessageBubbleWidth(bodyText), ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
}
|
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
ConversationItemFooter activeFooter = getActiveFooter(messageRecord);
|
|
|
|
int availableWidth = getAvailableMessageBubbleWidth(footer);
|
2018-04-02 23:17:32 +00:00
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
if (activeFooter.getVisibility() != GONE && activeFooter.getMeasuredWidth() != availableWidth) {
|
|
|
|
activeFooter.getLayoutParams().width = availableWidth;
|
|
|
|
needsMeasure = true;
|
|
|
|
}
|
2018-04-02 23:17:32 +00:00
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
if (needsMeasure) {
|
2018-07-12 23:03:32 +00:00
|
|
|
if (measureCalls < MAX_MEASURE_CALLS) {
|
|
|
|
measureCalls++;
|
2018-07-23 14:54:24 +00:00
|
|
|
measure(widthMeasureSpec, heightMeasureSpec);
|
2018-07-12 23:03:32 +00:00
|
|
|
} else {
|
|
|
|
Log.w(TAG, "Hit measure() cap of " + MAX_MEASURE_CALLS);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
measureCalls = 0;
|
2018-06-26 17:27:44 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-02 23:17:32 +00:00
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
private int getAvailableMessageBubbleWidth(@NonNull View forView) {
|
|
|
|
int availableWidth;
|
|
|
|
if (hasAudio(messageRecord)) {
|
|
|
|
availableWidth = audioViewStub.get().getMeasuredWidth() + ViewUtil.getLeftMargin(audioViewStub.get()) + ViewUtil.getRightMargin(audioViewStub.get());
|
2019-05-28 15:13:40 +00:00
|
|
|
} else if (hasThumbnail(messageRecord) || hasBigImageLinkPreview(messageRecord)) {
|
2018-06-26 17:27:44 +00:00
|
|
|
availableWidth = mediaThumbnailStub.get().getMeasuredWidth();
|
|
|
|
} else {
|
|
|
|
availableWidth = bodyBubble.getMeasuredWidth() - bodyBubble.getPaddingLeft() - bodyBubble.getPaddingRight();
|
2018-04-02 23:17:32 +00:00
|
|
|
}
|
2018-06-26 17:27:44 +00:00
|
|
|
|
|
|
|
availableWidth -= ViewUtil.getLeftMargin(forView) + ViewUtil.getRightMargin(forView);
|
|
|
|
|
|
|
|
return availableWidth;
|
2018-04-02 23:17:32 +00:00
|
|
|
}
|
|
|
|
|
2015-07-20 20:40:57 +00:00
|
|
|
private void initializeAttributes() {
|
2017-11-14 02:01:05 +00:00
|
|
|
final int[] attributes = new int[] {R.attr.conversation_item_bubble_background};
|
2015-07-20 20:40:57 +00:00
|
|
|
final TypedArray attrs = context.obtainStyledAttributes(attributes);
|
|
|
|
|
|
|
|
defaultBubbleColor = attrs.getColor(0, Color.WHITE);
|
|
|
|
attrs.recycle();
|
|
|
|
}
|
|
|
|
|
2015-09-17 00:31:24 +00:00
|
|
|
@Override
|
2013-04-26 18:23:43 +00:00
|
|
|
public void unbind() {
|
2015-07-23 00:47:38 +00:00
|
|
|
if (recipient != null) {
|
|
|
|
recipient.removeListener(this);
|
|
|
|
}
|
2013-04-26 18:23:43 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setBubbleState(MessageRecord messageRecord) {
|
2015-06-29 22:33:36 +00:00
|
|
|
if (messageRecord.isOutgoing()) {
|
2020-01-13 04:29:06 +00:00
|
|
|
bodyBubble.getBackground().setColorFilter(getResources().getColor(R.color.sent_message_background), PorterDuff.Mode.MULTIPLY);
|
2016-08-14 05:55:43 +00:00
|
|
|
} else {
|
2020-01-13 04:29:06 +00:00
|
|
|
bodyBubble.getBackground().setColorFilter(getResources().getColor(R.color.received_message_background), PorterDuff.Mode.MULTIPLY);
|
2016-08-14 05:55:43 +00:00
|
|
|
}
|
2016-11-22 02:58:10 +00:00
|
|
|
|
2017-01-20 17:11:40 +00:00
|
|
|
if (audioViewStub.resolved()) {
|
2018-06-26 17:27:44 +00:00
|
|
|
setAudioViewTint(messageRecord, this.conversationRecipient);
|
2017-03-28 19:05:30 +00:00
|
|
|
}
|
2016-08-14 05:55:43 +00:00
|
|
|
}
|
2015-11-07 01:48:37 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
private void setAudioViewTint(MessageRecord messageRecord, Recipient recipient) {
|
2020-01-14 05:36:03 +00:00
|
|
|
audioViewStub.get().setTint(Color.WHITE, getResources().getColor(R.color.action_bar_background));
|
2015-05-18 15:38:48 +00:00
|
|
|
}
|
2014-02-26 08:30:29 +00:00
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setInteractionState(MessageRecord messageRecord, boolean pulseHighlight) {
|
2018-04-02 23:17:32 +00:00
|
|
|
if (batchSelected.contains(messageRecord)) {
|
|
|
|
setBackgroundResource(R.drawable.conversation_item_background);
|
|
|
|
setSelected(true);
|
|
|
|
} else if (pulseHighlight) {
|
|
|
|
setBackgroundResource(R.drawable.conversation_item_background_animated);
|
|
|
|
setSelected(true);
|
|
|
|
postDelayed(() -> setSelected(false), 500);
|
|
|
|
} else {
|
|
|
|
setSelected(false);
|
|
|
|
}
|
2017-01-20 17:30:08 +00:00
|
|
|
|
|
|
|
if (mediaThumbnailStub.resolved()) {
|
|
|
|
mediaThumbnailStub.get().setFocusable(!shouldInterceptClicks(messageRecord) && batchSelected.isEmpty());
|
|
|
|
mediaThumbnailStub.get().setClickable(!shouldInterceptClicks(messageRecord) && batchSelected.isEmpty());
|
|
|
|
mediaThumbnailStub.get().setLongClickable(batchSelected.isEmpty());
|
|
|
|
}
|
2017-01-13 02:13:28 +00:00
|
|
|
|
|
|
|
if (audioViewStub.resolved()) {
|
|
|
|
audioViewStub.get().setFocusable(!shouldInterceptClicks(messageRecord) && batchSelected.isEmpty());
|
|
|
|
audioViewStub.get().setClickable(batchSelected.isEmpty());
|
|
|
|
audioViewStub.get().setEnabled(batchSelected.isEmpty());
|
|
|
|
}
|
2017-03-28 19:05:30 +00:00
|
|
|
|
|
|
|
if (documentViewStub.resolved()) {
|
|
|
|
documentViewStub.get().setFocusable(!shouldInterceptClicks(messageRecord) && batchSelected.isEmpty());
|
|
|
|
documentViewStub.get().setClickable(batchSelected.isEmpty());
|
|
|
|
}
|
2014-12-14 02:10:59 +00:00
|
|
|
}
|
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
private boolean isCaptionlessMms(MessageRecord messageRecord) {
|
2019-03-13 21:28:16 +00:00
|
|
|
return TextUtils.isEmpty(messageRecord.getDisplayBody(getContext())) && messageRecord.isMms() && ((MmsMessageRecord) messageRecord).getSlideDeck().getTextSlide() == null;
|
2015-01-30 06:37:01 +00:00
|
|
|
}
|
|
|
|
|
2015-10-21 22:32:29 +00:00
|
|
|
private boolean hasAudio(MessageRecord messageRecord) {
|
2017-01-20 23:26:17 +00:00
|
|
|
return messageRecord.isMms() && ((MmsMessageRecord)messageRecord).getSlideDeck().getAudioSlide() != null;
|
2015-10-21 22:32:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private boolean hasThumbnail(MessageRecord messageRecord) {
|
2017-01-20 23:26:17 +00:00
|
|
|
return messageRecord.isMms() && ((MmsMessageRecord)messageRecord).getSlideDeck().getThumbnailSlide() != null;
|
2015-01-30 06:37:01 +00:00
|
|
|
}
|
|
|
|
|
2019-04-17 14:21:30 +00:00
|
|
|
private boolean hasSticker(MessageRecord messageRecord) {
|
|
|
|
return messageRecord.isMms() && ((MmsMessageRecord)messageRecord).getSlideDeck().getStickerSlide() != null;
|
|
|
|
}
|
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
private boolean hasOnlyThumbnail(MessageRecord messageRecord) {
|
2019-04-17 14:21:30 +00:00
|
|
|
return hasThumbnail(messageRecord) &&
|
|
|
|
!hasAudio(messageRecord) &&
|
|
|
|
!hasDocument(messageRecord) &&
|
|
|
|
!hasSharedContact(messageRecord) &&
|
|
|
|
!hasSticker(messageRecord);
|
2018-06-26 17:27:44 +00:00
|
|
|
}
|
|
|
|
|
2020-01-15 05:13:28 +00:00
|
|
|
private boolean hasOnlyDocument(MessageRecord messageRecord) {
|
|
|
|
return messageRecord.getBody().length() == 0 &&
|
|
|
|
!hasThumbnail(messageRecord) &&
|
|
|
|
!hasAudio(messageRecord) &&
|
|
|
|
hasDocument(messageRecord) &&
|
|
|
|
!hasSharedContact(messageRecord) &&
|
|
|
|
!hasSticker(messageRecord) &&
|
|
|
|
!hasQuote(messageRecord);
|
|
|
|
}
|
|
|
|
|
2020-01-15 01:20:10 +00:00
|
|
|
private boolean hasOnlyText(MessageRecord messageRecord) {
|
|
|
|
return messageRecord.getBody().length() != 0 &&
|
|
|
|
!hasThumbnail(messageRecord) &&
|
|
|
|
!hasAudio(messageRecord) &&
|
|
|
|
!hasDocument(messageRecord) &&
|
|
|
|
!hasSharedContact(messageRecord) &&
|
|
|
|
!hasSticker(messageRecord) &&
|
|
|
|
!hasQuote(messageRecord);
|
|
|
|
}
|
|
|
|
|
2017-03-28 19:05:30 +00:00
|
|
|
private boolean hasDocument(MessageRecord messageRecord) {
|
|
|
|
return messageRecord.isMms() && ((MmsMessageRecord)messageRecord).getSlideDeck().getDocumentSlide() != null;
|
|
|
|
}
|
|
|
|
|
2019-02-27 03:29:52 +00:00
|
|
|
private boolean hasExtraText(MessageRecord messageRecord) {
|
|
|
|
boolean hasTextSlide = messageRecord.isMms() && ((MmsMessageRecord)messageRecord).getSlideDeck().getTextSlide() != null;
|
|
|
|
boolean hasOverflowText = messageRecord.getBody().length() > MAX_BODY_DISPLAY_LENGTH;
|
|
|
|
|
|
|
|
return hasTextSlide || hasOverflowText;
|
|
|
|
}
|
|
|
|
|
2018-04-02 23:17:32 +00:00
|
|
|
private boolean hasQuote(MessageRecord messageRecord) {
|
|
|
|
return messageRecord.isMms() && ((MmsMessageRecord)messageRecord).getQuote() != null;
|
|
|
|
}
|
|
|
|
|
2018-04-27 00:03:54 +00:00
|
|
|
private boolean hasSharedContact(MessageRecord messageRecord) {
|
|
|
|
return messageRecord.isMms() && !((MmsMessageRecord)messageRecord).getSharedContacts().isEmpty();
|
|
|
|
}
|
|
|
|
|
2019-01-15 08:41:05 +00:00
|
|
|
private boolean hasLinkPreview(MessageRecord messageRecord) {
|
|
|
|
return messageRecord.isMms() && !((MmsMessageRecord)messageRecord).getLinkPreviews().isEmpty();
|
|
|
|
}
|
|
|
|
|
2019-05-28 15:13:40 +00:00
|
|
|
private boolean hasBigImageLinkPreview(MessageRecord messageRecord) {
|
|
|
|
if (!hasLinkPreview(messageRecord)) return false;
|
|
|
|
|
|
|
|
LinkPreview linkPreview = ((MmsMessageRecord) messageRecord).getLinkPreviews().get(0);
|
|
|
|
int minWidth = getResources().getDimensionPixelSize(R.dimen.media_bubble_min_width);
|
|
|
|
|
|
|
|
return linkPreview.getThumbnail().isPresent() &&
|
|
|
|
linkPreview.getThumbnail().get().getWidth() >= minWidth &&
|
|
|
|
!StickerUrl.isValidShareLink(linkPreview.getUrl());
|
|
|
|
}
|
|
|
|
|
2019-10-09 05:41:14 +00:00
|
|
|
private void setBodyText(MessageRecord messageRecord, @Nullable String searchQuery, boolean isGroupThread) {
|
2014-12-14 02:10:59 +00:00
|
|
|
bodyText.setClickable(false);
|
|
|
|
bodyText.setFocusable(false);
|
2017-04-15 05:59:30 +00:00
|
|
|
bodyText.setTextSize(TypedValue.COMPLEX_UNIT_SP, TextSecurePreferences.getMessageBodyTextSize(context));
|
2015-01-30 06:37:01 +00:00
|
|
|
if (isCaptionlessMms(messageRecord)) {
|
|
|
|
bodyText.setVisibility(View.GONE);
|
2019-10-18 01:40:41 +00:00
|
|
|
} else {
|
2019-10-15 02:51:18 +00:00
|
|
|
Spannable text = MentionUtilities.highlightMentions(linkifyMessageBody(messageRecord.getDisplayBody(context), batchSelected.isEmpty()), messageRecord.isOutgoing(), messageRecord.getThreadId(), context);
|
2020-01-15 06:13:46 +00:00
|
|
|
text = SearchUtil.getHighlightedSpan(locale, () -> new BackgroundColorSpan(Color.WHITE), text, searchQuery);
|
2019-10-09 05:41:14 +00:00
|
|
|
text = SearchUtil.getHighlightedSpan(locale, () -> new ForegroundColorSpan(Color.BLACK), text, searchQuery);
|
2019-02-01 17:06:59 +00:00
|
|
|
|
2019-02-27 03:29:52 +00:00
|
|
|
if (hasExtraText(messageRecord)) {
|
|
|
|
bodyText.setOverflowText(getLongMessageSpan(messageRecord));
|
|
|
|
} else {
|
|
|
|
bodyText.setOverflowText(null);
|
|
|
|
}
|
|
|
|
|
2019-10-09 05:41:14 +00:00
|
|
|
bodyText.setText(text);
|
2015-01-30 06:37:01 +00:00
|
|
|
bodyText.setVisibility(View.VISIBLE);
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2020-01-15 01:20:10 +00:00
|
|
|
private void adjustMarginsIfNeeded(MessageRecord messageRecord) {
|
|
|
|
LinearLayout.LayoutParams bodyTextLayoutParams = (LinearLayout.LayoutParams)bodyText.getLayoutParams();
|
|
|
|
bodyTextLayoutParams.topMargin = 0;
|
|
|
|
if (hasOnlyThumbnail(messageRecord)) {
|
|
|
|
int topPadding = 0;
|
|
|
|
if (groupSenderHolder.getVisibility() == VISIBLE) {
|
|
|
|
topPadding = (int)getResources().getDimension(R.dimen.medium_spacing);
|
|
|
|
}
|
|
|
|
int bottomPadding = 0;
|
|
|
|
if (messageRecord.getBody().length() > 0) {
|
|
|
|
bodyTextLayoutParams.topMargin = (int)getResources().getDimension(R.dimen.medium_spacing);
|
|
|
|
bottomPadding = (int)getResources().getDimension(R.dimen.medium_spacing);
|
|
|
|
}
|
|
|
|
bodyBubble.setPadding(0, topPadding, 0, bottomPadding);
|
|
|
|
} else {
|
|
|
|
bodyBubble.setPadding(0, (int)getResources().getDimension(R.dimen.medium_spacing), 0, (int)getResources().getDimension(R.dimen.medium_spacing));
|
|
|
|
}
|
|
|
|
bodyText.setLayoutParams(bodyTextLayoutParams);
|
|
|
|
LinearLayout.LayoutParams senderHolderLayoutParams = (LinearLayout.LayoutParams)groupSenderHolder.getLayoutParams();
|
|
|
|
if (groupSenderHolder.getVisibility() == VISIBLE && hasOnlyText(messageRecord)) {
|
|
|
|
senderHolderLayoutParams.bottomMargin = (int)(getResources().getDisplayMetrics().density * 4);
|
|
|
|
} else {
|
|
|
|
senderHolderLayoutParams.bottomMargin = (int)getResources().getDimension(R.dimen.medium_spacing);
|
|
|
|
}
|
|
|
|
groupSenderHolder.setLayoutParams(senderHolderLayoutParams);
|
2020-01-15 05:13:28 +00:00
|
|
|
if (documentViewStub.resolved()) {
|
|
|
|
LinearLayout.LayoutParams documentViewLayoutParams = (LinearLayout.LayoutParams)documentViewStub.get().getLayoutParams();
|
|
|
|
int bottomMargin = 0;
|
|
|
|
if (hasOnlyDocument(messageRecord)) {
|
|
|
|
if (footer.getVisibility() == VISIBLE) {
|
|
|
|
bottomMargin = (int)(4 * getResources().getDisplayMetrics().density);
|
|
|
|
} else {
|
|
|
|
bottomMargin = (int)(-4 * getResources().getDisplayMetrics().density);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bottomMargin = (int)(4 * getResources().getDisplayMetrics().density);
|
|
|
|
}
|
|
|
|
documentViewLayoutParams.bottomMargin = bottomMargin;
|
|
|
|
documentViewStub.get().setLayoutParams(documentViewLayoutParams);
|
|
|
|
}
|
2020-01-15 01:20:10 +00:00
|
|
|
}
|
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setMediaAttributes(@NonNull MessageRecord messageRecord,
|
|
|
|
@NonNull Optional<MessageRecord> previousRecord,
|
|
|
|
@NonNull Optional<MessageRecord> nextRecord,
|
|
|
|
@NonNull Recipient conversationRecipient,
|
|
|
|
boolean isGroupThread)
|
2018-06-26 17:27:44 +00:00
|
|
|
{
|
2019-01-14 07:30:54 +00:00
|
|
|
boolean showControls = !messageRecord.isFailed();
|
2018-06-26 17:27:44 +00:00
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
if (hasSharedContact(messageRecord)) {
|
2018-04-27 00:03:54 +00:00
|
|
|
sharedContactStub.get().setVisibility(VISIBLE);
|
|
|
|
if (audioViewStub.resolved()) mediaThumbnailStub.get().setVisibility(View.GONE);
|
|
|
|
if (mediaThumbnailStub.resolved()) mediaThumbnailStub.get().setVisibility(View.GONE);
|
|
|
|
if (documentViewStub.resolved()) documentViewStub.get().setVisibility(View.GONE);
|
2019-01-15 08:41:05 +00:00
|
|
|
if (linkPreviewStub.resolved()) linkPreviewStub.get().setVisibility(GONE);
|
2019-04-17 14:21:30 +00:00
|
|
|
if (stickerStub.resolved()) stickerStub.get().setVisibility(View.GONE);
|
2018-04-27 00:03:54 +00:00
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
sharedContactStub.get().setContact(((MediaMmsMessageRecord) messageRecord).getSharedContacts().get(0), glideRequests, locale);
|
2018-04-27 00:03:54 +00:00
|
|
|
sharedContactStub.get().setEventListener(sharedContactEventListener);
|
|
|
|
sharedContactStub.get().setOnClickListener(sharedContactClickListener);
|
|
|
|
sharedContactStub.get().setOnLongClickListener(passthroughClickListener);
|
|
|
|
|
2018-07-18 20:53:50 +00:00
|
|
|
setSharedContactCorners(messageRecord, previousRecord, nextRecord, isGroupThread);
|
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
ViewUtil.updateLayoutParams(bodyText, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2019-01-15 08:41:05 +00:00
|
|
|
ViewUtil.updateLayoutParams(groupSenderHolder, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2018-06-26 17:27:44 +00:00
|
|
|
footer.setVisibility(GONE);
|
2019-01-15 08:41:05 +00:00
|
|
|
} else if (hasLinkPreview(messageRecord)) {
|
|
|
|
linkPreviewStub.get().setVisibility(View.VISIBLE);
|
|
|
|
if (audioViewStub.resolved()) audioViewStub.get().setVisibility(View.GONE);
|
|
|
|
if (mediaThumbnailStub.resolved()) mediaThumbnailStub.get().setVisibility(View.GONE);
|
|
|
|
if (documentViewStub.resolved()) documentViewStub.get().setVisibility(View.GONE);
|
|
|
|
if (sharedContactStub.resolved()) sharedContactStub.get().setVisibility(GONE);
|
2019-04-17 14:21:30 +00:00
|
|
|
if (stickerStub.resolved()) stickerStub.get().setVisibility(View.GONE);
|
2019-01-15 08:41:05 +00:00
|
|
|
|
|
|
|
//noinspection ConstantConditions
|
|
|
|
LinkPreview linkPreview = ((MmsMessageRecord) messageRecord).getLinkPreviews().get(0);
|
|
|
|
|
2019-05-28 15:13:40 +00:00
|
|
|
if (hasBigImageLinkPreview(messageRecord)) {
|
2019-01-15 08:41:05 +00:00
|
|
|
mediaThumbnailStub.get().setVisibility(VISIBLE);
|
|
|
|
mediaThumbnailStub.get().setImageResource(glideRequests, Collections.singletonList(new ImageSlide(context, linkPreview.getThumbnail().get())), showControls, false);
|
|
|
|
mediaThumbnailStub.get().setThumbnailClickListener(new LinkPreviewThumbnailClickListener());
|
|
|
|
mediaThumbnailStub.get().setDownloadClickListener(downloadClickListener);
|
|
|
|
mediaThumbnailStub.get().setOnLongClickListener(passthroughClickListener);
|
|
|
|
|
|
|
|
linkPreviewStub.get().setLinkPreview(glideRequests, linkPreview, false);
|
|
|
|
|
|
|
|
setThumbnailCorners(messageRecord, previousRecord, nextRecord, isGroupThread);
|
|
|
|
setLinkPreviewCorners(messageRecord, previousRecord, nextRecord, isGroupThread, true);
|
|
|
|
|
|
|
|
ViewUtil.updateLayoutParams(bodyText, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
ViewUtil.updateLayoutParams(groupSenderHolder, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
} else {
|
|
|
|
linkPreviewStub.get().setLinkPreview(glideRequests, linkPreview, true);
|
|
|
|
linkPreviewStub.get().setDownloadClickedListener(downloadClickListener);
|
|
|
|
setLinkPreviewCorners(messageRecord, previousRecord, nextRecord, isGroupThread, false);
|
|
|
|
ViewUtil.updateLayoutParams(bodyText, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
ViewUtil.updateLayoutParams(groupSenderHolder, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
linkPreviewStub.get().setOnClickListener(linkPreviewClickListener);
|
|
|
|
linkPreviewStub.get().setOnLongClickListener(passthroughClickListener);
|
|
|
|
|
|
|
|
|
|
|
|
footer.setVisibility(VISIBLE);
|
2018-07-12 23:03:32 +00:00
|
|
|
} else if (hasAudio(messageRecord)) {
|
2017-01-20 17:11:40 +00:00
|
|
|
audioViewStub.get().setVisibility(View.VISIBLE);
|
2017-01-20 17:30:08 +00:00
|
|
|
if (mediaThumbnailStub.resolved()) mediaThumbnailStub.get().setVisibility(View.GONE);
|
2017-03-28 19:05:30 +00:00
|
|
|
if (documentViewStub.resolved()) documentViewStub.get().setVisibility(View.GONE);
|
2018-04-27 00:03:54 +00:00
|
|
|
if (sharedContactStub.resolved()) sharedContactStub.get().setVisibility(GONE);
|
2019-01-15 08:41:05 +00:00
|
|
|
if (linkPreviewStub.resolved()) linkPreviewStub.get().setVisibility(GONE);
|
2019-04-17 14:21:30 +00:00
|
|
|
if (stickerStub.resolved()) stickerStub.get().setVisibility(View.GONE);
|
2015-10-21 22:32:29 +00:00
|
|
|
|
|
|
|
//noinspection ConstantConditions
|
2018-07-12 23:03:32 +00:00
|
|
|
audioViewStub.get().setAudio(((MediaMmsMessageRecord) messageRecord).getSlideDeck().getAudioSlide(), showControls);
|
2018-11-09 07:33:37 +00:00
|
|
|
audioViewStub.get().setDownloadClickListener(singleDownloadClickListener);
|
2017-01-20 17:11:40 +00:00
|
|
|
audioViewStub.get().setOnLongClickListener(passthroughClickListener);
|
2018-07-12 23:03:32 +00:00
|
|
|
|
|
|
|
ViewUtil.updateLayoutParams(bodyText, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2018-07-21 01:24:52 +00:00
|
|
|
ViewUtil.updateLayoutParams(groupSenderHolder, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2019-04-17 14:21:30 +00:00
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
footer.setVisibility(VISIBLE);
|
|
|
|
} else if (hasDocument(messageRecord)) {
|
2017-03-28 19:05:30 +00:00
|
|
|
documentViewStub.get().setVisibility(View.VISIBLE);
|
|
|
|
if (mediaThumbnailStub.resolved()) mediaThumbnailStub.get().setVisibility(View.GONE);
|
|
|
|
if (audioViewStub.resolved()) audioViewStub.get().setVisibility(View.GONE);
|
2018-04-27 00:03:54 +00:00
|
|
|
if (sharedContactStub.resolved()) sharedContactStub.get().setVisibility(GONE);
|
2019-01-15 08:41:05 +00:00
|
|
|
if (linkPreviewStub.resolved()) linkPreviewStub.get().setVisibility(GONE);
|
2019-04-17 14:21:30 +00:00
|
|
|
if (stickerStub.resolved()) stickerStub.get().setVisibility(View.GONE);
|
2017-03-28 19:05:30 +00:00
|
|
|
|
|
|
|
//noinspection ConstantConditions
|
2019-04-17 14:21:30 +00:00
|
|
|
documentViewStub.get().setDocument(((MediaMmsMessageRecord) messageRecord).getSlideDeck().getDocumentSlide(), showControls);
|
2017-03-28 19:05:30 +00:00
|
|
|
documentViewStub.get().setDocumentClickListener(new ThumbnailClickListener());
|
2018-11-09 07:33:37 +00:00
|
|
|
documentViewStub.get().setDownloadClickListener(singleDownloadClickListener);
|
2017-03-28 19:05:30 +00:00
|
|
|
documentViewStub.get().setOnLongClickListener(passthroughClickListener);
|
2018-07-12 23:03:32 +00:00
|
|
|
|
|
|
|
ViewUtil.updateLayoutParams(bodyText, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2018-07-21 01:24:52 +00:00
|
|
|
ViewUtil.updateLayoutParams(groupSenderHolder, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2019-04-17 14:21:30 +00:00
|
|
|
|
|
|
|
footer.setVisibility(VISIBLE);
|
|
|
|
} else if (hasSticker(messageRecord) && isCaptionlessMms(messageRecord)) {
|
|
|
|
bodyBubble.setBackgroundColor(Color.TRANSPARENT);
|
|
|
|
|
|
|
|
stickerStub.get().setVisibility(View.VISIBLE);
|
|
|
|
if (mediaThumbnailStub.resolved()) mediaThumbnailStub.get().setVisibility(View.GONE);
|
|
|
|
if (audioViewStub.resolved()) audioViewStub.get().setVisibility(View.GONE);
|
|
|
|
if (documentViewStub.resolved()) documentViewStub.get().setVisibility(View.GONE);
|
|
|
|
if (sharedContactStub.resolved()) sharedContactStub.get().setVisibility(GONE);
|
|
|
|
if (linkPreviewStub.resolved()) linkPreviewStub.get().setVisibility(GONE);
|
|
|
|
|
|
|
|
//noinspection ConstantConditions
|
|
|
|
stickerStub.get().setSticker(glideRequests, ((MmsMessageRecord) messageRecord).getSlideDeck().getStickerSlide());
|
|
|
|
stickerStub.get().setThumbnailClickListener(new StickerClickListener());
|
|
|
|
stickerStub.get().setDownloadClickListener(downloadClickListener);
|
|
|
|
stickerStub.get().setOnLongClickListener(passthroughClickListener);
|
|
|
|
stickerStub.get().setOnClickListener(passthroughClickListener);
|
|
|
|
|
|
|
|
ViewUtil.updateLayoutParams(bodyText, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
ViewUtil.updateLayoutParams(groupSenderHolder, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
footer.setVisibility(VISIBLE);
|
|
|
|
} else if (hasThumbnail(messageRecord)) {
|
2017-01-20 17:30:08 +00:00
|
|
|
mediaThumbnailStub.get().setVisibility(View.VISIBLE);
|
2019-01-15 08:41:05 +00:00
|
|
|
if (audioViewStub.resolved()) audioViewStub.get().setVisibility(View.GONE);
|
|
|
|
if (documentViewStub.resolved()) documentViewStub.get().setVisibility(View.GONE);
|
|
|
|
if (sharedContactStub.resolved()) sharedContactStub.get().setVisibility(GONE);
|
|
|
|
if (linkPreviewStub.resolved()) linkPreviewStub.get().setVisibility(GONE);
|
2019-04-17 14:21:30 +00:00
|
|
|
if (stickerStub.resolved()) stickerStub.get().setVisibility(View.GONE);
|
2015-10-21 22:32:29 +00:00
|
|
|
|
2015-10-21 22:32:19 +00:00
|
|
|
//noinspection ConstantConditions
|
2018-11-09 07:33:37 +00:00
|
|
|
List<Slide> thumbnailSlides = ((MmsMessageRecord) messageRecord).getSlideDeck().getThumbnailSlides();
|
2018-01-25 03:17:44 +00:00
|
|
|
mediaThumbnailStub.get().setImageResource(glideRequests,
|
2018-11-09 07:33:37 +00:00
|
|
|
thumbnailSlides,
|
2018-03-20 18:27:11 +00:00
|
|
|
showControls,
|
2018-11-09 07:33:37 +00:00
|
|
|
false);
|
2017-01-20 17:30:08 +00:00
|
|
|
mediaThumbnailStub.get().setThumbnailClickListener(new ThumbnailClickListener());
|
|
|
|
mediaThumbnailStub.get().setDownloadClickListener(downloadClickListener);
|
|
|
|
mediaThumbnailStub.get().setOnLongClickListener(passthroughClickListener);
|
|
|
|
mediaThumbnailStub.get().setOnClickListener(passthroughClickListener);
|
2019-03-13 21:28:16 +00:00
|
|
|
mediaThumbnailStub.get().showShade(TextUtils.isEmpty(messageRecord.getDisplayBody(getContext())) && !hasExtraText(messageRecord));
|
2018-11-09 07:33:37 +00:00
|
|
|
mediaThumbnailStub.get().setConversationColor(messageRecord.isOutgoing() ? defaultBubbleColor
|
|
|
|
: messageRecord.getRecipient().getColor().toConversationColor(context));
|
2019-04-17 14:21:30 +00:00
|
|
|
mediaThumbnailStub.get().setBorderless(false);
|
2017-01-20 17:30:08 +00:00
|
|
|
|
2019-01-15 08:41:05 +00:00
|
|
|
setThumbnailCorners(messageRecord, previousRecord, nextRecord, isGroupThread);
|
2018-06-26 17:27:44 +00:00
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
ViewUtil.updateLayoutParams(bodyText, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2018-07-21 01:24:52 +00:00
|
|
|
ViewUtil.updateLayoutParams(groupSenderHolder, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2019-04-17 14:21:30 +00:00
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
footer.setVisibility(VISIBLE);
|
2015-06-29 15:49:32 +00:00
|
|
|
} else {
|
2017-01-20 17:30:08 +00:00
|
|
|
if (mediaThumbnailStub.resolved()) mediaThumbnailStub.get().setVisibility(View.GONE);
|
|
|
|
if (audioViewStub.resolved()) audioViewStub.get().setVisibility(View.GONE);
|
2017-03-28 19:05:30 +00:00
|
|
|
if (documentViewStub.resolved()) documentViewStub.get().setVisibility(View.GONE);
|
2018-04-27 00:03:54 +00:00
|
|
|
if (sharedContactStub.resolved()) sharedContactStub.get().setVisibility(GONE);
|
2019-01-15 08:41:05 +00:00
|
|
|
if (linkPreviewStub.resolved()) linkPreviewStub.get().setVisibility(GONE);
|
2019-04-17 14:21:30 +00:00
|
|
|
if (stickerStub.resolved()) stickerStub.get().setVisibility(View.GONE);
|
2018-07-12 23:03:32 +00:00
|
|
|
|
|
|
|
ViewUtil.updateLayoutParams(bodyText, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2018-07-21 01:24:52 +00:00
|
|
|
ViewUtil.updateLayoutParams(groupSenderHolder, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2019-04-17 14:21:30 +00:00
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
footer.setVisibility(VISIBLE);
|
2015-01-30 06:37:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-15 08:41:05 +00:00
|
|
|
private void setThumbnailCorners(@NonNull MessageRecord current,
|
|
|
|
@NonNull Optional<MessageRecord> previous,
|
|
|
|
@NonNull Optional<MessageRecord> next,
|
|
|
|
boolean isGroupThread)
|
2018-06-26 17:27:44 +00:00
|
|
|
{
|
|
|
|
int defaultRadius = readDimen(R.dimen.message_corner_radius);
|
|
|
|
int collapseRadius = readDimen(R.dimen.message_corner_collapse_radius);
|
|
|
|
|
|
|
|
int topLeft = defaultRadius;
|
|
|
|
int topRight = defaultRadius;
|
|
|
|
int bottomLeft = defaultRadius;
|
|
|
|
int bottomRight = defaultRadius;
|
|
|
|
|
|
|
|
if (isSingularMessage(current, previous, next, isGroupThread)) {
|
|
|
|
topLeft = defaultRadius;
|
|
|
|
topRight = defaultRadius;
|
|
|
|
bottomLeft = defaultRadius;
|
|
|
|
bottomRight = defaultRadius;
|
|
|
|
} else if (isStartOfMessageCluster(current, previous, isGroupThread)) {
|
|
|
|
if (current.isOutgoing()) {
|
|
|
|
bottomRight = collapseRadius;
|
|
|
|
} else {
|
|
|
|
bottomLeft = collapseRadius;
|
|
|
|
}
|
|
|
|
} else if (isEndOfMessageCluster(current, next, isGroupThread)) {
|
|
|
|
if (current.isOutgoing()) {
|
|
|
|
topRight = collapseRadius;
|
|
|
|
} else {
|
|
|
|
topLeft = collapseRadius;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (current.isOutgoing()) {
|
|
|
|
topRight = collapseRadius;
|
|
|
|
bottomRight = collapseRadius;
|
|
|
|
} else {
|
|
|
|
topLeft = collapseRadius;
|
|
|
|
bottomLeft = collapseRadius;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-13 21:28:16 +00:00
|
|
|
if (!TextUtils.isEmpty(current.getDisplayBody(getContext()))) {
|
2018-06-26 17:27:44 +00:00
|
|
|
bottomLeft = 0;
|
|
|
|
bottomRight = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isStartOfMessageCluster(current, previous, isGroupThread) && !current.isOutgoing() && isGroupThread) {
|
|
|
|
topLeft = 0;
|
|
|
|
topRight = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasQuote(messageRecord)) {
|
|
|
|
topLeft = 0;
|
|
|
|
topRight = 0;
|
|
|
|
}
|
|
|
|
|
2019-02-27 03:29:52 +00:00
|
|
|
if (hasLinkPreview(messageRecord) || hasExtraText(messageRecord)) {
|
2019-01-15 08:41:05 +00:00
|
|
|
bottomLeft = 0;
|
|
|
|
bottomRight = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
mediaThumbnailStub.get().setCorners(topLeft, topRight, bottomRight, bottomLeft);
|
2018-06-26 17:27:44 +00:00
|
|
|
}
|
|
|
|
|
2018-07-18 20:53:50 +00:00
|
|
|
private void setSharedContactCorners(@NonNull MessageRecord current, @NonNull Optional<MessageRecord> previous, @NonNull Optional<MessageRecord> next, boolean isGroupThread) {
|
|
|
|
if (isSingularMessage(current, previous, next, isGroupThread) || isEndOfMessageCluster(current, next, isGroupThread)) {
|
|
|
|
sharedContactStub.get().setSingularStyle();
|
2019-01-15 08:41:05 +00:00
|
|
|
} else if (current.isOutgoing()) {
|
|
|
|
sharedContactStub.get().setClusteredOutgoingStyle();
|
2018-07-18 20:53:50 +00:00
|
|
|
} else {
|
2019-01-15 08:41:05 +00:00
|
|
|
sharedContactStub.get().setClusteredIncomingStyle();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setLinkPreviewCorners(@NonNull MessageRecord current, @NonNull Optional<MessageRecord> previous, @NonNull Optional<MessageRecord> next, boolean isGroupThread, boolean bigImage) {
|
|
|
|
int defaultRadius = readDimen(R.dimen.message_corner_radius);
|
|
|
|
int collapseRadius = readDimen(R.dimen.message_corner_collapse_radius);
|
|
|
|
|
|
|
|
if (bigImage) {
|
|
|
|
linkPreviewStub.get().setCorners(0, 0);
|
|
|
|
} else if (isStartOfMessageCluster(current, previous, isGroupThread) && !current.isOutgoing() && isGroupThread) {
|
|
|
|
linkPreviewStub.get().setCorners(0, 0);
|
|
|
|
} else if (isSingularMessage(current, previous, next, isGroupThread) || isStartOfMessageCluster(current, previous, isGroupThread)) {
|
|
|
|
linkPreviewStub.get().setCorners(defaultRadius, defaultRadius);
|
|
|
|
} else if (current.isOutgoing()) {
|
|
|
|
linkPreviewStub.get().setCorners(defaultRadius, collapseRadius);
|
|
|
|
} else {
|
|
|
|
linkPreviewStub.get().setCorners(collapseRadius, defaultRadius);
|
2018-07-18 20:53:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setContactPhoto(@NonNull Recipient recipient) {
|
2020-03-13 03:26:54 +00:00
|
|
|
if (messageRecord == null) return; // TODO: Figure out how this happens
|
2019-08-06 00:22:05 +00:00
|
|
|
LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams)bodyBubble.getLayoutParams();
|
2020-03-11 23:49:17 +00:00
|
|
|
int groupThreadMargin = (int)((12 * getResources().getDisplayMetrics().density) + getResources().getDimension(R.dimen.small_profile_picture_size));
|
2020-01-13 04:29:06 +00:00
|
|
|
int defaultMargin = 0;
|
2020-07-13 04:40:42 +00:00
|
|
|
Recipient r = DatabaseFactory.getThreadDatabase(context).getRecipientForThreadId(messageRecord.getThreadId());
|
|
|
|
String threadName = r != null ? r.getName() : "";
|
2020-02-04 02:07:54 +00:00
|
|
|
boolean isRSSFeed = threadName != null && (threadName.equals("Loki News") || threadName.equals("Session Updates"));
|
2020-01-15 01:20:10 +00:00
|
|
|
layoutParams.setMarginStart((groupThread && !isRSSFeed) ? groupThreadMargin : defaultMargin);
|
2019-08-06 00:22:05 +00:00
|
|
|
bodyBubble.setLayoutParams(layoutParams);
|
2020-01-13 04:29:06 +00:00
|
|
|
if (profilePictureView == null) return;
|
2020-07-15 04:26:20 +00:00
|
|
|
profilePictureView.setPublicKey(recipient.getAddress().toString());
|
|
|
|
profilePictureView.setAdditionalPublicKey(null);
|
2020-01-13 04:29:06 +00:00
|
|
|
profilePictureView.setRSSFeed(false);
|
|
|
|
profilePictureView.setGlide(glideRequests);
|
|
|
|
profilePictureView.update();
|
2012-10-28 23:04:24 +00:00
|
|
|
}
|
|
|
|
|
2017-03-28 12:34:36 +00:00
|
|
|
private SpannableString linkifyMessageBody(SpannableString messageBody, boolean shouldLinkifyAllLinks) {
|
2018-08-13 19:23:28 +00:00
|
|
|
int linkPattern = Linkify.WEB_URLS | Linkify.EMAIL_ADDRESSES | Linkify.PHONE_NUMBERS;
|
|
|
|
boolean hasLinks = Linkify.addLinks(messageBody, shouldLinkifyAllLinks ? linkPattern : 0);
|
2017-03-28 12:34:36 +00:00
|
|
|
|
|
|
|
if (hasLinks) {
|
2019-02-21 01:00:23 +00:00
|
|
|
Stream.of(messageBody.getSpans(0, messageBody.length(), URLSpan.class))
|
|
|
|
.filterNot(url -> LinkPreviewUtil.isLegalUrl(url.getURL()))
|
|
|
|
.forEach(messageBody::removeSpan);
|
|
|
|
|
2017-03-28 12:34:36 +00:00
|
|
|
URLSpan[] urlSpans = messageBody.getSpans(0, messageBody.length(), URLSpan.class);
|
2019-02-21 01:00:23 +00:00
|
|
|
|
2017-03-28 12:34:36 +00:00
|
|
|
for (URLSpan urlSpan : urlSpans) {
|
|
|
|
int start = messageBody.getSpanStart(urlSpan);
|
|
|
|
int end = messageBody.getSpanEnd(urlSpan);
|
|
|
|
messageBody.setSpan(new LongClickCopySpan(urlSpan.getURL()), start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return messageBody;
|
|
|
|
}
|
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setStatusIcons(MessageRecord messageRecord) {
|
2015-06-29 15:49:32 +00:00
|
|
|
bodyText.setCompoundDrawablesWithIntrinsicBounds(0, 0, messageRecord.isKeyExchange() ? R.drawable.ic_menu_login : 0, 0);
|
|
|
|
|
2015-11-24 15:06:41 +00:00
|
|
|
if (messageRecord.isFailed()) {
|
2018-07-12 23:03:32 +00:00
|
|
|
alertView.setFailed();
|
2015-11-24 15:06:41 +00:00
|
|
|
} else if (messageRecord.isPendingInsecureSmsFallback()) {
|
2018-07-12 23:03:32 +00:00
|
|
|
alertView.setPendingApproval();
|
2015-11-24 15:06:41 +00:00
|
|
|
} else {
|
|
|
|
alertView.setNone();
|
2016-08-16 03:23:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setQuote(@NonNull MessageRecord current, @NonNull Optional<MessageRecord> previous, @NonNull Optional<MessageRecord> next, boolean isGroupThread) {
|
2018-06-26 17:27:44 +00:00
|
|
|
if (current.isMms() && !current.isMmsNotification() && ((MediaMmsMessageRecord)current).getQuote() != null) {
|
|
|
|
Quote quote = ((MediaMmsMessageRecord)current).getQuote();
|
2019-04-17 14:21:30 +00:00
|
|
|
//noinspection ConstantConditions
|
2019-10-15 02:51:18 +00:00
|
|
|
String quoteBody = MentionUtilities.highlightMentions(quote.getText(), current.getThreadId(), context);
|
2019-10-11 02:24:20 +00:00
|
|
|
quoteView.setQuote(glideRequests, quote.getId(), Recipient.from(context, quote.getAuthor(), true), quoteBody, quote.isOriginalMissing(), quote.getAttachment(), conversationRecipient);
|
2018-02-07 22:01:37 +00:00
|
|
|
quoteView.setVisibility(View.VISIBLE);
|
2018-04-02 23:17:32 +00:00
|
|
|
quoteView.getLayoutParams().width = ViewGroup.LayoutParams.WRAP_CONTENT;
|
|
|
|
|
|
|
|
quoteView.setOnClickListener(view -> {
|
|
|
|
if (eventListener != null && batchSelected.isEmpty()) {
|
2018-06-26 17:27:44 +00:00
|
|
|
eventListener.onQuoteClicked((MmsMessageRecord) current);
|
2018-04-02 23:17:32 +00:00
|
|
|
} else {
|
|
|
|
passthroughClickListener.onClick(view);
|
|
|
|
}
|
|
|
|
});
|
2018-07-12 23:03:32 +00:00
|
|
|
|
2018-04-02 23:17:32 +00:00
|
|
|
quoteView.setOnLongClickListener(passthroughClickListener);
|
2018-06-26 17:27:44 +00:00
|
|
|
|
|
|
|
if (isStartOfMessageCluster(current, previous, isGroupThread)) {
|
|
|
|
if (current.isOutgoing()) {
|
|
|
|
quoteView.setTopCornerSizes(true, true);
|
|
|
|
} else if (isGroupThread) {
|
|
|
|
quoteView.setTopCornerSizes(false, false);
|
|
|
|
} else {
|
|
|
|
quoteView.setTopCornerSizes(true, true);
|
|
|
|
}
|
|
|
|
} else if (!isSingularMessage(current, previous, next, isGroupThread)) {
|
|
|
|
if (current.isOutgoing()) {
|
|
|
|
quoteView.setTopCornerSizes(true, false);
|
|
|
|
} else {
|
|
|
|
quoteView.setTopCornerSizes(false, true);
|
|
|
|
}
|
|
|
|
}
|
2018-07-12 23:03:32 +00:00
|
|
|
|
|
|
|
if (mediaThumbnailStub.resolved()) {
|
|
|
|
ViewUtil.setTopMargin(mediaThumbnailStub.get(), readDimen(R.dimen.message_bubble_top_padding));
|
|
|
|
}
|
2018-02-07 22:01:37 +00:00
|
|
|
} else {
|
|
|
|
quoteView.dismiss();
|
2018-07-12 23:03:32 +00:00
|
|
|
|
|
|
|
if (mediaThumbnailStub.resolved()) {
|
|
|
|
ViewUtil.setTopMargin(mediaThumbnailStub.get(), 0);
|
|
|
|
}
|
2018-02-07 22:01:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setGutterSizes(@NonNull MessageRecord current, boolean isGroupThread) {
|
2018-07-18 20:53:50 +00:00
|
|
|
if (isGroupThread && current.isOutgoing()) {
|
|
|
|
ViewUtil.setLeftMargin(container, readDimen(R.dimen.conversation_group_left_gutter));
|
|
|
|
} else if (current.isOutgoing()) {
|
|
|
|
ViewUtil.setLeftMargin(container, readDimen(R.dimen.conversation_individual_left_gutter));
|
2015-03-27 17:37:59 +00:00
|
|
|
}
|
2015-01-15 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setFooter(@NonNull MessageRecord current, @NonNull Optional<MessageRecord> next, @NonNull Locale locale, boolean isGroupThread) {
|
2018-06-26 17:27:44 +00:00
|
|
|
ViewUtil.updateLayoutParams(footer, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
|
|
|
|
|
|
|
|
footer.setVisibility(GONE);
|
2019-04-17 14:21:30 +00:00
|
|
|
stickerFooter.setVisibility(GONE);
|
2019-02-27 03:29:52 +00:00
|
|
|
if (sharedContactStub.resolved()) sharedContactStub.get().getFooter().setVisibility(GONE);
|
2018-06-26 17:27:44 +00:00
|
|
|
if (mediaThumbnailStub.resolved()) mediaThumbnailStub.get().getFooter().setVisibility(GONE);
|
|
|
|
|
2018-08-06 14:34:02 +00:00
|
|
|
boolean differentTimestamps = next.isPresent() && !DateUtils.isSameExtendedRelativeTimestamp(context, locale, next.get().getTimestamp(), current.getTimestamp());
|
2018-07-21 01:35:04 +00:00
|
|
|
|
2018-07-21 01:45:18 +00:00
|
|
|
if (current.getExpiresIn() > 0 || !current.isSecure() || current.isPending() || current.isPendingInsecureSmsFallback() ||
|
2018-08-06 14:34:02 +00:00
|
|
|
current.isFailed() || differentTimestamps || isEndOfMessageCluster(current, next, isGroupThread))
|
2018-07-21 01:45:18 +00:00
|
|
|
{
|
2018-06-26 17:27:44 +00:00
|
|
|
ConversationItemFooter activeFooter = getActiveFooter(current);
|
|
|
|
activeFooter.setVisibility(VISIBLE);
|
|
|
|
activeFooter.setMessageRecord(current, locale);
|
|
|
|
}
|
2012-10-28 23:04:24 +00:00
|
|
|
}
|
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
private ConversationItemFooter getActiveFooter(@NonNull MessageRecord messageRecord) {
|
2019-04-17 14:21:30 +00:00
|
|
|
if (hasSticker(messageRecord)) {
|
|
|
|
return stickerFooter;
|
|
|
|
} else if (hasSharedContact(messageRecord)) {
|
2018-06-26 17:27:44 +00:00
|
|
|
return sharedContactStub.get().getFooter();
|
2019-03-13 21:28:16 +00:00
|
|
|
} else if (hasOnlyThumbnail(messageRecord) && TextUtils.isEmpty(messageRecord.getDisplayBody(getContext()))) {
|
2018-06-26 17:27:44 +00:00
|
|
|
return mediaThumbnailStub.get().getFooter();
|
2014-03-01 22:17:55 +00:00
|
|
|
} else {
|
2018-06-26 17:27:44 +00:00
|
|
|
return footer;
|
2014-03-01 22:17:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
private int readDimen(@DimenRes int dimenId) {
|
|
|
|
return context.getResources().getDimensionPixelOffset(dimenId);
|
|
|
|
}
|
|
|
|
|
2015-09-24 00:19:24 +00:00
|
|
|
private boolean shouldInterceptClicks(MessageRecord messageRecord) {
|
|
|
|
return batchSelected.isEmpty() &&
|
2015-10-01 06:02:50 +00:00
|
|
|
((messageRecord.isFailed() && !messageRecord.isMmsNotification()) ||
|
2015-09-24 00:19:24 +00:00
|
|
|
messageRecord.isPendingInsecureSmsFallback() ||
|
|
|
|
messageRecord.isBundleKeyExchange());
|
2012-10-28 23:04:24 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 03:22:48 +00:00
|
|
|
@SuppressLint("SetTextI18n")
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setGroupMessageStatus(MessageRecord messageRecord, Recipient recipient) {
|
|
|
|
if (groupThread && !messageRecord.isOutgoing()) {
|
2019-09-09 02:53:31 +00:00
|
|
|
// Show custom display names for group chats
|
|
|
|
String displayName = recipient.toShortString();
|
|
|
|
try {
|
|
|
|
String serverId = GroupUtil.getDecodedStringId(conversationRecipient.getAddress().serialize());
|
|
|
|
String senderDisplayName = DatabaseFactory.getLokiUserDatabase(context).getServerDisplayName(serverId, recipient.getAddress().serialize());
|
|
|
|
if (senderDisplayName != null) { displayName = senderDisplayName; }
|
2019-09-10 03:50:59 +00:00
|
|
|
} catch (Exception e) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
2019-09-09 02:53:31 +00:00
|
|
|
|
|
|
|
this.groupSender.setText(displayName);
|
2017-08-16 02:23:42 +00:00
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
if (recipient.getName() == null && !TextUtils.isEmpty(recipient.getProfileName())) {
|
|
|
|
this.groupSenderProfileName.setText("~" + recipient.getProfileName());
|
|
|
|
this.groupSenderProfileName.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
this.groupSenderProfileName.setText(null);
|
|
|
|
this.groupSenderProfileName.setVisibility(View.GONE);
|
|
|
|
}
|
2018-06-26 17:27:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 14:21:30 +00:00
|
|
|
private void setGroupAuthorColor(@NonNull MessageRecord messageRecord) {
|
|
|
|
if (hasSticker(messageRecord)) {
|
|
|
|
groupSender.setTextColor(ThemeUtil.getThemedColor(context, R.attr.conversation_sticker_author_color));
|
|
|
|
groupSenderProfileName.setTextColor(ThemeUtil.getThemedColor(context, R.attr.conversation_sticker_author_color));
|
|
|
|
} else {
|
|
|
|
groupSender.setTextColor(ThemeUtil.getThemedColor(context, R.attr.conversation_item_received_text_primary_color));
|
|
|
|
groupSenderProfileName.setTextColor(ThemeUtil.getThemedColor(context, R.attr.conversation_item_received_text_primary_color));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setAuthor(@NonNull MessageRecord current, @NonNull Optional<MessageRecord> previous, @NonNull Optional<MessageRecord> next, boolean isGroupThread) {
|
2020-08-19 01:40:34 +00:00
|
|
|
Recipient recipient = DatabaseFactory.getThreadDatabase(context).getRecipientForThreadId(current.getThreadId());
|
|
|
|
String threadName = null;
|
|
|
|
if (recipient != null) {
|
|
|
|
threadName = recipient.getName();
|
|
|
|
}
|
2020-02-04 02:07:54 +00:00
|
|
|
boolean isRSSFeed = threadName != null && (threadName.equals("Loki News") || threadName.equals("Session Updates"));
|
2020-01-15 01:20:10 +00:00
|
|
|
if (isGroupThread && !isRSSFeed && !current.isOutgoing()) {
|
2018-07-25 05:16:48 +00:00
|
|
|
contactPhotoHolder.setVisibility(VISIBLE);
|
|
|
|
|
2018-07-24 20:33:45 +00:00
|
|
|
if (!previous.isPresent() || previous.get().isUpdate() || !current.getRecipient().getAddress().equals(previous.get().getRecipient().getAddress()) ||
|
|
|
|
!DateUtils.isSameDay(previous.get().getTimestamp(), current.getTimestamp()))
|
|
|
|
{
|
2018-06-26 17:27:44 +00:00
|
|
|
groupSenderHolder.setVisibility(VISIBLE);
|
2017-08-16 02:23:42 +00:00
|
|
|
} else {
|
2018-06-26 17:27:44 +00:00
|
|
|
groupSenderHolder.setVisibility(GONE);
|
2017-08-16 02:23:42 +00:00
|
|
|
}
|
|
|
|
|
2020-01-15 01:20:10 +00:00
|
|
|
if (!previous.isPresent() || previous.get().isUpdate() || !current.getRecipient().getAddress().equals(previous.get().getRecipient().getAddress())) {
|
2020-01-13 04:29:06 +00:00
|
|
|
profilePictureView.setVisibility(VISIBLE);
|
2019-10-10 00:38:43 +00:00
|
|
|
int visibility = View.GONE;
|
|
|
|
|
2020-07-15 02:24:43 +00:00
|
|
|
PublicChat publicChat = DatabaseFactory.getLokiThreadDatabase(context).getPublicChat(messageRecord.getThreadId());
|
2019-10-15 03:32:23 +00:00
|
|
|
if (publicChat != null) {
|
2020-07-15 02:24:43 +00:00
|
|
|
boolean isModerator = PublicChatAPI.Companion.isUserModerator(current.getRecipient().getAddress().toString(), publicChat.getChannel(), publicChat.getServer());
|
2019-09-12 06:42:52 +00:00
|
|
|
visibility = isModerator ? View.VISIBLE : View.GONE;
|
|
|
|
}
|
2019-10-10 00:38:43 +00:00
|
|
|
|
2019-09-12 06:42:52 +00:00
|
|
|
moderatorIconImageView.setVisibility(visibility);
|
2018-06-26 17:27:44 +00:00
|
|
|
} else {
|
2020-01-13 04:29:06 +00:00
|
|
|
profilePictureView.setVisibility(GONE);
|
2019-09-12 06:42:52 +00:00
|
|
|
moderatorIconImageView.setVisibility(GONE);
|
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
}
|
2013-05-05 19:51:36 +00:00
|
|
|
} else {
|
2018-06-26 17:27:44 +00:00
|
|
|
groupSenderHolder.setVisibility(GONE);
|
|
|
|
|
2018-07-25 05:16:48 +00:00
|
|
|
if (contactPhotoHolder != null) {
|
|
|
|
contactPhotoHolder.setVisibility(GONE);
|
2019-09-12 06:42:52 +00:00
|
|
|
moderatorIconImageView.setVisibility(GONE);
|
2018-06-26 17:27:44 +00:00
|
|
|
}
|
2013-05-05 19:51:36 +00:00
|
|
|
}
|
2012-10-29 23:51:42 +00:00
|
|
|
}
|
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
private void setMessageShape(@NonNull MessageRecord current, @NonNull Optional<MessageRecord> previous, @NonNull Optional<MessageRecord> next, boolean isGroupThread) {
|
2018-07-18 20:53:50 +00:00
|
|
|
int background;
|
2018-06-26 17:27:44 +00:00
|
|
|
if (isSingularMessage(current, previous, next, isGroupThread)) {
|
2020-01-13 04:29:06 +00:00
|
|
|
background = current.isOutgoing() ? R.drawable.message_bubble_background_sent_alone : R.drawable.message_bubble_background_received_alone;
|
2018-06-26 17:27:44 +00:00
|
|
|
} else if (isStartOfMessageCluster(current, previous, isGroupThread)) {
|
2020-01-13 04:29:06 +00:00
|
|
|
background = current.isOutgoing() ? R.drawable.message_bubble_background_sent_start : R.drawable.message_bubble_background_received_start;
|
2018-06-26 17:27:44 +00:00
|
|
|
} else if (isEndOfMessageCluster(current, next, isGroupThread)) {
|
2020-01-13 04:29:06 +00:00
|
|
|
background = current.isOutgoing() ? R.drawable.message_bubble_background_sent_end : R.drawable.message_bubble_background_received_end;
|
2018-06-26 17:27:44 +00:00
|
|
|
} else {
|
2020-01-13 04:29:06 +00:00
|
|
|
background = current.isOutgoing() ? R.drawable.message_bubble_background_sent_middle : R.drawable.message_bubble_background_received_middle;
|
2018-06-26 17:27:44 +00:00
|
|
|
}
|
2018-07-18 20:53:50 +00:00
|
|
|
|
|
|
|
bodyBubble.setBackgroundResource(background);
|
2018-06-26 17:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isStartOfMessageCluster(@NonNull MessageRecord current, @NonNull Optional<MessageRecord> previous, boolean isGroupThread) {
|
|
|
|
if (isGroupThread) {
|
|
|
|
return !previous.isPresent() || previous.get().isUpdate() || !DateUtils.isSameDay(current.getTimestamp(), previous.get().getTimestamp()) ||
|
|
|
|
!current.getRecipient().getAddress().equals(previous.get().getRecipient().getAddress());
|
|
|
|
} else {
|
|
|
|
return !previous.isPresent() || previous.get().isUpdate() || !DateUtils.isSameDay(current.getTimestamp(), previous.get().getTimestamp()) ||
|
|
|
|
current.isOutgoing() != previous.get().isOutgoing();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isEndOfMessageCluster(@NonNull MessageRecord current, @NonNull Optional<MessageRecord> next, boolean isGroupThread) {
|
|
|
|
if (isGroupThread) {
|
|
|
|
return !next.isPresent() || next.get().isUpdate() || !DateUtils.isSameDay(current.getTimestamp(), next.get().getTimestamp()) ||
|
|
|
|
!current.getRecipient().getAddress().equals(next.get().getRecipient().getAddress());
|
|
|
|
} else {
|
|
|
|
return !next.isPresent() || next.get().isUpdate() || !DateUtils.isSameDay(current.getTimestamp(), next.get().getTimestamp()) ||
|
|
|
|
current.isOutgoing() != next.get().isOutgoing();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isSingularMessage(@NonNull MessageRecord current, @NonNull Optional<MessageRecord> previous, @NonNull Optional<MessageRecord> next, boolean isGroupThread) {
|
|
|
|
return isStartOfMessageCluster(current, previous, isGroupThread) && isEndOfMessageCluster(current, next, isGroupThread);
|
|
|
|
}
|
|
|
|
|
2018-07-23 12:08:45 +00:00
|
|
|
private void setMessageSpacing(@NonNull Context context, @NonNull MessageRecord current, @NonNull Optional<MessageRecord> previous, @NonNull Optional<MessageRecord> next, boolean isGroupThread) {
|
|
|
|
int spacingTop = readDimen(context, R.dimen.conversation_vertical_message_spacing_collapse);
|
|
|
|
int spacingBottom = spacingTop;
|
2018-07-12 23:03:32 +00:00
|
|
|
|
2018-07-23 12:08:45 +00:00
|
|
|
if (isStartOfMessageCluster(current, previous, isGroupThread)) {
|
|
|
|
spacingTop = readDimen(context, R.dimen.conversation_vertical_message_spacing_default);
|
|
|
|
}
|
2018-06-26 17:27:44 +00:00
|
|
|
|
2018-07-23 12:08:45 +00:00
|
|
|
if (isEndOfMessageCluster(current, next, isGroupThread)) {
|
|
|
|
spacingBottom = readDimen(context, R.dimen.conversation_vertical_message_spacing_default);
|
2018-06-26 17:27:44 +00:00
|
|
|
}
|
2018-07-12 23:03:32 +00:00
|
|
|
|
2018-07-23 12:08:45 +00:00
|
|
|
ViewUtil.setPaddingTop(this, spacingTop);
|
|
|
|
ViewUtil.setPaddingBottom(this, spacingBottom);
|
2018-06-26 17:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private int readDimen(@NonNull Context context, @DimenRes int dimenId) {
|
|
|
|
return context.getResources().getDimensionPixelOffset(dimenId);
|
|
|
|
}
|
|
|
|
|
2015-05-26 20:12:11 +00:00
|
|
|
/// Event handlers
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-05-26 20:12:11 +00:00
|
|
|
private void handleApproveIdentity() {
|
|
|
|
List<IdentityKeyMismatch> mismatches = messageRecord.getIdentityKeyMismatches();
|
2015-05-21 17:13:03 +00:00
|
|
|
|
2015-05-26 20:12:11 +00:00
|
|
|
if (mismatches.size() != 1) {
|
|
|
|
throw new AssertionError("Identity mismatch count: " + mismatches.size());
|
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2018-01-25 03:17:44 +00:00
|
|
|
new ConfirmIdentityDialog(context, messageRecord, mismatches.get(0)).show();
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2019-02-27 03:29:52 +00:00
|
|
|
private Spannable getLongMessageSpan(@NonNull MessageRecord messageRecord) {
|
|
|
|
String message;
|
|
|
|
Runnable action;
|
|
|
|
|
|
|
|
if (messageRecord.isMms()) {
|
|
|
|
TextSlide slide = ((MmsMessageRecord) messageRecord).getSlideDeck().getTextSlide();
|
|
|
|
|
|
|
|
if (slide != null && slide.asAttachment().getTransferState() == AttachmentDatabase.TRANSFER_PROGRESS_DONE) {
|
|
|
|
message = getResources().getString(R.string.ConversationItem_read_more);
|
|
|
|
action = () -> eventListener.onMoreTextClicked(conversationRecipient.getAddress(), messageRecord.getId(), messageRecord.isMms());
|
|
|
|
} else if (slide != null && slide.asAttachment().getTransferState() == AttachmentDatabase.TRANSFER_PROGRESS_STARTED) {
|
|
|
|
message = getResources().getString(R.string.ConversationItem_pending);
|
|
|
|
action = () -> {};
|
|
|
|
} else if (slide != null) {
|
|
|
|
message = getResources().getString(R.string.ConversationItem_download_more);
|
|
|
|
action = () -> singleDownloadClickListener.onClick(bodyText, slide);
|
|
|
|
} else {
|
|
|
|
message = getResources().getString(R.string.ConversationItem_read_more);
|
|
|
|
action = () -> eventListener.onMoreTextClicked(conversationRecipient.getAddress(), messageRecord.getId(), messageRecord.isMms());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
message = getResources().getString(R.string.ConversationItem_read_more);
|
|
|
|
action = () -> eventListener.onMoreTextClicked(conversationRecipient.getAddress(), messageRecord.getId(), messageRecord.isMms());
|
|
|
|
}
|
|
|
|
|
|
|
|
SpannableStringBuilder span = new SpannableStringBuilder(message);
|
|
|
|
CharacterStyle style = new ClickableSpan() {
|
|
|
|
@Override
|
|
|
|
public void onClick(@NonNull View widget) {
|
|
|
|
if (eventListener != null && batchSelected.isEmpty()) {
|
|
|
|
action.run();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void updateDrawState(@NonNull TextPaint ds) {
|
|
|
|
ds.setTypeface(Typeface.DEFAULT_BOLD);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
span.setSpan(style, 0, span.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
|
|
|
return span;
|
|
|
|
}
|
|
|
|
|
2015-07-23 00:47:38 +00:00
|
|
|
@Override
|
2017-09-06 17:31:48 +00:00
|
|
|
public void onModified(final Recipient modified) {
|
2017-09-13 05:48:30 +00:00
|
|
|
Util.runOnMain(() -> {
|
2018-07-12 23:03:32 +00:00
|
|
|
setBubbleState(messageRecord);
|
|
|
|
setContactPhoto(recipient);
|
|
|
|
setGroupMessageStatus(messageRecord, recipient);
|
2017-09-13 05:48:30 +00:00
|
|
|
setAudioViewTint(messageRecord, conversationRecipient);
|
2016-08-14 05:55:43 +00:00
|
|
|
});
|
2015-10-21 22:32:29 +00:00
|
|
|
}
|
|
|
|
|
2018-04-27 00:03:54 +00:00
|
|
|
private class SharedContactEventListener implements SharedContactView.EventListener {
|
|
|
|
@Override
|
|
|
|
public void onAddToContactsClicked(@NonNull Contact contact) {
|
|
|
|
if (eventListener != null && batchSelected.isEmpty()) {
|
|
|
|
eventListener.onAddToContactsClicked(contact);
|
|
|
|
} else {
|
|
|
|
passthroughClickListener.onClick(sharedContactStub.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onInviteClicked(@NonNull List<Recipient> choices) {
|
|
|
|
if (eventListener != null && batchSelected.isEmpty()) {
|
|
|
|
eventListener.onInviteSharedContactClicked(choices);
|
|
|
|
} else {
|
|
|
|
passthroughClickListener.onClick(sharedContactStub.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onMessageClicked(@NonNull List<Recipient> choices) {
|
|
|
|
if (eventListener != null && batchSelected.isEmpty()) {
|
|
|
|
eventListener.onMessageSharedContactClicked(choices);
|
|
|
|
} else {
|
|
|
|
passthroughClickListener.onClick(sharedContactStub.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class SharedContactClickListener implements View.OnClickListener {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
if (eventListener != null && batchSelected.isEmpty() && messageRecord.isMms() && !((MmsMessageRecord) messageRecord).getSharedContacts().isEmpty()) {
|
|
|
|
eventListener.onSharedContactDetailsClicked(((MmsMessageRecord) messageRecord).getSharedContacts().get(0), sharedContactStub.get().getAvatarView());
|
|
|
|
} else {
|
|
|
|
passthroughClickListener.onClick(view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-15 08:41:05 +00:00
|
|
|
private class LinkPreviewClickListener implements View.OnClickListener {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
if (eventListener != null && batchSelected.isEmpty() && messageRecord.isMms() && !((MmsMessageRecord) messageRecord).getLinkPreviews().isEmpty()) {
|
|
|
|
eventListener.onLinkPreviewClicked(((MmsMessageRecord) messageRecord).getLinkPreviews().get(0));
|
|
|
|
} else {
|
|
|
|
passthroughClickListener.onClick(view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class LinkPreviewThumbnailClickListener implements SlideClickListener {
|
|
|
|
public void onClick(final View v, final Slide slide) {
|
|
|
|
if (eventListener != null && batchSelected.isEmpty() && messageRecord.isMms() && !((MmsMessageRecord) messageRecord).getLinkPreviews().isEmpty()) {
|
|
|
|
eventListener.onLinkPreviewClicked(((MmsMessageRecord) messageRecord).getLinkPreviews().get(0));
|
|
|
|
} else {
|
|
|
|
performClick();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-09 07:33:37 +00:00
|
|
|
private class AttachmentDownloadClickListener implements SlidesClickedListener {
|
2017-01-20 23:26:17 +00:00
|
|
|
@Override
|
2018-11-09 07:33:37 +00:00
|
|
|
public void onClick(View v, final List<Slide> slides) {
|
2018-08-02 13:50:36 +00:00
|
|
|
Log.i(TAG, "onClick() for attachment download");
|
2017-01-20 23:26:17 +00:00
|
|
|
if (messageRecord.isMmsNotification()) {
|
2018-08-02 13:50:36 +00:00
|
|
|
Log.i(TAG, "Scheduling MMS attachment download");
|
2017-01-20 23:26:17 +00:00
|
|
|
ApplicationContext.getInstance(context)
|
|
|
|
.getJobManager()
|
2019-03-28 15:56:35 +00:00
|
|
|
.add(new MmsDownloadJob(messageRecord.getId(),
|
2017-01-20 23:26:17 +00:00
|
|
|
messageRecord.getThreadId(), false));
|
|
|
|
} else {
|
2018-11-09 07:33:37 +00:00
|
|
|
Log.i(TAG, "Scheduling push attachment downloads for " + slides.size() + " items");
|
2017-07-21 22:59:27 +00:00
|
|
|
|
2018-11-09 07:33:37 +00:00
|
|
|
for (Slide slide : slides) {
|
|
|
|
ApplicationContext.getInstance(context)
|
|
|
|
.getJobManager()
|
2019-03-28 15:56:35 +00:00
|
|
|
.add(new AttachmentDownloadJob(messageRecord.getId(),
|
2018-11-09 07:33:37 +00:00
|
|
|
((DatabaseAttachment)slide.asAttachment()).getAttachmentId(), true));
|
|
|
|
}
|
2017-01-20 23:26:17 +00:00
|
|
|
}
|
2015-08-24 22:24:31 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-17 00:31:24 +00:00
|
|
|
|
2018-11-09 07:33:37 +00:00
|
|
|
private class SlideClickPassthroughListener implements SlideClickListener {
|
|
|
|
|
|
|
|
private final SlidesClickedListener original;
|
|
|
|
|
|
|
|
private SlideClickPassthroughListener(@NonNull SlidesClickedListener original) {
|
|
|
|
this.original = original;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v, Slide slide) {
|
|
|
|
original.onClick(v, Collections.singletonList(slide));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 14:21:30 +00:00
|
|
|
private class StickerClickListener implements SlideClickListener {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v, Slide slide) {
|
|
|
|
if (shouldInterceptClicks(messageRecord) || !batchSelected.isEmpty()) {
|
|
|
|
performClick();
|
|
|
|
} else if (eventListener != null && hasSticker(messageRecord)){
|
|
|
|
//noinspection ConstantConditions
|
|
|
|
eventListener.onStickerClicked(((MmsMessageRecord) messageRecord).getSlideDeck().getStickerSlide().asAttachment().getSticker());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-21 22:32:29 +00:00
|
|
|
private class ThumbnailClickListener implements SlideClickListener {
|
2015-03-31 22:44:41 +00:00
|
|
|
public void onClick(final View v, final Slide slide) {
|
2015-09-24 23:46:57 +00:00
|
|
|
if (shouldInterceptClicks(messageRecord) || !batchSelected.isEmpty()) {
|
|
|
|
performClick();
|
2016-11-26 20:10:14 +00:00
|
|
|
} else if (MediaPreviewActivity.isContentTypeSupported(slide.getContentType()) && slide.getUri() != null) {
|
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());
|
2017-09-21 01:14:28 +00:00
|
|
|
intent.putExtra(MediaPreviewActivity.ADDRESS_EXTRA, conversationRecipient.getAddress());
|
2017-10-04 18:35:16 +00:00
|
|
|
intent.putExtra(MediaPreviewActivity.OUTGOING_EXTRA, messageRecord.isOutgoing());
|
2015-07-06 22:14:57 +00:00
|
|
|
intent.putExtra(MediaPreviewActivity.DATE_EXTRA, messageRecord.getTimestamp());
|
2016-11-26 20:10:14 +00:00
|
|
|
intent.putExtra(MediaPreviewActivity.SIZE_EXTRA, slide.asAttachment().getSize());
|
2018-11-09 07:33:37 +00:00
|
|
|
intent.putExtra(MediaPreviewActivity.CAPTION_EXTRA, slide.getCaption().orNull());
|
2018-01-23 20:39:30 +00:00
|
|
|
intent.putExtra(MediaPreviewActivity.LEFT_IS_RECENT_EXTRA, false);
|
2015-01-30 06:37:01 +00:00
|
|
|
|
2015-03-13 18:23:01 +00:00
|
|
|
context.startActivity(intent);
|
2016-12-11 21:37:27 +00:00
|
|
|
} else if (slide.getUri() != null) {
|
2018-08-02 13:25:33 +00:00
|
|
|
Log.i(TAG, "Clicked: " + slide.getUri() + " , " + slide.getContentType());
|
2017-03-28 19:05:30 +00:00
|
|
|
Uri publicUri = PartAuthority.getAttachmentPublicUri(slide.getUri());
|
2018-08-02 13:25:33 +00:00
|
|
|
Log.i(TAG, "Public URI: " + publicUri);
|
2017-03-28 19:05:30 +00:00
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
|
|
|
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
|
|
|
intent.setDataAndType(PartAuthority.getAttachmentPublicUri(slide.getUri()), slide.getContentType());
|
|
|
|
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();
|
|
|
|
}
|
2014-08-12 19:11:23 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
private class PassthroughClickListener implements View.OnLongClickListener, View.OnClickListener {
|
|
|
|
|
2015-09-24 23:46:57 +00:00
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View v) {
|
2017-03-28 12:34:36 +00:00
|
|
|
if (bodyText.hasSelection()) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-09-15 22:28:27 +00:00
|
|
|
performLongClick();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-09-24 23:46:57 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2015-09-15 22:28:27 +00:00
|
|
|
performClick();
|
|
|
|
}
|
|
|
|
}
|
2017-03-28 19:05:30 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private class ClickListener implements View.OnClickListener {
|
2015-09-24 00:19:24 +00:00
|
|
|
private OnClickListener parent;
|
2015-09-15 22:28:27 +00:00
|
|
|
|
2018-02-02 03:22:48 +00:00
|
|
|
ClickListener(@Nullable OnClickListener parent) {
|
2015-09-24 00:19:24 +00:00
|
|
|
this.parent = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onClick(View v) {
|
|
|
|
if (!shouldInterceptClicks(messageRecord) && parent != null) {
|
|
|
|
parent.onClick(v);
|
|
|
|
} else if (messageRecord.isFailed()) {
|
2015-01-15 21:35:35 +00:00
|
|
|
Intent intent = new Intent(context, MessageDetailsActivity.class);
|
|
|
|
intent.putExtra(MessageDetailsActivity.MESSAGE_ID_EXTRA, messageRecord.getId());
|
2015-08-15 12:00:08 +00:00
|
|
|
intent.putExtra(MessageDetailsActivity.THREAD_ID_EXTRA, messageRecord.getThreadId());
|
2015-01-15 21:35:35 +00:00
|
|
|
intent.putExtra(MessageDetailsActivity.TYPE_EXTRA, messageRecord.isMms() ? MmsSmsDatabase.MMS_TRANSPORT : MmsSmsDatabase.SMS_TRANSPORT);
|
2015-09-22 00:41:27 +00:00
|
|
|
intent.putExtra(MessageDetailsActivity.IS_PUSH_GROUP_EXTRA, groupThread && messageRecord.isPush());
|
2017-08-01 15:56:00 +00:00
|
|
|
intent.putExtra(MessageDetailsActivity.ADDRESS_EXTRA, conversationRecipient.getAddress());
|
2015-01-15 21:35:35 +00:00
|
|
|
context.startActivity(intent);
|
2015-05-26 20:12:11 +00:00
|
|
|
} else if (!messageRecord.isOutgoing() && messageRecord.isIdentityMismatchFailure()) {
|
|
|
|
handleApproveIdentity();
|
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-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-05-20 21:36:30 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.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
|
|
|
|
2018-02-02 03:22:48 +00:00
|
|
|
builder.setPositiveButton(R.string.yes, (dialogInterface, i) -> {
|
|
|
|
if (messageRecord.isMms()) {
|
|
|
|
MmsDatabase database = DatabaseFactory.getMmsDatabase(context);
|
|
|
|
database.markAsInsecure(messageRecord.getId());
|
|
|
|
database.markAsOutbox(messageRecord.getId());
|
|
|
|
database.markAsForcedSms(messageRecord.getId());
|
|
|
|
|
|
|
|
ApplicationContext.getInstance(context)
|
|
|
|
.getJobManager()
|
2019-03-28 15:56:35 +00:00
|
|
|
.add(new MmsSendJob(messageRecord.getId()));
|
2018-02-02 03:22:48 +00:00
|
|
|
} else {
|
|
|
|
SmsDatabase database = DatabaseFactory.getSmsDatabase(context);
|
|
|
|
database.markAsInsecure(messageRecord.getId());
|
|
|
|
database.markAsOutbox(messageRecord.getId());
|
|
|
|
database.markAsForcedSms(messageRecord.getId());
|
|
|
|
|
|
|
|
ApplicationContext.getInstance(context)
|
|
|
|
.getJobManager()
|
|
|
|
.add(new SmsSendJob(context, messageRecord.getId(),
|
|
|
|
messageRecord.getIndividualRecipient().getAddress().serialize()));
|
2014-03-01 22:17:55 +00:00
|
|
|
}
|
|
|
|
});
|
2014-06-14 00:39:29 +00:00
|
|
|
|
2018-02-02 03:22:48 +00:00
|
|
|
builder.setNegativeButton(R.string.no, (dialogInterface, i) -> {
|
|
|
|
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
|
|
|
}
|