mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 11:05:25 +00:00
f3d943270c
Expiring message timers could end up leaking references and executing work even after their conversation item was no longer visible Maybe fixes #6898 // FREEBIE
199 lines
7.1 KiB
Java
199 lines
7.1 KiB
Java
/**
|
|
* Copyright (C) 2014 Open Whisper Systems
|
|
*
|
|
* 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.
|
|
*
|
|
* 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;
|
|
|
|
import android.content.Context;
|
|
import android.os.AsyncTask;
|
|
import android.text.TextUtils;
|
|
import android.util.AttributeSet;
|
|
import android.view.View;
|
|
import android.widget.Button;
|
|
import android.widget.RelativeLayout;
|
|
import android.widget.TextView;
|
|
|
|
import org.thoughtcrime.securesms.components.AvatarImageView;
|
|
import org.thoughtcrime.securesms.components.FromTextView;
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
import org.thoughtcrime.securesms.database.MmsDatabase;
|
|
import org.thoughtcrime.securesms.database.documents.IdentityKeyMismatch;
|
|
import org.thoughtcrime.securesms.database.documents.NetworkFailure;
|
|
import org.thoughtcrime.securesms.database.model.MessageRecord;
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
import org.thoughtcrime.securesms.recipients.RecipientModifiedListener;
|
|
import org.thoughtcrime.securesms.sms.MessageSender;
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
/**
|
|
* A simple view to show the recipients of a message
|
|
*
|
|
* @author Jake McGinty
|
|
*/
|
|
public class MessageRecipientListItem extends RelativeLayout
|
|
implements RecipientModifiedListener
|
|
{
|
|
private final static String TAG = MessageRecipientListItem.class.getSimpleName();
|
|
|
|
private Recipient recipient;
|
|
private FromTextView fromView;
|
|
private TextView errorDescription;
|
|
private TextView actionDescription;
|
|
private Button conflictButton;
|
|
private Button resendButton;
|
|
private AvatarImageView contactPhotoImage;
|
|
|
|
public MessageRecipientListItem(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
public MessageRecipientListItem(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
}
|
|
|
|
@Override
|
|
protected void onFinishInflate() {
|
|
super.onFinishInflate();
|
|
this.fromView = (FromTextView) findViewById(R.id.from);
|
|
this.errorDescription = (TextView) findViewById(R.id.error_description);
|
|
this.actionDescription = (TextView) findViewById(R.id.action_description);
|
|
this.contactPhotoImage = (AvatarImageView) findViewById(R.id.contact_photo_image);
|
|
this.conflictButton = (Button) findViewById(R.id.conflict_button);
|
|
this.resendButton = (Button) findViewById(R.id.resend_button);
|
|
}
|
|
|
|
public void set(final MasterSecret masterSecret,
|
|
final MessageRecord record,
|
|
final Recipient recipient,
|
|
final boolean isPushGroup)
|
|
{
|
|
this.recipient = recipient;
|
|
|
|
recipient.addListener(this);
|
|
fromView.setText(recipient);
|
|
contactPhotoImage.setAvatar(recipient, false);
|
|
setIssueIndicators(masterSecret, record, isPushGroup);
|
|
}
|
|
|
|
private void setIssueIndicators(final MasterSecret masterSecret,
|
|
final MessageRecord record,
|
|
final boolean isPushGroup)
|
|
{
|
|
final NetworkFailure networkFailure = getNetworkFailure(record);
|
|
final IdentityKeyMismatch keyMismatch = networkFailure == null ? getKeyMismatch(record) : null;
|
|
|
|
String errorText = "";
|
|
|
|
if (keyMismatch != null) {
|
|
resendButton.setVisibility(View.GONE);
|
|
conflictButton.setVisibility(View.VISIBLE);
|
|
|
|
errorText = getContext().getString(R.string.MessageDetailsRecipient_new_safety_number);
|
|
conflictButton.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
new ConfirmIdentityDialog(getContext(), masterSecret, record, keyMismatch).show();
|
|
}
|
|
});
|
|
} else if (networkFailure != null || (!isPushGroup && record.isFailed())) {
|
|
resendButton.setVisibility(View.VISIBLE);
|
|
resendButton.setEnabled(true);
|
|
resendButton.requestFocus();
|
|
conflictButton.setVisibility(View.GONE);
|
|
|
|
errorText = getContext().getString(R.string.MessageDetailsRecipient_failed_to_send);
|
|
resendButton.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
resendButton.setVisibility(View.GONE);
|
|
errorDescription.setVisibility(View.GONE);
|
|
actionDescription.setVisibility(View.VISIBLE);
|
|
actionDescription.setText(R.string.message_recipients_list_item__resending);
|
|
new ResendAsyncTask(masterSecret, record, networkFailure).execute();
|
|
}
|
|
});
|
|
} else {
|
|
resendButton.setVisibility(View.GONE);
|
|
conflictButton.setVisibility(View.GONE);
|
|
}
|
|
|
|
errorDescription.setText(errorText);
|
|
errorDescription.setVisibility(TextUtils.isEmpty(errorText) ? View.GONE : View.VISIBLE);
|
|
}
|
|
|
|
private NetworkFailure getNetworkFailure(final MessageRecord record) {
|
|
if (record.hasNetworkFailures()) {
|
|
for (final NetworkFailure failure : record.getNetworkFailures()) {
|
|
if (failure.getAddress().equals(recipient.getAddress())) {
|
|
return failure;
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private IdentityKeyMismatch getKeyMismatch(final MessageRecord record) {
|
|
if (record.isIdentityMismatchFailure()) {
|
|
for (final IdentityKeyMismatch mismatch : record.getIdentityKeyMismatches()) {
|
|
if (mismatch.getAddress().equals(recipient.getAddress())) {
|
|
return mismatch;
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public void unbind() {
|
|
if (this.recipient != null) this.recipient.removeListener(this);
|
|
}
|
|
|
|
@Override
|
|
public void onModified(final Recipient recipient) {
|
|
Util.runOnMain(() -> {
|
|
fromView.setText(recipient);
|
|
contactPhotoImage.setAvatar(recipient, false);
|
|
});
|
|
}
|
|
|
|
private class ResendAsyncTask extends AsyncTask<Void,Void,Void> {
|
|
private final Context context;
|
|
private final MasterSecret masterSecret;
|
|
private final MessageRecord record;
|
|
private final NetworkFailure failure;
|
|
|
|
public ResendAsyncTask(MasterSecret masterSecret, MessageRecord record, NetworkFailure failure) {
|
|
this.context = getContext().getApplicationContext();
|
|
this.masterSecret = masterSecret;
|
|
this.record = record;
|
|
this.failure = failure;
|
|
}
|
|
|
|
@Override
|
|
protected Void doInBackground(Void... params) {
|
|
MmsDatabase mmsDatabase = DatabaseFactory.getMmsDatabase(context);
|
|
mmsDatabase.removeFailure(record.getId(), failure);
|
|
|
|
if (record.getRecipient().isPushGroupRecipient()) {
|
|
MessageSender.resendGroupMessage(context, record, failure.getAddress());
|
|
} else {
|
|
MessageSender.resend(context, masterSecret, record);
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
}
|