2012-07-19 21:22:03 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2011 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;
|
|
|
|
|
2016-11-20 23:56:47 +00:00
|
|
|
import android.annotation.TargetApi;
|
2013-06-18 21:43:27 +00:00
|
|
|
import android.content.ActivityNotFoundException;
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.IntentFilter;
|
2015-07-07 21:25:41 +00:00
|
|
|
import android.content.res.Configuration;
|
2015-07-01 00:45:39 +00:00
|
|
|
import android.content.res.TypedArray;
|
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.PorterDuff;
|
|
|
|
import android.graphics.PorterDuff.Mode;
|
2015-06-23 22:10:50 +00:00
|
|
|
import android.graphics.drawable.ColorDrawable;
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.AsyncTask;
|
2015-11-24 19:47:50 +00:00
|
|
|
import android.os.Build;
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.os.Bundle;
|
2015-11-18 22:52:26 +00:00
|
|
|
import android.os.Vibrator;
|
2016-03-29 22:52:54 +00:00
|
|
|
import android.provider.Browser;
|
2013-10-17 00:28:36 +00:00
|
|
|
import android.provider.ContactsContract;
|
2016-11-20 23:56:47 +00:00
|
|
|
import android.provider.Telephony;
|
2014-12-15 20:25:55 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2016-12-26 23:14:23 +00:00
|
|
|
import android.support.annotation.Nullable;
|
2016-09-26 03:04:13 +00:00
|
|
|
import android.support.v4.view.MenuItemCompat;
|
2015-04-16 05:38:33 +00:00
|
|
|
import android.support.v4.view.WindowCompat;
|
2015-05-20 21:36:30 +00:00
|
|
|
import android.support.v7.app.AlertDialog;
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.text.Editable;
|
2016-12-26 23:14:23 +00:00
|
|
|
import android.text.TextUtils;
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.text.TextWatcher;
|
|
|
|
import android.util.Log;
|
2015-09-29 21:26:37 +00:00
|
|
|
import android.util.Pair;
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.view.KeyEvent;
|
2014-06-29 03:40:57 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
|
|
|
import android.view.MenuItem;
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.View.OnClickListener;
|
2014-05-29 03:53:34 +00:00
|
|
|
import android.view.View.OnFocusChangeListener;
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.view.View.OnKeyListener;
|
2017-02-16 20:28:06 +00:00
|
|
|
import android.view.WindowManager;
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.view.inputmethod.EditorInfo;
|
2015-06-09 14:37:20 +00:00
|
|
|
import android.widget.Button;
|
2015-05-18 17:26:32 +00:00
|
|
|
import android.widget.ImageButton;
|
2015-11-24 19:47:50 +00:00
|
|
|
import android.widget.LinearLayout;
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.widget.TextView;
|
|
|
|
import android.widget.Toast;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-12-18 22:37:11 +00:00
|
|
|
import com.google.android.gms.location.places.ui.PlacePicker;
|
2014-02-22 18:54:43 +00:00
|
|
|
import com.google.protobuf.ByteString;
|
2013-11-26 01:00:20 +00:00
|
|
|
|
2017-02-18 04:43:24 +00:00
|
|
|
import org.greenrobot.eventbus.EventBus;
|
|
|
|
import org.greenrobot.eventbus.Subscribe;
|
|
|
|
import org.greenrobot.eventbus.ThreadMode;
|
2015-02-16 10:38:09 +00:00
|
|
|
import org.thoughtcrime.securesms.TransportOptions.OnTransportChangedListener;
|
2015-11-18 22:52:26 +00:00
|
|
|
import org.thoughtcrime.securesms.audio.AudioRecorder;
|
2015-10-24 00:00:51 +00:00
|
|
|
import org.thoughtcrime.securesms.audio.AudioSlidePlayer;
|
2015-06-30 16:16:05 +00:00
|
|
|
import org.thoughtcrime.securesms.color.MaterialColor;
|
2015-05-18 17:26:32 +00:00
|
|
|
import org.thoughtcrime.securesms.components.AnimatingToggle;
|
2015-10-28 16:47:09 +00:00
|
|
|
import org.thoughtcrime.securesms.components.AttachmentTypeSelector;
|
2015-03-11 21:23:45 +00:00
|
|
|
import org.thoughtcrime.securesms.components.ComposeText;
|
2015-11-18 22:52:26 +00:00
|
|
|
import org.thoughtcrime.securesms.components.HidingLinearLayout;
|
2015-09-22 00:41:27 +00:00
|
|
|
import org.thoughtcrime.securesms.components.InputAwareLayout;
|
2015-11-18 22:52:26 +00:00
|
|
|
import org.thoughtcrime.securesms.components.InputPanel;
|
2015-07-02 23:47:03 +00:00
|
|
|
import org.thoughtcrime.securesms.components.KeyboardAwareLinearLayout.OnKeyboardShownListener;
|
2015-06-09 14:37:20 +00:00
|
|
|
import org.thoughtcrime.securesms.components.SendButton;
|
2015-09-22 00:41:27 +00:00
|
|
|
import org.thoughtcrime.securesms.components.camera.QuickAttachmentDrawer;
|
|
|
|
import org.thoughtcrime.securesms.components.camera.QuickAttachmentDrawer.AttachmentDrawerListener;
|
2015-07-24 20:22:28 +00:00
|
|
|
import org.thoughtcrime.securesms.components.camera.QuickAttachmentDrawer.DrawerState;
|
2015-07-13 22:45:14 +00:00
|
|
|
import org.thoughtcrime.securesms.components.emoji.EmojiDrawer;
|
2017-06-07 01:03:09 +00:00
|
|
|
import org.thoughtcrime.securesms.components.identity.UntrustedSendDialog;
|
|
|
|
import org.thoughtcrime.securesms.components.identity.UnverifiedBannerView;
|
|
|
|
import org.thoughtcrime.securesms.components.identity.UnverifiedSendDialog;
|
2016-01-04 21:02:22 +00:00
|
|
|
import org.thoughtcrime.securesms.components.location.SignalPlace;
|
2015-11-09 22:51:53 +00:00
|
|
|
import org.thoughtcrime.securesms.components.reminder.InviteReminder;
|
|
|
|
import org.thoughtcrime.securesms.components.reminder.ReminderView;
|
2013-10-17 00:28:36 +00:00
|
|
|
import org.thoughtcrime.securesms.contacts.ContactAccessor;
|
|
|
|
import org.thoughtcrime.securesms.contacts.ContactAccessor.ContactData;
|
2017-06-07 01:03:09 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.IdentityKeyParcelable;
|
2014-11-08 19:35:58 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterCipher;
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2014-11-03 23:16:04 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.SecurityEvent;
|
2017-07-26 16:59:15 +00:00
|
|
|
import org.thoughtcrime.securesms.database.Address;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.database.DraftDatabase;
|
|
|
|
import org.thoughtcrime.securesms.database.DraftDatabase.Draft;
|
2014-12-12 01:13:01 +00:00
|
|
|
import org.thoughtcrime.securesms.database.DraftDatabase.Drafts;
|
2014-02-22 18:54:43 +00:00
|
|
|
import org.thoughtcrime.securesms.database.GroupDatabase;
|
2017-06-07 01:03:09 +00:00
|
|
|
import org.thoughtcrime.securesms.database.IdentityDatabase;
|
|
|
|
import org.thoughtcrime.securesms.database.IdentityDatabase.IdentityRecord;
|
|
|
|
import org.thoughtcrime.securesms.database.IdentityDatabase.VerifiedStatus;
|
2016-10-10 18:13:37 +00:00
|
|
|
import org.thoughtcrime.securesms.database.MessagingDatabase.MarkedMessageInfo;
|
2014-12-12 01:13:01 +00:00
|
|
|
import org.thoughtcrime.securesms.database.MmsSmsColumns.Types;
|
2017-02-18 04:43:24 +00:00
|
|
|
import org.thoughtcrime.securesms.database.RecipientPreferenceDatabase.RecipientPreferenceEvent;
|
2015-10-14 04:44:01 +00:00
|
|
|
import org.thoughtcrime.securesms.database.RecipientPreferenceDatabase.RecipientsPreferences;
|
2017-04-22 23:29:26 +00:00
|
|
|
import org.thoughtcrime.securesms.database.SmsDatabase;
|
2013-04-26 01:59:49 +00:00
|
|
|
import org.thoughtcrime.securesms.database.ThreadDatabase;
|
2017-06-07 01:03:09 +00:00
|
|
|
import org.thoughtcrime.securesms.database.identity.IdentityRecordList;
|
2016-08-26 23:53:23 +00:00
|
|
|
import org.thoughtcrime.securesms.jobs.MultiDeviceBlockedUpdateJob;
|
2017-05-20 01:01:40 +00:00
|
|
|
import org.thoughtcrime.securesms.jobs.RetrieveProfileJob;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.AttachmentManager;
|
2015-09-05 00:33:22 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.AttachmentManager.MediaType;
|
2015-11-18 22:52:26 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.AudioSlide;
|
2016-01-04 21:02:22 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.LocationSlide;
|
2015-07-28 20:17:01 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.MediaConstraints;
|
2016-08-16 03:23:56 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.OutgoingExpirationUpdateMessage;
|
2014-02-22 18:54:43 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.OutgoingGroupMediaMessage;
|
2014-02-24 08:19:54 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.OutgoingMediaMessage;
|
|
|
|
import org.thoughtcrime.securesms.mms.OutgoingSecureMediaMessage;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.Slide;
|
2015-11-18 22:52:26 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.SlideDeck;
|
2016-10-10 18:13:37 +00:00
|
|
|
import org.thoughtcrime.securesms.notifications.MarkReadReceiver;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import org.thoughtcrime.securesms.notifications.MessageNotifier;
|
2015-10-15 21:40:45 +00:00
|
|
|
import org.thoughtcrime.securesms.providers.PersistentBlobProvider;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFormattingException;
|
2017-08-01 15:56:00 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientModifiedListener;
|
2016-12-08 22:20:38 +00:00
|
|
|
import org.thoughtcrime.securesms.scribbles.ScribbleActivity;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import org.thoughtcrime.securesms.service.KeyCachingService;
|
2016-11-09 17:37:40 +00:00
|
|
|
import org.thoughtcrime.securesms.service.WebRtcCallService;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import org.thoughtcrime.securesms.sms.MessageSender;
|
|
|
|
import org.thoughtcrime.securesms.sms.OutgoingEncryptedMessage;
|
2014-02-19 21:46:49 +00:00
|
|
|
import org.thoughtcrime.securesms.sms.OutgoingEndSessionMessage;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import org.thoughtcrime.securesms.sms.OutgoingTextMessage;
|
2015-02-16 10:38:09 +00:00
|
|
|
import org.thoughtcrime.securesms.util.CharacterCalculator.CharacterState;
|
2014-03-01 00:32:00 +00:00
|
|
|
import org.thoughtcrime.securesms.util.Dialogs;
|
2014-03-26 21:49:40 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DirectoryHelper;
|
2017-08-07 21:33:21 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DirectoryHelper.Capability;
|
2013-06-30 01:03:55 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DynamicLanguage;
|
2013-06-21 18:56:59 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DynamicTheme;
|
2016-09-26 03:04:13 +00:00
|
|
|
import org.thoughtcrime.securesms.util.ExpirationUtil;
|
2014-02-22 18:54:43 +00:00
|
|
|
import org.thoughtcrime.securesms.util.GroupUtil;
|
2017-06-07 01:03:09 +00:00
|
|
|
import org.thoughtcrime.securesms.util.IdentityUtil;
|
2015-09-05 00:33:22 +00:00
|
|
|
import org.thoughtcrime.securesms.util.MediaUtil;
|
2013-07-10 01:26:18 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2014-11-12 19:15:05 +00:00
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
2015-10-14 04:44:01 +00:00
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
2015-11-09 22:51:53 +00:00
|
|
|
import org.thoughtcrime.securesms.util.concurrent.AssertedSuccessListener;
|
2015-06-22 15:46:43 +00:00
|
|
|
import org.thoughtcrime.securesms.util.concurrent.ListenableFuture;
|
|
|
|
import org.thoughtcrime.securesms.util.concurrent.SettableFuture;
|
2017-01-19 02:46:40 +00:00
|
|
|
import org.thoughtcrime.securesms.util.views.Stub;
|
2016-03-23 17:34:41 +00:00
|
|
|
import org.whispersystems.libsignal.InvalidMessageException;
|
|
|
|
import org.whispersystems.libsignal.util.guava.Optional;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
|
|
|
|
import java.io.IOException;
|
2014-12-13 02:31:20 +00:00
|
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
|
import java.security.SecureRandom;
|
2017-08-01 15:56:00 +00:00
|
|
|
import java.util.LinkedList;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import java.util.List;
|
2015-11-18 22:52:26 +00:00
|
|
|
import java.util.concurrent.ExecutionException;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
|
2015-03-11 21:23:45 +00:00
|
|
|
import static org.thoughtcrime.securesms.TransportOption.Type;
|
2014-02-22 18:54:43 +00:00
|
|
|
import static org.thoughtcrime.securesms.database.GroupDatabase.GroupRecord;
|
2017-06-07 01:03:09 +00:00
|
|
|
import static org.whispersystems.libsignal.SessionCipher.SESSION_LOCK;
|
2016-03-23 17:34:41 +00:00
|
|
|
import static org.whispersystems.signalservice.internal.push.SignalServiceProtos.GroupContext;
|
2014-02-22 18:54:43 +00:00
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
/**
|
|
|
|
* Activity for displaying a message thread, as well as
|
|
|
|
* composing/sending a new message into that thread.
|
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
2014-06-29 03:40:57 +00:00
|
|
|
public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
2014-04-15 10:43:14 +00:00
|
|
|
implements ConversationFragment.ConversationFragmentListener,
|
2015-02-10 11:15:50 +00:00
|
|
|
AttachmentManager.AttachmentListener,
|
2017-08-01 15:56:00 +00:00
|
|
|
RecipientModifiedListener,
|
2015-06-08 18:07:46 +00:00
|
|
|
OnKeyboardShownListener,
|
2015-11-18 22:52:26 +00:00
|
|
|
AttachmentDrawerListener,
|
2016-12-26 23:14:23 +00:00
|
|
|
InputPanel.Listener,
|
|
|
|
InputPanel.MediaListener
|
2013-04-26 01:59:49 +00:00
|
|
|
{
|
2014-02-19 00:28:54 +00:00
|
|
|
private static final String TAG = ConversationActivity.class.getSimpleName();
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
public static final String ADDRESS_EXTRA = "address";
|
2013-04-26 01:59:49 +00:00
|
|
|
public static final String THREAD_ID_EXTRA = "thread_id";
|
2015-12-01 00:38:37 +00:00
|
|
|
public static final String IS_ARCHIVED_EXTRA = "is_archived";
|
2015-11-18 20:54:40 +00:00
|
|
|
public static final String TEXT_EXTRA = "draft_text";
|
2013-04-26 01:59:49 +00:00
|
|
|
public static final String DISTRIBUTION_TYPE_EXTRA = "distribution_type";
|
2017-01-19 19:37:19 +00:00
|
|
|
public static final String TIMING_EXTRA = "timing";
|
2017-02-14 06:35:47 +00:00
|
|
|
public static final String LAST_SEEN_EXTRA = "last_seen";
|
2013-02-03 04:37:40 +00:00
|
|
|
|
2017-04-18 23:33:03 +00:00
|
|
|
private static final int PICK_GALLERY = 1;
|
|
|
|
private static final int PICK_DOCUMENT = 2;
|
2014-02-28 06:44:02 +00:00
|
|
|
private static final int PICK_AUDIO = 3;
|
|
|
|
private static final int PICK_CONTACT_INFO = 4;
|
|
|
|
private static final int GROUP_EDIT = 5;
|
2015-07-11 01:45:55 +00:00
|
|
|
private static final int TAKE_PHOTO = 6;
|
2015-10-16 13:39:27 +00:00
|
|
|
private static final int ADD_CONTACT = 7;
|
2015-12-18 22:37:11 +00:00
|
|
|
private static final int PICK_LOCATION = 8;
|
2016-10-17 02:05:07 +00:00
|
|
|
private static final int PICK_GIF = 9;
|
2017-01-18 19:01:13 +00:00
|
|
|
private static final int SMS_DEFAULT = 10;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2017-06-07 01:03:09 +00:00
|
|
|
private MasterSecret masterSecret;
|
|
|
|
protected ComposeText composeText;
|
|
|
|
private AnimatingToggle buttonToggle;
|
|
|
|
private SendButton sendButton;
|
|
|
|
private ImageButton attachButton;
|
|
|
|
protected ConversationTitleView titleView;
|
|
|
|
private TextView charactersLeft;
|
|
|
|
private ConversationFragment fragment;
|
|
|
|
private Button unblockButton;
|
|
|
|
private Button makeDefaultSmsButton;
|
|
|
|
private InputAwareLayout container;
|
|
|
|
private View composePanel;
|
|
|
|
protected Stub<ReminderView> reminderView;
|
|
|
|
private Stub<UnverifiedBannerView> unverifiedBannerView;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-10-28 16:47:09 +00:00
|
|
|
private AttachmentTypeSelector attachmentTypeSelector;
|
|
|
|
private AttachmentManager attachmentManager;
|
2015-11-18 22:52:26 +00:00
|
|
|
private AudioRecorder audioRecorder;
|
2015-10-28 16:47:09 +00:00
|
|
|
private BroadcastReceiver securityUpdateReceiver;
|
2016-08-16 03:23:56 +00:00
|
|
|
private BroadcastReceiver recipientsStaleReceiver;
|
2017-01-19 19:31:41 +00:00
|
|
|
private Stub<EmojiDrawer> emojiDrawerStub;
|
2015-11-18 22:52:26 +00:00
|
|
|
protected HidingLinearLayout quickAttachmentToggle;
|
2015-10-28 16:47:09 +00:00
|
|
|
private QuickAttachmentDrawer quickAttachmentDrawer;
|
2015-11-18 22:52:26 +00:00
|
|
|
private InputPanel inputPanel;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
private Recipient recipient;
|
2014-02-18 04:25:40 +00:00
|
|
|
private long threadId;
|
|
|
|
private int distributionType;
|
2015-12-01 00:38:37 +00:00
|
|
|
private boolean archived;
|
2015-09-29 21:26:37 +00:00
|
|
|
private boolean isSecureText;
|
2017-01-18 19:01:13 +00:00
|
|
|
private boolean isDefaultSms = true;
|
2014-02-18 04:25:40 +00:00
|
|
|
private boolean isMmsEnabled = true;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2017-06-07 01:03:09 +00:00
|
|
|
private final IdentityRecordList identityRecords = new IdentityRecordList();
|
|
|
|
private final DynamicTheme dynamicTheme = new DynamicTheme();
|
|
|
|
private final DynamicLanguage dynamicLanguage = new DynamicLanguage();
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
@Override
|
2014-12-15 20:25:55 +00:00
|
|
|
protected void onPreCreate() {
|
2013-06-21 18:56:59 +00:00
|
|
|
dynamicTheme.onCreate(this);
|
2013-06-30 01:03:55 +00:00
|
|
|
dynamicLanguage.onCreate(this);
|
2014-12-15 20:25:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle state, @NonNull MasterSecret masterSecret) {
|
2015-11-02 22:03:38 +00:00
|
|
|
Log.w(TAG, "onCreate()");
|
2014-12-15 20:25:55 +00:00
|
|
|
this.masterSecret = masterSecret;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-04-16 05:38:33 +00:00
|
|
|
supportRequestWindowFeature(WindowCompat.FEATURE_ACTION_BAR_OVERLAY);
|
2012-07-19 21:22:03 +00:00
|
|
|
setContentView(R.layout.conversation_activity);
|
2015-06-09 14:37:20 +00:00
|
|
|
|
|
|
|
fragment = initFragment(R.id.fragment_content, new ConversationFragment(),
|
|
|
|
masterSecret, dynamicLanguage.getCurrentLocale());
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
initializeReceivers();
|
2015-06-09 14:37:20 +00:00
|
|
|
initializeActionBar();
|
2014-12-25 02:32:51 +00:00
|
|
|
initializeViews();
|
2012-07-19 21:22:03 +00:00
|
|
|
initializeResources();
|
2017-03-14 20:24:24 +00:00
|
|
|
initializeSecurity(false, isDefaultSms).addListener(new AssertedSuccessListener<Boolean>() {
|
2015-10-02 00:46:47 +00:00
|
|
|
@Override
|
|
|
|
public void onSuccess(Boolean result) {
|
2017-06-14 16:53:22 +00:00
|
|
|
initializeProfiles();
|
2015-10-02 00:46:47 +00:00
|
|
|
initializeDraft();
|
|
|
|
}
|
|
|
|
});
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2013-02-04 02:41:34 +00:00
|
|
|
@Override
|
2014-12-25 02:32:51 +00:00
|
|
|
protected void onNewIntent(Intent intent) {
|
2014-12-15 20:25:55 +00:00
|
|
|
Log.w(TAG, "onNewIntent()");
|
2016-01-30 23:33:47 +00:00
|
|
|
|
|
|
|
if (isFinishing()) {
|
|
|
|
Log.w(TAG, "Activity is finishing...");
|
|
|
|
return;
|
|
|
|
}
|
2014-12-15 20:25:55 +00:00
|
|
|
|
2014-12-25 02:32:51 +00:00
|
|
|
if (!Util.isEmpty(composeText) || attachmentManager.isAttachmentPresent()) {
|
|
|
|
saveDraft();
|
2017-04-22 23:29:26 +00:00
|
|
|
attachmentManager.clear(false);
|
2014-12-25 02:32:51 +00:00
|
|
|
composeText.setText("");
|
|
|
|
}
|
|
|
|
|
|
|
|
setIntent(intent);
|
|
|
|
initializeResources();
|
2017-03-14 20:24:24 +00:00
|
|
|
initializeSecurity(false, isDefaultSms).addListener(new AssertedSuccessListener<Boolean>() {
|
2015-10-02 00:46:47 +00:00
|
|
|
@Override
|
|
|
|
public void onSuccess(Boolean result) {
|
|
|
|
initializeDraft();
|
|
|
|
}
|
|
|
|
});
|
2014-10-08 18:11:02 +00:00
|
|
|
|
2014-12-25 02:32:51 +00:00
|
|
|
if (fragment != null) {
|
|
|
|
fragment.onNewIntent();
|
|
|
|
}
|
2013-02-04 02:41:34 +00:00
|
|
|
}
|
|
|
|
|
2017-02-18 04:43:24 +00:00
|
|
|
@Override
|
|
|
|
protected void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
EventBus.getDefault().register(this);
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
@Override
|
|
|
|
protected void onResume() {
|
|
|
|
super.onResume();
|
2013-06-21 18:56:59 +00:00
|
|
|
dynamicTheme.onResume(this);
|
2013-06-30 01:03:55 +00:00
|
|
|
dynamicLanguage.onResume(this);
|
2015-04-16 05:38:33 +00:00
|
|
|
quickAttachmentDrawer.onResume();
|
2013-06-21 18:56:59 +00:00
|
|
|
|
2014-02-22 18:54:43 +00:00
|
|
|
initializeEnabledCheck();
|
2013-03-05 01:43:04 +00:00
|
|
|
initializeMmsEnabledCheck();
|
2017-06-07 01:03:09 +00:00
|
|
|
initializeIdentityRecords();
|
2015-07-21 02:25:54 +00:00
|
|
|
composeText.setTransport(sendButton.getSelectedTransport());
|
2015-06-09 14:37:20 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
titleView.setTitle(recipient);
|
|
|
|
setActionBarColor(recipient.getColor());
|
|
|
|
setBlockedUserState(recipient, isSecureText, isDefaultSms);
|
2012-07-19 21:22:03 +00:00
|
|
|
calculateCharactersRemaining();
|
2013-02-04 02:41:34 +00:00
|
|
|
|
|
|
|
MessageNotifier.setVisibleThread(threadId);
|
|
|
|
markThreadAsRead();
|
2017-01-19 19:37:19 +00:00
|
|
|
|
|
|
|
Log.w(TAG, "onResume() Finished: " + (System.currentTimeMillis() - getIntent().getLongExtra(TIMING_EXTRA, 0)));
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-03-05 01:43:04 +00:00
|
|
|
protected void onPause() {
|
|
|
|
super.onPause();
|
|
|
|
MessageNotifier.setVisibleThread(-1L);
|
2014-04-08 17:45:55 +00:00
|
|
|
if (isFinishing()) overridePendingTransition(R.anim.fade_scale_in, R.anim.slide_to_right);
|
2015-04-16 05:38:33 +00:00
|
|
|
quickAttachmentDrawer.onPause();
|
2015-11-18 22:52:26 +00:00
|
|
|
inputPanel.onPause();
|
|
|
|
|
2017-02-14 06:35:47 +00:00
|
|
|
fragment.setLastSeen(System.currentTimeMillis());
|
|
|
|
markLastSeen();
|
2015-10-24 00:00:51 +00:00
|
|
|
AudioSlidePlayer.stopAll();
|
2017-02-18 04:43:24 +00:00
|
|
|
EventBus.getDefault().unregister(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
super.onStop();
|
|
|
|
EventBus.getDefault().unregister(this);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2015-09-23 22:47:48 +00:00
|
|
|
@Override
|
|
|
|
public void onConfigurationChanged(Configuration newConfig) {
|
2015-07-24 20:22:28 +00:00
|
|
|
Log.w(TAG, "onConfigurationChanged(" + newConfig.orientation + ")");
|
2015-06-08 18:07:46 +00:00
|
|
|
super.onConfigurationChanged(newConfig);
|
2015-07-21 02:25:54 +00:00
|
|
|
composeText.setTransport(sendButton.getSelectedTransport());
|
2015-06-08 18:07:46 +00:00
|
|
|
quickAttachmentDrawer.onConfigurationChanged();
|
2017-01-19 19:31:41 +00:00
|
|
|
|
|
|
|
if (emojiDrawerStub.resolved() && container.getCurrentInput() == emojiDrawerStub.get()) {
|
|
|
|
container.hideAttachedInput(true);
|
|
|
|
}
|
2015-06-08 18:07:46 +00:00
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
@Override
|
|
|
|
protected void onDestroy() {
|
2014-12-25 02:32:51 +00:00
|
|
|
saveDraft();
|
2017-08-01 15:56:00 +00:00
|
|
|
if (recipient != null) recipient.removeListener(this);
|
2016-08-16 03:23:56 +00:00
|
|
|
if (securityUpdateReceiver != null) unregisterReceiver(securityUpdateReceiver);
|
|
|
|
if (recipientsStaleReceiver != null) unregisterReceiver(recipientsStaleReceiver);
|
2012-07-19 21:22:03 +00:00
|
|
|
super.onDestroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-12-18 22:37:11 +00:00
|
|
|
public void onActivityResult(final int reqCode, int resultCode, Intent data) {
|
2014-02-24 05:18:08 +00:00
|
|
|
Log.w(TAG, "onActivityResult called: " + reqCode + ", " + resultCode + " , " + data);
|
2012-07-19 21:22:03 +00:00
|
|
|
super.onActivityResult(reqCode, resultCode, data);
|
|
|
|
|
2017-03-15 01:05:48 +00:00
|
|
|
if ((data == null && reqCode != TAKE_PHOTO && reqCode != SMS_DEFAULT) ||
|
|
|
|
(resultCode != RESULT_OK && reqCode != SMS_DEFAULT))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2015-05-18 17:26:32 +00:00
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
switch (reqCode) {
|
2017-04-18 23:33:03 +00:00
|
|
|
case PICK_GALLERY:
|
|
|
|
MediaType mediaType;
|
|
|
|
|
|
|
|
String mimeType = MediaUtil.getMimeType(this, data.getData());
|
|
|
|
|
|
|
|
if (MediaUtil.isGif(mimeType)) mediaType = MediaType.GIF;
|
|
|
|
else if (MediaUtil.isVideo(mimeType)) mediaType = MediaType.VIDEO;
|
|
|
|
else mediaType = MediaType.IMAGE;
|
|
|
|
|
|
|
|
setMedia(data.getData(), mediaType);
|
2012-07-19 21:22:03 +00:00
|
|
|
break;
|
2017-04-18 23:33:03 +00:00
|
|
|
case PICK_DOCUMENT:
|
|
|
|
setMedia(data.getData(), MediaType.DOCUMENT);
|
2012-07-19 21:22:03 +00:00
|
|
|
break;
|
|
|
|
case PICK_AUDIO:
|
2015-10-15 21:40:45 +00:00
|
|
|
setMedia(data.getData(), MediaType.AUDIO);
|
2012-07-19 21:22:03 +00:00
|
|
|
break;
|
2013-10-17 00:28:36 +00:00
|
|
|
case PICK_CONTACT_INFO:
|
2014-06-03 23:24:44 +00:00
|
|
|
addAttachmentContactInfo(data.getData());
|
2013-10-17 00:28:36 +00:00
|
|
|
break;
|
2014-02-20 23:41:52 +00:00
|
|
|
case GROUP_EDIT:
|
2017-08-22 01:32:38 +00:00
|
|
|
recipient = Recipient.from(this, (Address)data.getParcelableExtra(GroupCreateActivity.GROUP_ADDRESS_EXTRA), true);
|
2017-08-01 15:56:00 +00:00
|
|
|
recipient.addListener(this);
|
|
|
|
titleView.setTitle(recipient);
|
|
|
|
setBlockedUserState(recipient, isSecureText, isDefaultSms);
|
2015-06-09 14:37:20 +00:00
|
|
|
supportInvalidateOptionsMenu();
|
2014-02-20 23:41:52 +00:00
|
|
|
break;
|
2015-07-11 01:45:55 +00:00
|
|
|
case TAKE_PHOTO:
|
|
|
|
if (attachmentManager.getCaptureUri() != null) {
|
2015-10-15 21:40:45 +00:00
|
|
|
setMedia(attachmentManager.getCaptureUri(), MediaType.IMAGE);
|
2015-07-11 01:45:55 +00:00
|
|
|
}
|
|
|
|
break;
|
2015-10-16 13:39:27 +00:00
|
|
|
case ADD_CONTACT:
|
2017-08-22 01:32:38 +00:00
|
|
|
recipient = Recipient.from(this, recipient.getAddress(), true);
|
2017-08-01 15:56:00 +00:00
|
|
|
recipient.addListener(this);
|
2015-10-16 13:39:27 +00:00
|
|
|
fragment.reloadList();
|
|
|
|
break;
|
2015-12-18 22:37:11 +00:00
|
|
|
case PICK_LOCATION:
|
2016-01-04 21:02:22 +00:00
|
|
|
SignalPlace place = new SignalPlace(PlacePicker.getPlace(data, this));
|
|
|
|
attachmentManager.setLocation(masterSecret, place, getCurrentMediaConstraints());
|
2015-12-18 22:37:11 +00:00
|
|
|
break;
|
2016-10-17 02:05:07 +00:00
|
|
|
case PICK_GIF:
|
|
|
|
setMedia(data.getData(), MediaType.GIF);
|
|
|
|
break;
|
2016-12-08 22:20:38 +00:00
|
|
|
case ScribbleActivity.SCRIBBLE_REQUEST_CODE:
|
|
|
|
setMedia(data.getData(), MediaType.IMAGE);
|
|
|
|
break;
|
2017-01-18 19:01:13 +00:00
|
|
|
case SMS_DEFAULT:
|
2017-03-14 20:24:24 +00:00
|
|
|
initializeSecurity(isSecureText, isDefaultSms);
|
2017-01-18 19:01:13 +00:00
|
|
|
break;
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-29 22:52:54 +00:00
|
|
|
@Override
|
|
|
|
public void startActivity(Intent intent) {
|
|
|
|
if (intent.getStringExtra(Browser.EXTRA_APPLICATION_ID) != null) {
|
|
|
|
intent.removeExtra(Browser.EXTRA_APPLICATION_ID);
|
|
|
|
}
|
2016-08-14 10:23:51 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
super.startActivity(intent);
|
|
|
|
} catch (ActivityNotFoundException e) {
|
|
|
|
Log.w(TAG, e);
|
|
|
|
Toast.makeText(this, R.string.ConversationActivity_there_is_no_app_available_to_handle_this_link_on_your_device, Toast.LENGTH_LONG).show();
|
|
|
|
}
|
2016-03-29 22:52:54 +00:00
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
@Override
|
|
|
|
public boolean onPrepareOptionsMenu(Menu menu) {
|
2014-06-29 03:40:57 +00:00
|
|
|
MenuInflater inflater = this.getMenuInflater();
|
2012-07-19 21:22:03 +00:00
|
|
|
menu.clear();
|
|
|
|
|
2016-09-26 03:04:13 +00:00
|
|
|
if (isSecureText) {
|
2017-08-01 15:56:00 +00:00
|
|
|
if (recipient.getExpireMessages() > 0) {
|
2016-09-26 03:04:13 +00:00
|
|
|
inflater.inflate(R.menu.conversation_expiring_on, menu);
|
|
|
|
|
|
|
|
final MenuItem item = menu.findItem(R.id.menu_expiring_messages);
|
|
|
|
final View actionView = MenuItemCompat.getActionView(item);
|
|
|
|
final TextView badgeView = (TextView)actionView.findViewById(R.id.expiration_badge);
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
badgeView.setText(ExpirationUtil.getExpirationAbbreviatedDisplayValue(this, recipient.getExpireMessages()));
|
2016-09-26 03:04:13 +00:00
|
|
|
actionView.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
onOptionsItemSelected(item);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
inflater.inflate(R.menu.conversation_expiring_off, menu);
|
|
|
|
}
|
|
|
|
}
|
2016-08-16 03:23:56 +00:00
|
|
|
|
2012-08-08 02:03:28 +00:00
|
|
|
if (isSingleConversation()) {
|
2016-11-09 17:37:40 +00:00
|
|
|
if (isSecureText) inflater.inflate(R.menu.conversation_callable_secure, menu);
|
|
|
|
else inflater.inflate(R.menu.conversation_callable_insecure, menu);
|
2012-10-21 21:34:09 +00:00
|
|
|
} else if (isGroupConversation()) {
|
|
|
|
inflater.inflate(R.menu.conversation_group_options, menu);
|
2013-04-26 01:59:49 +00:00
|
|
|
|
2014-02-18 04:25:40 +00:00
|
|
|
if (!isPushGroupConversation()) {
|
|
|
|
inflater.inflate(R.menu.conversation_mms_group_options, menu);
|
|
|
|
if (distributionType == ThreadDatabase.DistributionTypes.BROADCAST) {
|
|
|
|
menu.findItem(R.id.menu_distribution_broadcast).setChecked(true);
|
|
|
|
} else {
|
|
|
|
menu.findItem(R.id.menu_distribution_conversation).setChecked(true);
|
|
|
|
}
|
2014-02-22 18:54:43 +00:00
|
|
|
} else if (isActiveGroup()) {
|
2014-02-20 23:41:52 +00:00
|
|
|
inflater.inflate(R.menu.conversation_push_group_options, menu);
|
2013-04-26 01:59:49 +00:00
|
|
|
}
|
2012-08-08 02:03:28 +00:00
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
inflater.inflate(R.menu.conversation, menu);
|
2014-06-03 23:24:44 +00:00
|
|
|
|
2015-09-29 21:26:37 +00:00
|
|
|
if (isSingleConversation() && isSecureText) {
|
|
|
|
inflater.inflate(R.menu.conversation_secure, menu);
|
|
|
|
} else if (isSingleConversation()) {
|
|
|
|
inflater.inflate(R.menu.conversation_insecure, menu);
|
|
|
|
}
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
if (recipient != null && recipient.isMuted()) inflater.inflate(R.menu.conversation_muted, menu);
|
|
|
|
else inflater.inflate(R.menu.conversation_unmuted, menu);
|
2015-06-09 14:37:20 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
if (isSingleConversation() && getRecipient().getContactUri() == null) {
|
2014-06-03 23:24:44 +00:00
|
|
|
inflater.inflate(R.menu.conversation_add_to_contacts, menu);
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
super.onPrepareOptionsMenu(menu);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
super.onOptionsItemSelected(item);
|
|
|
|
switch (item.getItemId()) {
|
2015-09-29 21:26:37 +00:00
|
|
|
case R.id.menu_call_secure:
|
2017-08-01 15:56:00 +00:00
|
|
|
case R.id.menu_call_insecure: handleDial(getRecipient()); return true;
|
2013-04-26 01:59:49 +00:00
|
|
|
case R.id.menu_add_attachment: handleAddAttachment(); return true;
|
2015-01-19 02:11:30 +00:00
|
|
|
case R.id.menu_view_media: handleViewMedia(); return true;
|
2014-06-03 23:24:44 +00:00
|
|
|
case R.id.menu_add_to_contacts: handleAddToContacts(); return true;
|
2015-10-04 03:13:34 +00:00
|
|
|
case R.id.menu_reset_secure_session: handleResetSecureSession(); return true;
|
2013-04-26 01:59:49 +00:00
|
|
|
case R.id.menu_group_recipients: handleDisplayGroupRecipients(); return true;
|
|
|
|
case R.id.menu_distribution_broadcast: handleDistributionBroadcastEnabled(item); return true;
|
|
|
|
case R.id.menu_distribution_conversation: handleDistributionConversationEnabled(item); return true;
|
2014-02-20 23:41:52 +00:00
|
|
|
case R.id.menu_edit_group: handleEditPushGroup(); return true;
|
|
|
|
case R.id.menu_leave: handleLeavePushGroup(); return true;
|
2014-12-13 02:31:20 +00:00
|
|
|
case R.id.menu_invite: handleInviteLink(); return true;
|
2015-06-09 14:37:20 +00:00
|
|
|
case R.id.menu_mute_notifications: handleMuteNotifications(); return true;
|
|
|
|
case R.id.menu_unmute_notifications: handleUnmuteNotifications(); return true;
|
2015-07-08 19:22:51 +00:00
|
|
|
case R.id.menu_conversation_settings: handleConversationSettings(); return true;
|
2016-08-16 03:23:56 +00:00
|
|
|
case R.id.menu_expiring_messages_off:
|
|
|
|
case R.id.menu_expiring_messages: handleSelectMessageExpiration(); return true;
|
2013-04-26 01:59:49 +00:00
|
|
|
case android.R.id.home: handleReturnToConversationList(); return true;
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
@Override
|
|
|
|
public void onBackPressed() {
|
2015-07-13 22:45:14 +00:00
|
|
|
Log.w(TAG, "onBackPressed()");
|
2015-07-24 20:22:28 +00:00
|
|
|
if (container.isInputOpen()) container.hideCurrentInput(composeText);
|
|
|
|
else super.onBackPressed();
|
2013-06-28 03:57:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 23:47:03 +00:00
|
|
|
@Override
|
|
|
|
public void onKeyboardShown() {
|
2015-11-22 18:44:53 +00:00
|
|
|
inputPanel.onKeyboardShown();
|
2015-07-02 23:47:03 +00:00
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
//////// Event Handlers
|
|
|
|
|
2013-02-17 19:42:30 +00:00
|
|
|
private void handleReturnToConversationList() {
|
2015-12-01 00:38:37 +00:00
|
|
|
Intent intent = new Intent(this, (archived ? ConversationListArchiveActivity.class : ConversationListActivity.class));
|
2013-02-17 19:42:30 +00:00
|
|
|
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
2016-08-16 03:23:56 +00:00
|
|
|
private void handleSelectMessageExpiration() {
|
2017-01-03 21:36:34 +00:00
|
|
|
if (isPushGroupConversation() && !isActiveGroup()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
ExpirationDialog.show(this, recipient.getExpireMessages(), new ExpirationDialog.OnClickListener() {
|
2016-08-16 03:23:56 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(final int expirationTime) {
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
DatabaseFactory.getRecipientPreferenceDatabase(ConversationActivity.this)
|
2017-08-01 15:56:00 +00:00
|
|
|
.setExpireMessages(recipient, expirationTime);
|
|
|
|
recipient.setExpireMessages(expirationTime);
|
2016-08-16 03:23:56 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
OutgoingExpirationUpdateMessage outgoingMessage = new OutgoingExpirationUpdateMessage(getRecipient(), System.currentTimeMillis(), expirationTime * 1000);
|
2017-04-22 23:29:26 +00:00
|
|
|
MessageSender.send(ConversationActivity.this, masterSecret, outgoingMessage, threadId, false, null);
|
2016-08-16 03:23:56 +00:00
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2017-02-14 06:35:47 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Void result) {
|
|
|
|
invalidateOptionsMenu();
|
|
|
|
if (fragment != null) fragment.setLastSeen(0);
|
|
|
|
}
|
2016-08-16 03:23:56 +00:00
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-06-09 14:37:20 +00:00
|
|
|
private void handleMuteNotifications() {
|
|
|
|
MuteDialog.show(this, new MuteDialog.MuteSelectionListener() {
|
|
|
|
@Override
|
|
|
|
public void onMuted(final long until) {
|
2017-08-01 15:56:00 +00:00
|
|
|
recipient.setMuted(until);
|
2015-06-09 14:37:20 +00:00
|
|
|
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
DatabaseFactory.getRecipientPreferenceDatabase(ConversationActivity.this)
|
2017-08-01 15:56:00 +00:00
|
|
|
.setMuted(recipient, until);
|
2015-06-09 14:37:20 +00:00
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-07-08 19:22:51 +00:00
|
|
|
private void handleConversationSettings() {
|
|
|
|
titleView.performClick();
|
|
|
|
}
|
|
|
|
|
2015-06-09 14:37:20 +00:00
|
|
|
private void handleUnmuteNotifications() {
|
2017-08-01 15:56:00 +00:00
|
|
|
recipient.setMuted(0);
|
2015-06-09 14:37:20 +00:00
|
|
|
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
DatabaseFactory.getRecipientPreferenceDatabase(ConversationActivity.this)
|
2017-08-01 15:56:00 +00:00
|
|
|
.setMuted(recipient, 0);
|
2015-06-09 14:37:20 +00:00
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleUnblock() {
|
2015-05-20 21:36:30 +00:00
|
|
|
new AlertDialog.Builder(this)
|
2016-09-17 15:00:11 +00:00
|
|
|
.setTitle(R.string.ConversationActivity_unblock_this_contact_question)
|
|
|
|
.setMessage(R.string.ConversationActivity_you_will_once_again_be_able_to_receive_messages_and_calls_from_this_contact)
|
2015-06-09 14:37:20 +00:00
|
|
|
.setNegativeButton(android.R.string.cancel, null)
|
|
|
|
.setPositiveButton(R.string.ConversationActivity_unblock, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2017-08-01 15:56:00 +00:00
|
|
|
recipient.setBlocked(false);
|
2015-06-09 14:37:20 +00:00
|
|
|
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
DatabaseFactory.getRecipientPreferenceDatabase(ConversationActivity.this)
|
2017-08-01 15:56:00 +00:00
|
|
|
.setBlocked(recipient, false);
|
2016-08-26 23:53:23 +00:00
|
|
|
|
|
|
|
ApplicationContext.getInstance(ConversationActivity.this)
|
|
|
|
.getJobManager()
|
|
|
|
.add(new MultiDeviceBlockedUpdateJob(ConversationActivity.this));
|
|
|
|
|
2015-06-09 14:37:20 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
}).show();
|
|
|
|
}
|
|
|
|
|
2016-11-20 23:56:47 +00:00
|
|
|
@TargetApi(Build.VERSION_CODES.KITKAT)
|
|
|
|
private void handleMakeDefaultSms() {
|
|
|
|
Intent intent = new Intent(Telephony.Sms.Intents.ACTION_CHANGE_DEFAULT);
|
|
|
|
intent.putExtra(Telephony.Sms.Intents.EXTRA_PACKAGE_NAME, getPackageName());
|
2017-01-18 19:01:13 +00:00
|
|
|
startActivityForResult(intent, SMS_DEFAULT);
|
2016-11-20 23:56:47 +00:00
|
|
|
}
|
|
|
|
|
2014-12-13 02:31:20 +00:00
|
|
|
private void handleInviteLink() {
|
|
|
|
try {
|
2017-03-16 13:32:08 +00:00
|
|
|
String inviteText;
|
|
|
|
|
2014-12-13 02:31:20 +00:00
|
|
|
boolean a = SecureRandom.getInstance("SHA1PRNG").nextBoolean();
|
2017-03-16 13:32:08 +00:00
|
|
|
if (a) inviteText = getString(R.string.ConversationActivity_lets_switch_to_signal, "https://sgnl.link/1LoIMUl");
|
|
|
|
else inviteText = getString(R.string.ConversationActivity_lets_use_this_to_chat, "https://sgnl.link/1MF56H1");
|
|
|
|
|
|
|
|
if (isDefaultSms) {
|
|
|
|
composeText.appendInvite(inviteText);
|
|
|
|
} else {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_SENDTO);
|
2017-08-01 15:56:00 +00:00
|
|
|
intent.setData(Uri.parse("smsto:" + recipient.getAddress().serialize()));
|
2017-03-16 13:32:08 +00:00
|
|
|
intent.putExtra("sms_body", inviteText);
|
|
|
|
intent.putExtra(Intent.EXTRA_TEXT, inviteText);
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
2014-12-13 02:31:20 +00:00
|
|
|
} catch (NoSuchAlgorithmException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-04 03:13:34 +00:00
|
|
|
private void handleResetSecureSession() {
|
2015-05-20 21:36:30 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2015-11-19 16:05:31 +00:00
|
|
|
builder.setTitle(R.string.ConversationActivity_reset_secure_session_question);
|
2015-03-24 12:44:22 +00:00
|
|
|
builder.setIconAttribute(R.attr.dialog_alert_icon);
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.setCancelable(true);
|
2015-11-19 16:05:31 +00:00
|
|
|
builder.setMessage(R.string.ConversationActivity_this_may_help_if_youre_having_encryption_problems);
|
|
|
|
builder.setPositiveButton(R.string.ConversationActivity_reset, new DialogInterface.OnClickListener() {
|
2012-07-19 21:22:03 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2012-08-02 00:39:36 +00:00
|
|
|
if (isSingleConversation()) {
|
2014-11-08 19:35:58 +00:00
|
|
|
final Context context = getApplicationContext();
|
2014-04-22 21:33:29 +00:00
|
|
|
|
|
|
|
OutgoingEndSessionMessage endSessionMessage =
|
2017-08-01 15:56:00 +00:00
|
|
|
new OutgoingEndSessionMessage(new OutgoingTextMessage(getRecipient(), "TERMINATE", 0, -1));
|
2014-04-22 21:33:29 +00:00
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
new AsyncTask<OutgoingEndSessionMessage, Void, Long>() {
|
|
|
|
@Override
|
|
|
|
protected Long doInBackground(OutgoingEndSessionMessage... messages) {
|
2017-04-22 23:29:26 +00:00
|
|
|
return MessageSender.send(context, masterSecret, messages[0], threadId, false, null);
|
2014-11-08 19:35:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Long result) {
|
|
|
|
sendComplete(result);
|
|
|
|
}
|
|
|
|
}.execute(endSessionMessage);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-11-19 16:05:31 +00:00
|
|
|
builder.setNegativeButton(android.R.string.cancel, null);
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.show();
|
|
|
|
}
|
|
|
|
|
2015-01-19 02:11:30 +00:00
|
|
|
private void handleViewMedia() {
|
|
|
|
Intent intent = new Intent(this, MediaOverviewActivity.class);
|
|
|
|
intent.putExtra(MediaOverviewActivity.THREAD_ID_EXTRA, threadId);
|
2017-08-01 15:56:00 +00:00
|
|
|
intent.putExtra(MediaOverviewActivity.ADDRESS_EXTRA, recipient.getAddress());
|
2015-01-19 02:11:30 +00:00
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
|
2014-02-22 18:54:43 +00:00
|
|
|
private void handleLeavePushGroup() {
|
2017-08-01 15:56:00 +00:00
|
|
|
if (getRecipient() == null) {
|
2014-02-22 18:54:43 +00:00
|
|
|
Toast.makeText(this, getString(R.string.ConversationActivity_invalid_recipient),
|
|
|
|
Toast.LENGTH_LONG).show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-20 21:36:30 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2014-02-22 18:54:43 +00:00
|
|
|
builder.setTitle(getString(R.string.ConversationActivity_leave_group));
|
2015-03-24 12:44:22 +00:00
|
|
|
builder.setIconAttribute(R.attr.dialog_info_icon);
|
2014-02-22 18:54:43 +00:00
|
|
|
builder.setCancelable(true);
|
|
|
|
builder.setMessage(getString(R.string.ConversationActivity_are_you_sure_you_want_to_leave_this_group));
|
|
|
|
builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2014-12-15 14:44:41 +00:00
|
|
|
Context self = ConversationActivity.this;
|
2014-02-22 18:54:43 +00:00
|
|
|
try {
|
2017-08-01 15:56:00 +00:00
|
|
|
String groupId = getRecipient().getAddress().toGroupString();
|
2014-02-22 18:54:43 +00:00
|
|
|
DatabaseFactory.getGroupDatabase(self).setActive(groupId, false);
|
|
|
|
|
|
|
|
GroupContext context = GroupContext.newBuilder()
|
2017-08-01 15:56:00 +00:00
|
|
|
.setId(ByteString.copyFrom(GroupUtil.getDecodedId(groupId)))
|
2014-02-22 18:54:43 +00:00
|
|
|
.setType(GroupContext.Type.QUIT)
|
|
|
|
.build();
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
OutgoingGroupMediaMessage outgoingMessage = new OutgoingGroupMediaMessage(getRecipient(), context, null, System.currentTimeMillis(), 0);
|
2017-04-22 23:29:26 +00:00
|
|
|
MessageSender.send(self, masterSecret, outgoingMessage, threadId, false, null);
|
2017-07-26 16:59:15 +00:00
|
|
|
DatabaseFactory.getGroupDatabase(self).remove(groupId, Address.fromSerialized(TextSecurePreferences.getLocalNumber(self)));
|
2014-02-22 18:54:43 +00:00
|
|
|
initializeEnabledCheck();
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w(TAG, e);
|
2014-12-15 14:44:41 +00:00
|
|
|
Toast.makeText(self, R.string.ConversationActivity_error_leaving_group, Toast.LENGTH_LONG).show();
|
2014-02-22 18:54:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
builder.setNegativeButton(R.string.no, null);
|
|
|
|
builder.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleEditPushGroup() {
|
|
|
|
Intent intent = new Intent(ConversationActivity.this, GroupCreateActivity.class);
|
2017-08-01 15:56:00 +00:00
|
|
|
intent.putExtra(GroupCreateActivity.GROUP_ADDRESS_EXTRA, recipient.getAddress());
|
2014-02-22 18:54:43 +00:00
|
|
|
startActivityForResult(intent, GROUP_EDIT);
|
|
|
|
}
|
|
|
|
|
2013-04-26 01:59:49 +00:00
|
|
|
private void handleDistributionBroadcastEnabled(MenuItem item) {
|
|
|
|
distributionType = ThreadDatabase.DistributionTypes.BROADCAST;
|
|
|
|
item.setChecked(true);
|
|
|
|
|
|
|
|
if (threadId != -1) {
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
DatabaseFactory.getThreadDatabase(ConversationActivity.this)
|
|
|
|
.setDistributionType(threadId, ThreadDatabase.DistributionTypes.BROADCAST);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleDistributionConversationEnabled(MenuItem item) {
|
|
|
|
distributionType = ThreadDatabase.DistributionTypes.CONVERSATION;
|
|
|
|
item.setChecked(true);
|
|
|
|
|
|
|
|
if (threadId != -1) {
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
DatabaseFactory.getThreadDatabase(ConversationActivity.this)
|
|
|
|
.setDistributionType(threadId, ThreadDatabase.DistributionTypes.CONVERSATION);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-22 00:41:27 +00:00
|
|
|
private void handleDial(final Recipient recipient) {
|
|
|
|
if (recipient == null) return;
|
|
|
|
|
2017-03-14 20:24:24 +00:00
|
|
|
if (isSecureText) {
|
2016-11-09 17:37:40 +00:00
|
|
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
|
|
|
intent.setAction(WebRtcCallService.ACTION_OUTGOING_CALL);
|
2017-07-26 16:59:15 +00:00
|
|
|
intent.putExtra(WebRtcCallService.EXTRA_REMOTE_ADDRESS, recipient.getAddress());
|
2016-11-09 17:37:40 +00:00
|
|
|
startService(intent);
|
|
|
|
|
|
|
|
Intent activityIntent = new Intent(this, WebRtcCallActivity.class);
|
|
|
|
activityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
startActivity(activityIntent);
|
2015-09-22 00:41:27 +00:00
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
Intent dialIntent = new Intent(Intent.ACTION_DIAL,
|
2017-07-26 16:59:15 +00:00
|
|
|
Uri.parse("tel:" + recipient.getAddress().serialize()));
|
2015-09-22 00:41:27 +00:00
|
|
|
startActivity(dialIntent);
|
|
|
|
} catch (ActivityNotFoundException anfe) {
|
|
|
|
Log.w(TAG, anfe);
|
|
|
|
Dialogs.showAlertDialog(this,
|
|
|
|
getString(R.string.ConversationActivity_calls_not_supported),
|
|
|
|
getString(R.string.ConversationActivity_this_device_does_not_appear_to_support_dial_actions));
|
|
|
|
}
|
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2012-10-21 21:34:09 +00:00
|
|
|
private void handleDisplayGroupRecipients() {
|
2017-08-01 15:56:00 +00:00
|
|
|
new GroupMembersDialog(this, getRecipient()).display();
|
2012-10-21 21:34:09 +00:00
|
|
|
}
|
|
|
|
|
2014-06-03 23:24:44 +00:00
|
|
|
private void handleAddToContacts() {
|
2017-08-01 15:56:00 +00:00
|
|
|
if (recipient.getAddress().isGroup()) return;
|
2017-07-26 16:59:15 +00:00
|
|
|
|
2015-12-12 06:57:18 +00:00
|
|
|
try {
|
|
|
|
final Intent intent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
|
2017-08-01 15:56:00 +00:00
|
|
|
if (recipient.getAddress().isEmail()) {
|
|
|
|
intent.putExtra(ContactsContract.Intents.Insert.EMAIL, recipient.getAddress().toEmailString());
|
2017-07-26 16:59:15 +00:00
|
|
|
} else {
|
2017-08-01 15:56:00 +00:00
|
|
|
intent.putExtra(ContactsContract.Intents.Insert.PHONE, recipient.getAddress().toPhoneString());
|
2017-07-26 16:59:15 +00:00
|
|
|
}
|
2015-12-12 06:57:18 +00:00
|
|
|
intent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
|
|
|
|
startActivityForResult(intent, ADD_CONTACT);
|
|
|
|
} catch (ActivityNotFoundException e) {
|
|
|
|
Log.w(TAG, e);
|
|
|
|
}
|
2013-10-17 00:28:36 +00:00
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private void handleAddAttachment() {
|
2015-09-29 21:26:37 +00:00
|
|
|
if (this.isMmsEnabled || isSecureText) {
|
2017-01-19 02:46:40 +00:00
|
|
|
if (attachmentTypeSelector == null) {
|
|
|
|
attachmentTypeSelector = new AttachmentTypeSelector(this, getSupportLoaderManager(), new AttachmentTypeListener());
|
|
|
|
}
|
2015-10-28 16:47:09 +00:00
|
|
|
attachmentTypeSelector.show(this, attachButton);
|
2013-03-05 01:43:04 +00:00
|
|
|
} else {
|
2013-09-16 07:55:01 +00:00
|
|
|
handleManualMmsRequired();
|
2013-03-05 01:43:04 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2013-09-16 07:55:01 +00:00
|
|
|
private void handleManualMmsRequired() {
|
|
|
|
Toast.makeText(this, R.string.MmsDownloader_error_reading_mms_settings, Toast.LENGTH_LONG).show();
|
|
|
|
|
|
|
|
Intent intent = new Intent(this, PromptMmsActivity.class);
|
|
|
|
intent.putExtras(getIntent().getExtras());
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
|
2017-06-07 01:03:09 +00:00
|
|
|
private void handleUnverifiedRecipients() {
|
|
|
|
List<Recipient> unverifiedRecipients = identityRecords.getUnverifiedRecipients(this);
|
|
|
|
List<IdentityRecord> unverifiedRecords = identityRecords.getUnverifiedRecords();
|
|
|
|
String message = IdentityUtil.getUnverifiedSendDialogDescription(this, unverifiedRecipients);
|
|
|
|
|
|
|
|
if (message == null) return;
|
|
|
|
|
|
|
|
new UnverifiedSendDialog(this, message, unverifiedRecords, new UnverifiedSendDialog.ResendListener() {
|
|
|
|
@Override
|
|
|
|
public void onResendMessage() {
|
|
|
|
initializeIdentityRecords().addListener(new ListenableFuture.Listener<Boolean>() {
|
|
|
|
@Override
|
|
|
|
public void onSuccess(Boolean result) {
|
|
|
|
sendMessage();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFailure(ExecutionException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}).show();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleUntrustedRecipients() {
|
|
|
|
List<Recipient> untrustedRecipients = identityRecords.getUntrustedRecipients(this);
|
|
|
|
List<IdentityRecord> untrustedRecords = identityRecords.getUntrustedRecords();
|
|
|
|
String untrustedMessage = IdentityUtil.getUntrustedSendDialogDescription(this, untrustedRecipients);
|
|
|
|
|
|
|
|
if (untrustedMessage == null) return;
|
|
|
|
|
|
|
|
new UntrustedSendDialog(this, untrustedMessage, untrustedRecords, new UntrustedSendDialog.ResendListener() {
|
|
|
|
@Override
|
|
|
|
public void onResendMessage() {
|
|
|
|
initializeIdentityRecords().addListener(new ListenableFuture.Listener<Boolean>() {
|
|
|
|
@Override
|
|
|
|
public void onSuccess(Boolean result) {
|
|
|
|
sendMessage();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFailure(ExecutionException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}).show();
|
|
|
|
}
|
|
|
|
|
2017-03-14 20:24:24 +00:00
|
|
|
private void handleSecurityChange(boolean isSecureText, boolean isDefaultSms) {
|
2015-09-29 21:26:37 +00:00
|
|
|
this.isSecureText = isSecureText;
|
2017-01-18 19:01:13 +00:00
|
|
|
this.isDefaultSms = isDefaultSms;
|
2015-09-29 21:26:37 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
boolean isMediaMessage = recipient.isMmsGroupRecipient() || attachmentManager.isAttachmentPresent();
|
2015-09-23 22:47:48 +00:00
|
|
|
|
|
|
|
sendButton.resetAvailableTransports(isMediaMessage);
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
if (!isSecureText) sendButton.disableTransport(Type.TEXTSECURE);
|
|
|
|
if (recipient.isPushGroupRecipient()) sendButton.disableTransport(Type.SMS);
|
2015-09-23 22:47:48 +00:00
|
|
|
|
2015-09-29 21:26:37 +00:00
|
|
|
if (isSecureText) sendButton.setDefaultTransport(Type.TEXTSECURE);
|
|
|
|
else sendButton.setDefaultTransport(Type.SMS);
|
2015-09-23 22:47:48 +00:00
|
|
|
|
|
|
|
calculateCharactersRemaining();
|
|
|
|
supportInvalidateOptionsMenu();
|
2017-08-01 15:56:00 +00:00
|
|
|
setBlockedUserState(recipient, isSecureText, isDefaultSms);
|
2015-09-23 22:47:48 +00:00
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
///// Initializers
|
|
|
|
|
2013-02-03 04:37:40 +00:00
|
|
|
private void initializeDraft() {
|
2015-11-18 20:54:40 +00:00
|
|
|
final String draftText = getIntent().getStringExtra(TEXT_EXTRA);
|
|
|
|
final Uri draftMedia = getIntent().getData();
|
|
|
|
final MediaType draftMediaType = MediaType.from(getIntent().getType());
|
2017-05-10 22:21:52 +00:00
|
|
|
|
2015-11-18 20:54:40 +00:00
|
|
|
if (draftText != null) composeText.setText(draftText);
|
|
|
|
if (draftMedia != null && draftMediaType != null) setMedia(draftMedia, draftMediaType);
|
2015-09-05 00:33:22 +00:00
|
|
|
|
2015-11-18 20:54:40 +00:00
|
|
|
if (draftText == null && draftMedia == null && draftMediaType == null) {
|
2013-02-04 08:13:07 +00:00
|
|
|
initializeDraftFromDatabase();
|
2015-05-18 17:26:32 +00:00
|
|
|
} else {
|
|
|
|
updateToggleButtonState();
|
2013-02-04 08:13:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-22 18:54:43 +00:00
|
|
|
private void initializeEnabledCheck() {
|
2014-02-23 22:37:41 +00:00
|
|
|
boolean enabled = !(isPushGroupConversation() && !isActiveGroup());
|
2015-11-22 18:44:57 +00:00
|
|
|
inputPanel.setEnabled(enabled);
|
2014-02-22 18:54:43 +00:00
|
|
|
sendButton.setEnabled(enabled);
|
2015-11-22 18:44:57 +00:00
|
|
|
attachButton.setEnabled(enabled);
|
2014-02-22 18:54:43 +00:00
|
|
|
}
|
|
|
|
|
2013-02-04 08:13:07 +00:00
|
|
|
private void initializeDraftFromDatabase() {
|
|
|
|
new AsyncTask<Void, Void, List<Draft>>() {
|
|
|
|
@Override
|
|
|
|
protected List<Draft> doInBackground(Void... params) {
|
|
|
|
MasterCipher masterCipher = new MasterCipher(masterSecret);
|
|
|
|
DraftDatabase draftDatabase = DatabaseFactory.getDraftDatabase(ConversationActivity.this);
|
|
|
|
List<Draft> results = draftDatabase.getDrafts(masterCipher, threadId);
|
|
|
|
|
|
|
|
draftDatabase.clearDrafts(threadId);
|
|
|
|
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(List<Draft> drafts) {
|
|
|
|
for (Draft draft : drafts) {
|
2016-01-04 21:02:22 +00:00
|
|
|
try {
|
|
|
|
if (draft.getType().equals(Draft.TEXT)) {
|
|
|
|
composeText.setText(draft.getValue());
|
|
|
|
} else if (draft.getType().equals(Draft.LOCATION)) {
|
|
|
|
attachmentManager.setLocation(masterSecret, SignalPlace.deserialize(draft.getValue()), getCurrentMediaConstraints());
|
|
|
|
} else if (draft.getType().equals(Draft.IMAGE)) {
|
|
|
|
setMedia(Uri.parse(draft.getValue()), MediaType.IMAGE);
|
|
|
|
} else if (draft.getType().equals(Draft.AUDIO)) {
|
|
|
|
setMedia(Uri.parse(draft.getValue()), MediaType.AUDIO);
|
|
|
|
} else if (draft.getType().equals(Draft.VIDEO)) {
|
|
|
|
setMedia(Uri.parse(draft.getValue()), MediaType.VIDEO);
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w(TAG, e);
|
2014-05-22 21:00:53 +00:00
|
|
|
}
|
2013-02-04 08:13:07 +00:00
|
|
|
}
|
2015-05-18 17:26:32 +00:00
|
|
|
|
|
|
|
updateToggleButtonState();
|
2013-02-04 08:13:07 +00:00
|
|
|
}
|
|
|
|
}.execute();
|
2013-02-03 04:37:40 +00:00
|
|
|
}
|
|
|
|
|
2015-10-02 00:46:47 +00:00
|
|
|
private ListenableFuture<Boolean> initializeSecurity(final boolean currentSecureText,
|
2017-01-18 19:01:13 +00:00
|
|
|
final boolean currentIsDefaultSms)
|
2015-09-29 21:26:37 +00:00
|
|
|
{
|
2015-10-02 00:46:47 +00:00
|
|
|
final SettableFuture<Boolean> future = new SettableFuture<>();
|
|
|
|
|
2017-03-14 20:24:24 +00:00
|
|
|
handleSecurityChange(currentSecureText || isPushGroupConversation(), currentIsDefaultSms);
|
2015-09-22 00:41:27 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
new AsyncTask<Recipient, Void, boolean[]>() {
|
2015-09-22 00:41:27 +00:00
|
|
|
@Override
|
2017-08-01 15:56:00 +00:00
|
|
|
protected boolean[] doInBackground(Recipient... params) {
|
2017-02-01 05:46:20 +00:00
|
|
|
Context context = ConversationActivity.this;
|
2017-08-01 15:56:00 +00:00
|
|
|
Recipient recipient = params[0];
|
2017-08-07 21:33:21 +00:00
|
|
|
Capability capability = DirectoryHelper.getUserCapabilities(context, recipient);
|
2015-09-29 21:26:37 +00:00
|
|
|
|
2017-08-07 21:33:21 +00:00
|
|
|
if (capability == Capability.UNKNOWN) {
|
2017-02-01 05:46:20 +00:00
|
|
|
try {
|
2017-08-07 21:33:21 +00:00
|
|
|
capability = DirectoryHelper.refreshDirectoryFor(context, masterSecret, recipient);
|
2017-02-01 05:46:20 +00:00
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w(TAG, e);
|
2015-09-29 21:26:37 +00:00
|
|
|
}
|
2015-09-22 00:41:27 +00:00
|
|
|
}
|
2017-02-01 05:46:20 +00:00
|
|
|
|
2017-08-07 21:33:21 +00:00
|
|
|
return new boolean[] {capability == Capability.SUPPORTED, Util.isDefaultSmsProvider(context)};
|
2015-09-22 00:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-01-18 19:01:13 +00:00
|
|
|
protected void onPostExecute(boolean[] result) {
|
2017-03-14 20:24:24 +00:00
|
|
|
if (result[0] != currentSecureText || result[1] != currentIsDefaultSms) {
|
|
|
|
handleSecurityChange(result[0], result[1]);
|
2015-09-22 00:41:27 +00:00
|
|
|
}
|
2015-10-02 00:46:47 +00:00
|
|
|
future.set(true);
|
2015-10-14 04:44:01 +00:00
|
|
|
onSecurityUpdated();
|
2015-09-22 00:41:27 +00:00
|
|
|
}
|
2017-08-01 15:56:00 +00:00
|
|
|
}.execute(recipient);
|
2015-10-02 00:46:47 +00:00
|
|
|
|
|
|
|
return future;
|
2015-09-22 00:41:27 +00:00
|
|
|
}
|
|
|
|
|
2015-10-14 04:44:01 +00:00
|
|
|
private void onSecurityUpdated() {
|
2016-02-06 00:10:33 +00:00
|
|
|
updateRecipientPreferences();
|
2015-10-14 04:44:01 +00:00
|
|
|
}
|
|
|
|
|
2016-02-06 00:10:33 +00:00
|
|
|
private void updateRecipientPreferences() {
|
2017-08-01 15:56:00 +00:00
|
|
|
new RecipientPreferencesTask().execute(recipient);
|
2016-02-06 00:10:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void updateInviteReminder(boolean seenInvite) {
|
|
|
|
Log.w(TAG, "updateInviteReminder(" + seenInvite+")");
|
2017-04-15 03:51:22 +00:00
|
|
|
if (TextSecurePreferences.isPushRegistered(this) &&
|
|
|
|
TextSecurePreferences.isShowInviteReminders(this) &&
|
|
|
|
!isSecureText &&
|
|
|
|
!seenInvite &&
|
2017-08-01 15:56:00 +00:00
|
|
|
!recipient.isGroupRecipient())
|
2015-10-26 19:36:45 +00:00
|
|
|
{
|
2017-08-01 15:56:00 +00:00
|
|
|
InviteReminder reminder = new InviteReminder(this, recipient);
|
2016-02-06 00:10:33 +00:00
|
|
|
reminder.setOkListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
handleInviteLink();
|
2017-01-19 02:46:40 +00:00
|
|
|
reminderView.get().requestDismiss();
|
2016-02-06 00:10:33 +00:00
|
|
|
}
|
|
|
|
});
|
2017-01-19 02:46:40 +00:00
|
|
|
reminderView.get().showReminder(reminder);
|
|
|
|
} else if (reminderView.resolved()) {
|
|
|
|
reminderView.get().hide();
|
2015-10-14 04:44:01 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-14 00:55:20 +00:00
|
|
|
|
2016-02-06 00:10:33 +00:00
|
|
|
private void updateDefaultSubscriptionId(Optional<Integer> defaultSubscriptionId) {
|
|
|
|
Log.w(TAG, "updateDefaultSubscriptionId(" + defaultSubscriptionId.orNull() + ")");
|
|
|
|
sendButton.setDefaultSubscriptionId(defaultSubscriptionId);
|
|
|
|
}
|
|
|
|
|
2013-03-05 01:43:04 +00:00
|
|
|
private void initializeMmsEnabledCheck() {
|
|
|
|
new AsyncTask<Void, Void, Boolean>() {
|
|
|
|
@Override
|
|
|
|
protected Boolean doInBackground(Void... params) {
|
2014-12-29 22:01:02 +00:00
|
|
|
return Util.isMmsCapable(ConversationActivity.this);
|
2013-03-05 01:43:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Boolean isMmsEnabled) {
|
|
|
|
ConversationActivity.this.isMmsEnabled = isMmsEnabled;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
|
2017-06-07 01:03:09 +00:00
|
|
|
private ListenableFuture<Boolean> initializeIdentityRecords() {
|
|
|
|
final SettableFuture<Boolean> future = new SettableFuture<>();
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
new AsyncTask<Recipient, Void, Pair<IdentityRecordList, String>>() {
|
2017-06-07 01:03:09 +00:00
|
|
|
@Override
|
2017-08-01 15:56:00 +00:00
|
|
|
protected @NonNull Pair<IdentityRecordList, String> doInBackground(Recipient... params) {
|
|
|
|
IdentityDatabase identityDatabase = DatabaseFactory.getIdentityDatabase(ConversationActivity.this);
|
|
|
|
IdentityRecordList identityRecordList = new IdentityRecordList();
|
|
|
|
List<Recipient> recipients = new LinkedList<>();
|
|
|
|
|
|
|
|
if (params[0].isGroupRecipient()) {
|
|
|
|
recipients.addAll(DatabaseFactory.getGroupDatabase(ConversationActivity.this)
|
|
|
|
.getGroupMembers(params[0].getAddress().toGroupString(), false));
|
|
|
|
} else {
|
|
|
|
recipients.add(params[0]);
|
|
|
|
}
|
2017-06-07 01:03:09 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
for (Recipient recipient : recipients) {
|
|
|
|
Log.w(TAG, "Loading identity for: " + recipient.getAddress());
|
|
|
|
identityRecordList.add(identityDatabase.getIdentity(recipient.getAddress()));
|
|
|
|
}
|
2017-06-07 01:03:09 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
String message = null;
|
2017-06-07 01:03:09 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
if (identityRecordList.isUnverified()) {
|
|
|
|
message = IdentityUtil.getUnverifiedBannerDescription(ConversationActivity.this, identityRecordList.getUnverifiedRecipients(ConversationActivity.this));
|
2017-06-07 01:03:09 +00:00
|
|
|
}
|
2017-08-01 15:56:00 +00:00
|
|
|
|
|
|
|
return new Pair<>(identityRecordList, message);
|
2017-06-07 01:03:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(@NonNull Pair<IdentityRecordList, String> result) {
|
|
|
|
Log.w(TAG, "Got identity records: " + result.first.isUnverified());
|
|
|
|
identityRecords.replaceWith(result.first);
|
|
|
|
|
|
|
|
if (result.second != null) {
|
|
|
|
Log.w(TAG, "Replacing banner...");
|
|
|
|
unverifiedBannerView.get().display(result.second, result.first.getUnverifiedRecords(),
|
|
|
|
new UnverifiedClickedListener(),
|
|
|
|
new UnverifiedDismissedListener());
|
|
|
|
} else if (unverifiedBannerView.resolved()) {
|
|
|
|
Log.w(TAG, "Clearing banner...");
|
|
|
|
unverifiedBannerView.get().hide();
|
|
|
|
}
|
|
|
|
|
2017-06-22 17:37:26 +00:00
|
|
|
titleView.setVerified(isSecureText && identityRecords.isVerified());
|
2017-06-07 01:03:09 +00:00
|
|
|
|
|
|
|
future.set(true);
|
|
|
|
}
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
}.execute(recipient);
|
2017-06-07 01:03:09 +00:00
|
|
|
|
|
|
|
return future;
|
|
|
|
}
|
|
|
|
|
2014-12-25 02:32:51 +00:00
|
|
|
private void initializeViews() {
|
2015-10-14 04:44:01 +00:00
|
|
|
titleView = (ConversationTitleView) getSupportActionBar().getCustomView();
|
|
|
|
buttonToggle = ViewUtil.findById(this, R.id.button_toggle);
|
|
|
|
sendButton = ViewUtil.findById(this, R.id.send_button);
|
|
|
|
attachButton = ViewUtil.findById(this, R.id.attach_button);
|
|
|
|
composeText = ViewUtil.findById(this, R.id.embedded_text_editor);
|
|
|
|
charactersLeft = ViewUtil.findById(this, R.id.space_left);
|
2017-01-19 19:31:41 +00:00
|
|
|
emojiDrawerStub = ViewUtil.findStubById(this, R.id.emoji_drawer_stub);
|
2015-10-14 04:44:01 +00:00
|
|
|
unblockButton = ViewUtil.findById(this, R.id.unblock_button);
|
2016-11-20 23:56:47 +00:00
|
|
|
makeDefaultSmsButton = ViewUtil.findById(this, R.id.make_default_sms_button);
|
2015-10-14 04:44:01 +00:00
|
|
|
composePanel = ViewUtil.findById(this, R.id.bottom_panel);
|
|
|
|
container = ViewUtil.findById(this, R.id.layout_container);
|
2017-01-19 02:46:40 +00:00
|
|
|
reminderView = ViewUtil.findStubById(this, R.id.reminder_stub);
|
2017-06-07 01:03:09 +00:00
|
|
|
unverifiedBannerView = ViewUtil.findStubById(this, R.id.unverified_banner_stub);
|
2015-10-14 04:44:01 +00:00
|
|
|
quickAttachmentDrawer = ViewUtil.findById(this, R.id.quick_attachment_drawer);
|
|
|
|
quickAttachmentToggle = ViewUtil.findById(this, R.id.quick_attachment_toggle);
|
2015-11-18 22:52:26 +00:00
|
|
|
inputPanel = ViewUtil.findById(this, R.id.bottom_panel);
|
|
|
|
|
|
|
|
ImageButton quickCameraToggle = ViewUtil.findById(this, R.id.quick_camera_toggle);
|
|
|
|
View composeBubble = ViewUtil.findById(this, R.id.compose_bubble);
|
2015-04-16 05:38:33 +00:00
|
|
|
|
2015-07-25 14:58:51 +00:00
|
|
|
container.addOnKeyboardShownListener(this);
|
2017-01-19 19:31:41 +00:00
|
|
|
inputPanel.setListener(this);
|
2016-12-26 23:14:23 +00:00
|
|
|
inputPanel.setMediaListener(this);
|
2015-07-25 14:58:51 +00:00
|
|
|
|
2015-07-01 00:45:39 +00:00
|
|
|
int[] attributes = new int[]{R.attr.conversation_item_bubble_background};
|
|
|
|
TypedArray colors = obtainStyledAttributes(attributes);
|
|
|
|
int defaultColor = colors.getColor(0, Color.WHITE);
|
|
|
|
composeBubble.getBackground().setColorFilter(defaultColor, PorterDuff.Mode.MULTIPLY);
|
|
|
|
colors.recycle();
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2017-01-19 02:46:40 +00:00
|
|
|
attachmentTypeSelector = null;
|
2015-10-28 16:47:09 +00:00
|
|
|
attachmentManager = new AttachmentManager(this, this);
|
2015-11-18 22:52:26 +00:00
|
|
|
audioRecorder = new AudioRecorder(this, masterSecret);
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
SendButtonListener sendButtonListener = new SendButtonListener();
|
|
|
|
ComposeKeyPressedListener composeKeyPressedListener = new ComposeKeyPressedListener();
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-07-21 02:25:54 +00:00
|
|
|
composeText.setOnEditorActionListener(sendButtonListener);
|
2015-05-18 17:26:32 +00:00
|
|
|
attachButton.setOnClickListener(new AttachButtonListener());
|
2015-07-26 21:49:43 +00:00
|
|
|
attachButton.setOnLongClickListener(new AttachButtonLongClickListener());
|
2012-07-19 21:22:03 +00:00
|
|
|
sendButton.setOnClickListener(sendButtonListener);
|
2013-03-14 00:45:32 +00:00
|
|
|
sendButton.setEnabled(true);
|
2015-02-16 10:38:09 +00:00
|
|
|
sendButton.addOnTransportChangedListener(new OnTransportChangedListener() {
|
|
|
|
@Override
|
2016-02-06 00:10:33 +00:00
|
|
|
public void onChange(TransportOption newTransport, boolean manuallySelected) {
|
2015-02-16 10:38:09 +00:00
|
|
|
calculateCharactersRemaining();
|
2015-07-21 02:25:54 +00:00
|
|
|
composeText.setTransport(newTransport);
|
2015-07-01 00:45:39 +00:00
|
|
|
buttonToggle.getBackground().setColorFilter(newTransport.getBackgroundColor(), Mode.MULTIPLY);
|
2015-10-02 00:25:55 +00:00
|
|
|
buttonToggle.getBackground().invalidateSelf();
|
2016-02-06 00:10:33 +00:00
|
|
|
if (manuallySelected) recordSubscriptionIdPreference(newTransport.getSimSubscriptionId());
|
2015-02-16 10:38:09 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-06-09 14:37:20 +00:00
|
|
|
titleView.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
Intent intent = new Intent(ConversationActivity.this, RecipientPreferenceActivity.class);
|
2017-08-01 15:56:00 +00:00
|
|
|
intent.putExtra(RecipientPreferenceActivity.ADDRESS_EXTRA, recipient.getAddress());
|
2016-12-11 18:04:57 +00:00
|
|
|
intent.putExtra(RecipientPreferenceActivity.CAN_HAVE_SAFETY_NUMBER_EXTRA,
|
|
|
|
isSecureText && !isSelfConversation());
|
2015-06-22 16:52:46 +00:00
|
|
|
|
|
|
|
startActivitySceneTransition(intent, titleView.findViewById(R.id.title), "recipient_name");
|
2015-06-09 14:37:20 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
unblockButton.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
handleUnblock();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-11-20 23:56:47 +00:00
|
|
|
makeDefaultSmsButton.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
handleMakeDefaultSms();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
composeText.setOnKeyListener(composeKeyPressedListener);
|
|
|
|
composeText.addTextChangedListener(composeKeyPressedListener);
|
2012-07-19 21:22:03 +00:00
|
|
|
composeText.setOnEditorActionListener(sendButtonListener);
|
2013-06-28 03:57:27 +00:00
|
|
|
composeText.setOnClickListener(composeKeyPressedListener);
|
2014-05-29 03:53:34 +00:00
|
|
|
composeText.setOnFocusChangeListener(composeKeyPressedListener);
|
2015-04-16 05:38:33 +00:00
|
|
|
|
2015-06-08 18:07:46 +00:00
|
|
|
if (QuickAttachmentDrawer.isDeviceSupported(this)) {
|
|
|
|
quickAttachmentDrawer.setListener(this);
|
2015-11-18 22:52:26 +00:00
|
|
|
quickCameraToggle.setOnClickListener(new QuickCameraToggleListener());
|
2015-04-16 05:38:33 +00:00
|
|
|
} else {
|
2015-11-18 22:52:26 +00:00
|
|
|
quickCameraToggle.setVisibility(View.GONE);
|
|
|
|
quickCameraToggle.setEnabled(false);
|
2015-04-16 05:38:33 +00:00
|
|
|
}
|
2014-12-25 02:32:51 +00:00
|
|
|
}
|
|
|
|
|
2015-06-22 15:46:43 +00:00
|
|
|
protected void initializeActionBar() {
|
2015-06-09 14:37:20 +00:00
|
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
getSupportActionBar().setCustomView(R.layout.conversation_title_view);
|
|
|
|
getSupportActionBar().setDisplayShowCustomEnabled(true);
|
|
|
|
getSupportActionBar().setDisplayShowTitleEnabled(false);
|
|
|
|
}
|
|
|
|
|
2014-12-25 02:32:51 +00:00
|
|
|
private void initializeResources() {
|
2017-08-01 15:56:00 +00:00
|
|
|
if (recipient != null) recipient.removeListener(this);
|
2016-08-16 03:23:56 +00:00
|
|
|
|
2017-08-22 01:32:38 +00:00
|
|
|
recipient = Recipient.from(this, (Address)getIntent().getParcelableExtra(ADDRESS_EXTRA), true);
|
2014-12-25 02:32:51 +00:00
|
|
|
threadId = getIntent().getLongExtra(THREAD_ID_EXTRA, -1);
|
2015-12-01 00:38:37 +00:00
|
|
|
archived = getIntent().getBooleanExtra(IS_ARCHIVED_EXTRA, false);
|
2014-12-25 02:32:51 +00:00
|
|
|
distributionType = getIntent().getIntExtra(DISTRIBUTION_TYPE_EXTRA, ThreadDatabase.DistributionTypes.DEFAULT);
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-11-24 19:47:50 +00:00
|
|
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
|
|
|
|
LinearLayout conversationContainer = ViewUtil.findById(this, R.id.conversation_container);
|
|
|
|
conversationContainer.setClipChildren(true);
|
|
|
|
conversationContainer.setClipToPadding(true);
|
|
|
|
}
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
recipient.addListener(this);
|
2015-02-10 11:15:50 +00:00
|
|
|
}
|
|
|
|
|
2017-05-20 01:01:40 +00:00
|
|
|
private void initializeProfiles() {
|
2017-06-14 16:53:22 +00:00
|
|
|
if (!isSecureText) {
|
|
|
|
Log.w(TAG, "SMS contact, no profile fetch needed.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-20 01:01:40 +00:00
|
|
|
ApplicationContext.getInstance(this)
|
|
|
|
.getJobManager()
|
2017-08-01 15:56:00 +00:00
|
|
|
.add(new RetrieveProfileJob(this, recipient));
|
2017-05-20 01:01:40 +00:00
|
|
|
}
|
|
|
|
|
2015-02-10 11:15:50 +00:00
|
|
|
@Override
|
2017-08-01 15:56:00 +00:00
|
|
|
public void onModified(final Recipient recipient) {
|
2015-06-11 19:53:38 +00:00
|
|
|
titleView.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2017-08-01 15:56:00 +00:00
|
|
|
titleView.setTitle(recipient);
|
2017-06-07 01:03:09 +00:00
|
|
|
titleView.setVerified(identityRecords.isVerified());
|
2017-08-01 15:56:00 +00:00
|
|
|
setBlockedUserState(recipient, isSecureText, isDefaultSms);
|
|
|
|
setActionBarColor(recipient.getColor());
|
2016-08-16 03:23:56 +00:00
|
|
|
invalidateOptionsMenu();
|
2016-02-06 00:10:33 +00:00
|
|
|
updateRecipientPreferences();
|
2015-06-11 19:53:38 +00:00
|
|
|
}
|
|
|
|
});
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
2014-02-16 02:40:08 +00:00
|
|
|
|
2017-02-18 04:43:24 +00:00
|
|
|
@Subscribe(threadMode = ThreadMode.MAIN)
|
|
|
|
public void onRecipientPreferenceUpdate(final RecipientPreferenceEvent event) {
|
2017-08-01 15:56:00 +00:00
|
|
|
if (event.getRecipient().getAddress().equals(this.recipient.getAddress())) {
|
|
|
|
new RecipientPreferencesTask().execute(this.recipient);
|
2017-02-18 04:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-07 01:03:09 +00:00
|
|
|
@Subscribe(threadMode = ThreadMode.MAIN)
|
|
|
|
public void onIdentityRecordUpdate(final IdentityRecord event) {
|
|
|
|
initializeIdentityRecords();
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private void initializeReceivers() {
|
|
|
|
securityUpdateReceiver = new BroadcastReceiver() {
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
2017-03-14 20:24:24 +00:00
|
|
|
initializeSecurity(isSecureText, isDefaultSms);
|
2015-09-23 22:47:48 +00:00
|
|
|
calculateCharactersRemaining();
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-08-16 03:23:56 +00:00
|
|
|
recipientsStaleReceiver = new BroadcastReceiver() {
|
2014-02-24 08:19:54 +00:00
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
2016-08-16 03:23:56 +00:00
|
|
|
Log.w(TAG, "Group update received...");
|
2017-08-01 15:56:00 +00:00
|
|
|
if (recipient != null) {
|
2016-08-16 03:23:56 +00:00
|
|
|
Log.w(TAG, "Looking up new recipients...");
|
2017-08-22 01:32:38 +00:00
|
|
|
recipient = Recipient.from(context, recipient.getAddress(), true);
|
2017-08-01 15:56:00 +00:00
|
|
|
recipient.addListener(ConversationActivity.this);
|
|
|
|
onModified(recipient);
|
2016-08-16 03:23:56 +00:00
|
|
|
fragment.reloadList();
|
2014-02-24 08:19:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-08-16 03:23:56 +00:00
|
|
|
IntentFilter staleFilter = new IntentFilter();
|
|
|
|
staleFilter.addAction(GroupDatabase.DATABASE_UPDATE_ACTION);
|
2017-08-22 01:32:38 +00:00
|
|
|
staleFilter.addAction(Recipient.RECIPIENT_CLEAR_ACTION);
|
2016-08-16 03:23:56 +00:00
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
registerReceiver(securityUpdateReceiver,
|
2014-11-03 23:16:04 +00:00
|
|
|
new IntentFilter(SecurityEvent.SECURITY_UPDATE_EVENT),
|
2012-07-19 21:22:03 +00:00
|
|
|
KeyCachingService.KEY_PERMISSION, null);
|
2014-02-24 08:19:54 +00:00
|
|
|
|
2016-08-16 03:23:56 +00:00
|
|
|
registerReceiver(recipientsStaleReceiver, staleFilter);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//////// Helper Methods
|
|
|
|
|
|
|
|
private void addAttachment(int type) {
|
|
|
|
Log.w("ComposeMessageActivity", "Selected: " + type);
|
|
|
|
switch (type) {
|
2017-04-18 23:33:03 +00:00
|
|
|
case AttachmentTypeSelector.ADD_GALLERY:
|
|
|
|
AttachmentManager.selectGallery(this, PICK_GALLERY); break;
|
|
|
|
case AttachmentTypeSelector.ADD_DOCUMENT:
|
|
|
|
AttachmentManager.selectDocument(this, PICK_DOCUMENT); break;
|
|
|
|
case AttachmentTypeSelector.ADD_SOUND:
|
2012-07-19 21:22:03 +00:00
|
|
|
AttachmentManager.selectAudio(this, PICK_AUDIO); break;
|
2017-04-18 23:33:03 +00:00
|
|
|
case AttachmentTypeSelector.ADD_CONTACT_INFO:
|
2014-06-03 23:24:44 +00:00
|
|
|
AttachmentManager.selectContactInfo(this, PICK_CONTACT_INFO); break;
|
2015-12-18 22:37:11 +00:00
|
|
|
case AttachmentTypeSelector.ADD_LOCATION:
|
|
|
|
AttachmentManager.selectLocation(this, PICK_LOCATION); break;
|
2017-04-18 23:33:03 +00:00
|
|
|
case AttachmentTypeSelector.TAKE_PHOTO:
|
2015-11-24 01:56:41 +00:00
|
|
|
attachmentManager.capturePhoto(this, TAKE_PHOTO); break;
|
2016-10-17 02:05:07 +00:00
|
|
|
case AttachmentTypeSelector.ADD_GIF:
|
2016-12-14 19:58:47 +00:00
|
|
|
AttachmentManager.selectGif(this, PICK_GIF, !isSecureText); break;
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 23:14:23 +00:00
|
|
|
private void setMedia(@Nullable Uri uri, @NonNull MediaType mediaType) {
|
2016-04-12 06:40:48 +00:00
|
|
|
if (uri == null) return;
|
2015-10-15 21:40:45 +00:00
|
|
|
attachmentManager.setMedia(masterSecret, uri, mediaType, getCurrentMediaConstraints());
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2014-06-03 23:24:44 +00:00
|
|
|
private void addAttachmentContactInfo(Uri contactUri) {
|
2013-10-17 00:28:36 +00:00
|
|
|
ContactAccessor contactDataList = ContactAccessor.getInstance();
|
|
|
|
ContactData contactData = contactDataList.getContactData(this, contactUri);
|
|
|
|
|
|
|
|
if (contactData.numbers.size() == 1) composeText.append(contactData.numbers.get(0).number);
|
|
|
|
else if (contactData.numbers.size() > 1) selectContactInfo(contactData);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void selectContactInfo(ContactData contactData) {
|
2014-12-13 02:31:20 +00:00
|
|
|
final CharSequence[] numbers = new CharSequence[contactData.numbers.size()];
|
2013-10-17 00:28:36 +00:00
|
|
|
final CharSequence[] numberItems = new CharSequence[contactData.numbers.size()];
|
2014-12-13 02:31:20 +00:00
|
|
|
|
2013-10-17 00:28:36 +00:00
|
|
|
for (int i = 0; i < contactData.numbers.size(); i++) {
|
2014-12-13 02:31:20 +00:00
|
|
|
numbers[i] = contactData.numbers.get(i).number;
|
2013-10-17 00:28:36 +00:00
|
|
|
numberItems[i] = contactData.numbers.get(i).type + ": " + contactData.numbers.get(i).number;
|
|
|
|
}
|
|
|
|
|
2015-05-20 21:36:30 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2015-03-24 12:44:22 +00:00
|
|
|
builder.setIconAttribute(R.attr.conversation_attach_contact_info);
|
2013-10-17 00:28:36 +00:00
|
|
|
builder.setTitle(R.string.ConversationActivity_select_contact_info);
|
|
|
|
|
|
|
|
builder.setItems(numberItems, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
composeText.append(numbers[which]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.show();
|
|
|
|
}
|
|
|
|
|
2014-12-12 01:13:01 +00:00
|
|
|
private Drafts getDraftsForCurrentState() {
|
|
|
|
Drafts drafts = new Drafts();
|
2013-02-04 08:13:07 +00:00
|
|
|
|
|
|
|
if (!Util.isEmpty(composeText)) {
|
2017-07-04 17:09:36 +00:00
|
|
|
drafts.add(new Draft(Draft.TEXT, composeText.getTextTrimmed()));
|
2013-02-04 08:13:07 +00:00
|
|
|
}
|
|
|
|
|
2015-10-15 21:40:45 +00:00
|
|
|
for (Slide slide : attachmentManager.buildSlideDeck().getSlides()) {
|
2016-12-11 21:37:27 +00:00
|
|
|
if (slide.hasAudio() && slide.getUri() != null) drafts.add(new Draft(Draft.AUDIO, slide.getUri().toString()));
|
|
|
|
else if (slide.hasVideo() && slide.getUri() != null) drafts.add(new Draft(Draft.VIDEO, slide.getUri().toString()));
|
|
|
|
else if (slide.hasLocation()) drafts.add(new Draft(Draft.LOCATION, ((LocationSlide)slide).getPlace().serialize()));
|
|
|
|
else if (slide.hasImage() && slide.getUri() != null) drafts.add(new Draft(Draft.IMAGE, slide.getUri().toString()));
|
2013-02-04 08:13:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return drafts;
|
|
|
|
}
|
|
|
|
|
2015-06-22 15:46:43 +00:00
|
|
|
protected ListenableFuture<Long> saveDraft() {
|
|
|
|
final SettableFuture<Long> future = new SettableFuture<>();
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
if (this.recipient == null) {
|
2015-06-22 15:46:43 +00:00
|
|
|
future.set(threadId);
|
|
|
|
return future;
|
|
|
|
}
|
2013-02-04 08:13:07 +00:00
|
|
|
|
2015-01-03 23:25:35 +00:00
|
|
|
final Drafts drafts = getDraftsForCurrentState();
|
|
|
|
final long thisThreadId = this.threadId;
|
|
|
|
final MasterSecret thisMasterSecret = this.masterSecret.parcelClone();
|
|
|
|
final int thisDistributionType = this.distributionType;
|
2013-02-04 08:13:07 +00:00
|
|
|
|
2015-06-22 15:46:43 +00:00
|
|
|
new AsyncTask<Long, Void, Long>() {
|
2013-02-04 08:13:07 +00:00
|
|
|
@Override
|
2015-06-22 15:46:43 +00:00
|
|
|
protected Long doInBackground(Long... params) {
|
2014-12-12 01:13:01 +00:00
|
|
|
ThreadDatabase threadDatabase = DatabaseFactory.getThreadDatabase(ConversationActivity.this);
|
2015-01-03 23:25:35 +00:00
|
|
|
DraftDatabase draftDatabase = DatabaseFactory.getDraftDatabase(ConversationActivity.this);
|
|
|
|
long threadId = params[0];
|
|
|
|
|
2014-12-12 01:13:01 +00:00
|
|
|
if (drafts.size() > 0) {
|
2017-08-01 15:56:00 +00:00
|
|
|
if (threadId == -1) threadId = threadDatabase.getThreadIdFor(getRecipient(), thisDistributionType);
|
2015-01-03 23:25:35 +00:00
|
|
|
|
|
|
|
draftDatabase.insertDrafts(new MasterCipher(thisMasterSecret), threadId, drafts);
|
2015-10-16 20:59:40 +00:00
|
|
|
threadDatabase.updateSnippet(threadId, drafts.getSnippet(ConversationActivity.this),
|
|
|
|
drafts.getUriSnippet(ConversationActivity.this),
|
2015-11-23 23:07:41 +00:00
|
|
|
System.currentTimeMillis(), Types.BASE_DRAFT_TYPE, true);
|
2015-01-03 23:25:35 +00:00
|
|
|
} else if (threadId > 0) {
|
2015-11-23 23:07:41 +00:00
|
|
|
threadDatabase.update(threadId, false);
|
2014-12-12 01:13:01 +00:00
|
|
|
}
|
2015-06-22 15:46:43 +00:00
|
|
|
|
|
|
|
return threadId;
|
2013-02-04 08:13:07 +00:00
|
|
|
}
|
2015-06-22 15:46:43 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Long result) {
|
|
|
|
future.set(result);
|
|
|
|
}
|
|
|
|
|
2015-01-03 23:25:35 +00:00
|
|
|
}.execute(thisThreadId);
|
2015-06-22 15:46:43 +00:00
|
|
|
|
|
|
|
return future;
|
2013-02-04 08:13:07 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 16:16:05 +00:00
|
|
|
private void setActionBarColor(MaterialColor color) {
|
2015-07-01 15:13:09 +00:00
|
|
|
getSupportActionBar().setBackgroundDrawable(new ColorDrawable(color.toActionBarColor(this)));
|
2015-10-19 18:23:12 +00:00
|
|
|
setStatusBarColor(color.toStatusBarColor(this));
|
2015-06-23 22:10:50 +00:00
|
|
|
}
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
private void setBlockedUserState(Recipient recipient, boolean isSecureText, boolean isDefaultSms) {
|
|
|
|
if (recipient.isBlocked()) {
|
2015-06-09 14:37:20 +00:00
|
|
|
unblockButton.setVisibility(View.VISIBLE);
|
|
|
|
composePanel.setVisibility(View.GONE);
|
2016-11-20 23:56:47 +00:00
|
|
|
makeDefaultSmsButton.setVisibility(View.GONE);
|
2017-01-18 19:01:13 +00:00
|
|
|
} else if (!isSecureText && !isDefaultSms) {
|
2016-11-20 23:56:47 +00:00
|
|
|
unblockButton.setVisibility(View.GONE);
|
|
|
|
composePanel.setVisibility(View.GONE);
|
|
|
|
makeDefaultSmsButton.setVisibility(View.VISIBLE);
|
2015-06-09 14:37:20 +00:00
|
|
|
} else {
|
|
|
|
composePanel.setVisibility(View.VISIBLE);
|
|
|
|
unblockButton.setVisibility(View.GONE);
|
2016-11-20 23:56:47 +00:00
|
|
|
makeDefaultSmsButton.setVisibility(View.GONE);
|
2015-06-09 14:37:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private void calculateCharactersRemaining() {
|
2017-07-04 17:09:36 +00:00
|
|
|
String messageBody = composeText.getTextTrimmed();
|
2015-03-07 17:02:10 +00:00
|
|
|
TransportOption transportOption = sendButton.getSelectedTransport();
|
2016-04-17 16:09:31 +00:00
|
|
|
CharacterState characterState = transportOption.calculateCharacters(messageBody);
|
2015-03-07 17:02:10 +00:00
|
|
|
|
2015-03-11 21:23:45 +00:00
|
|
|
if (characterState.charactersRemaining <= 15 || characterState.messagesSpent > 1) {
|
|
|
|
charactersLeft.setText(characterState.charactersRemaining + "/" + characterState.maxMessageSize
|
|
|
|
+ " (" + characterState.messagesSpent + ")");
|
|
|
|
charactersLeft.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
charactersLeft.setVisibility(View.GONE);
|
2014-01-08 22:29:05 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 00:39:36 +00:00
|
|
|
private boolean isSingleConversation() {
|
2017-08-01 15:56:00 +00:00
|
|
|
return getRecipient() != null && !getRecipient().isGroupRecipient();
|
2012-10-21 21:34:09 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 18:54:43 +00:00
|
|
|
private boolean isActiveGroup() {
|
|
|
|
if (!isGroupConversation()) return false;
|
|
|
|
|
2017-08-07 23:47:38 +00:00
|
|
|
Optional<GroupRecord> record = DatabaseFactory.getGroupDatabase(this).getGroup(getRecipient().getAddress().toGroupString());
|
|
|
|
return record.isPresent() && record.get().isActive();
|
2014-02-22 18:54:43 +00:00
|
|
|
}
|
|
|
|
|
2015-10-01 18:14:00 +00:00
|
|
|
private boolean isSelfConversation() {
|
2017-08-01 15:56:00 +00:00
|
|
|
if (!TextSecurePreferences.isPushRegistered(this)) return false;
|
|
|
|
if (recipient.isGroupRecipient()) return false;
|
2015-10-01 18:14:00 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
return Util.isOwnNumber(this, recipient.getAddress());
|
2015-10-01 18:14:00 +00:00
|
|
|
}
|
|
|
|
|
2012-10-21 21:34:09 +00:00
|
|
|
private boolean isGroupConversation() {
|
2017-08-01 15:56:00 +00:00
|
|
|
return getRecipient() != null && getRecipient().isGroupRecipient();
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2014-02-18 04:25:40 +00:00
|
|
|
private boolean isPushGroupConversation() {
|
2017-08-01 15:56:00 +00:00
|
|
|
return getRecipient() != null && getRecipient().isPushGroupRecipient();
|
2014-02-18 04:25:40 +00:00
|
|
|
}
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
protected Recipient getRecipient() {
|
|
|
|
return this.recipient;
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2015-06-22 15:46:43 +00:00
|
|
|
protected long getThreadId() {
|
|
|
|
return this.threadId;
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private String getMessage() throws InvalidMessageException {
|
2017-07-04 17:09:36 +00:00
|
|
|
String rawText = composeText.getTextTrimmed();
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
if (rawText.length() < 1 && !attachmentManager.isAttachmentPresent())
|
2012-09-20 02:56:04 +00:00
|
|
|
throw new InvalidMessageException(getString(R.string.ConversationActivity_message_is_empty_exclamation));
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
return rawText;
|
|
|
|
}
|
|
|
|
|
2015-09-05 00:33:22 +00:00
|
|
|
private MediaConstraints getCurrentMediaConstraints() {
|
|
|
|
return sendButton.getSelectedTransport().getType() == Type.TEXTSECURE
|
2017-05-08 22:32:59 +00:00
|
|
|
? MediaConstraints.getPushMediaConstraints()
|
|
|
|
: MediaConstraints.getMmsMediaConstraints(sendButton.getSelectedTransport().getSimSubscriptionId().or(-1));
|
2015-09-05 00:33:22 +00:00
|
|
|
}
|
|
|
|
|
2013-02-04 02:41:34 +00:00
|
|
|
private void markThreadAsRead() {
|
|
|
|
new AsyncTask<Long, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Long... params) {
|
2016-10-10 18:13:37 +00:00
|
|
|
Context context = ConversationActivity.this;
|
2017-02-22 23:05:35 +00:00
|
|
|
List<MarkedMessageInfo> messageIds = DatabaseFactory.getThreadDatabase(context).setRead(params[0], false);
|
2016-02-20 01:07:41 +00:00
|
|
|
|
|
|
|
MessageNotifier.updateNotification(context, masterSecret);
|
2016-10-10 18:13:37 +00:00
|
|
|
MarkReadReceiver.process(context, messageIds);
|
2016-02-20 01:07:41 +00:00
|
|
|
|
2013-02-04 02:41:34 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute(threadId);
|
|
|
|
}
|
|
|
|
|
2017-02-14 06:35:47 +00:00
|
|
|
private void markLastSeen() {
|
|
|
|
new AsyncTask<Long, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Long... params) {
|
|
|
|
DatabaseFactory.getThreadDatabase(ConversationActivity.this).setLastSeen(params[0]);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute(threadId);
|
|
|
|
}
|
|
|
|
|
2015-06-22 15:46:43 +00:00
|
|
|
protected void sendComplete(long threadId) {
|
2014-11-08 19:35:58 +00:00
|
|
|
boolean refreshFragment = (threadId != this.threadId);
|
|
|
|
this.threadId = threadId;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-04-09 00:43:14 +00:00
|
|
|
if (fragment == null || !fragment.isVisible() || isFinishing()) {
|
2014-11-25 06:48:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-02-14 06:35:47 +00:00
|
|
|
fragment.setLastSeen(0);
|
|
|
|
|
2014-02-17 23:47:58 +00:00
|
|
|
if (refreshFragment) {
|
2017-08-01 15:56:00 +00:00
|
|
|
fragment.reload(recipient, threadId);
|
2015-10-08 17:15:07 +00:00
|
|
|
MessageNotifier.setVisibleThread(threadId);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
2014-11-08 19:35:58 +00:00
|
|
|
|
2014-03-26 22:11:56 +00:00
|
|
|
fragment.scrollToBottom();
|
2015-05-18 17:26:32 +00:00
|
|
|
attachmentManager.cleanup();
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2014-07-19 02:31:03 +00:00
|
|
|
private void sendMessage() {
|
2012-07-19 21:22:03 +00:00
|
|
|
try {
|
2017-08-01 15:56:00 +00:00
|
|
|
Recipient recipient = getRecipient();
|
2016-11-28 17:14:44 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
if (recipient == null) {
|
2016-11-28 17:14:44 +00:00
|
|
|
throw new RecipientFormattingException("Badly formatted");
|
|
|
|
}
|
|
|
|
|
2016-02-06 00:10:33 +00:00
|
|
|
boolean forceSms = sendButton.isManualSelection() && sendButton.getSelectedTransport().isSms();
|
|
|
|
int subscriptionId = sendButton.getSelectedTransport().getSimSubscriptionId().or(-1);
|
2017-08-01 15:56:00 +00:00
|
|
|
long expiresIn = recipient.getExpireMessages() * 1000;
|
2017-08-17 04:49:41 +00:00
|
|
|
boolean initiating = threadId == -1;
|
2015-03-11 21:23:45 +00:00
|
|
|
|
|
|
|
Log.w(TAG, "isManual Selection: " + sendButton.isManualSelection());
|
|
|
|
Log.w(TAG, "forceSms: " + forceSms);
|
2012-08-02 00:39:36 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
if ((!recipient.isMmsGroupRecipient() || recipient.getAddress().isEmail()) && !isMmsEnabled) {
|
2013-09-16 07:55:01 +00:00
|
|
|
handleManualMmsRequired();
|
2017-06-07 01:03:09 +00:00
|
|
|
} else if (!forceSms && identityRecords.isUnverified()) {
|
|
|
|
handleUnverifiedRecipients();
|
|
|
|
} else if (!forceSms && identityRecords.isUntrusted()) {
|
|
|
|
handleUntrustedRecipients();
|
2017-08-01 15:56:00 +00:00
|
|
|
} else if (attachmentManager.isAttachmentPresent() || recipient.isGroupRecipient() || recipient.getAddress().isEmail()) {
|
2017-08-17 04:49:41 +00:00
|
|
|
sendMediaMessage(forceSms, expiresIn, subscriptionId, initiating);
|
2012-07-19 21:22:03 +00:00
|
|
|
} else {
|
2017-08-17 04:49:41 +00:00
|
|
|
sendTextMessage(forceSms, expiresIn, subscriptionId, initiating);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
} catch (RecipientFormattingException ex) {
|
2012-09-08 03:03:23 +00:00
|
|
|
Toast.makeText(ConversationActivity.this,
|
2012-09-20 02:56:04 +00:00
|
|
|
R.string.ConversationActivity_recipient_is_not_a_valid_sms_or_email_address_exclamation,
|
2012-09-08 03:03:23 +00:00
|
|
|
Toast.LENGTH_LONG).show();
|
2014-02-18 04:25:40 +00:00
|
|
|
Log.w(TAG, ex);
|
2012-07-19 21:22:03 +00:00
|
|
|
} catch (InvalidMessageException ex) {
|
2012-09-20 02:56:04 +00:00
|
|
|
Toast.makeText(ConversationActivity.this, R.string.ConversationActivity_message_is_empty_exclamation,
|
2012-09-08 03:03:23 +00:00
|
|
|
Toast.LENGTH_SHORT).show();
|
2014-02-18 04:25:40 +00:00
|
|
|
Log.w(TAG, ex);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-17 04:49:41 +00:00
|
|
|
private void sendMediaMessage(final boolean forceSms, final long expiresIn, final int subscriptionId, boolean initiating)
|
2014-11-08 19:35:58 +00:00
|
|
|
throws InvalidMessageException
|
2014-06-11 22:31:59 +00:00
|
|
|
{
|
2017-08-17 04:49:41 +00:00
|
|
|
sendMediaMessage(forceSms, getMessage(), attachmentManager.buildSlideDeck(), expiresIn, subscriptionId, initiating);
|
2015-11-18 22:52:26 +00:00
|
|
|
}
|
|
|
|
|
2017-08-17 04:49:41 +00:00
|
|
|
private ListenableFuture<Void> sendMediaMessage(final boolean forceSms, String body, SlideDeck slideDeck, final long expiresIn, final int subscriptionId, final boolean initiating)
|
2015-11-18 22:52:26 +00:00
|
|
|
throws InvalidMessageException
|
|
|
|
{
|
|
|
|
final SettableFuture<Void> future = new SettableFuture<>();
|
|
|
|
final Context context = getApplicationContext();
|
2017-08-01 15:56:00 +00:00
|
|
|
OutgoingMediaMessage outgoingMessage = new OutgoingMediaMessage(recipient,
|
2015-11-18 22:52:26 +00:00
|
|
|
slideDeck,
|
|
|
|
body,
|
|
|
|
System.currentTimeMillis(),
|
2016-02-06 00:10:33 +00:00
|
|
|
subscriptionId,
|
2016-08-16 03:23:56 +00:00
|
|
|
expiresIn,
|
2015-11-18 22:52:26 +00:00
|
|
|
distributionType);
|
2014-06-11 22:31:59 +00:00
|
|
|
|
2015-09-29 21:26:37 +00:00
|
|
|
if (isSecureText && !forceSms) {
|
2014-06-11 22:31:59 +00:00
|
|
|
outgoingMessage = new OutgoingSecureMediaMessage(outgoingMessage);
|
|
|
|
}
|
|
|
|
|
2017-04-22 23:29:26 +00:00
|
|
|
attachmentManager.clear(false);
|
2014-11-08 19:35:58 +00:00
|
|
|
composeText.setText("");
|
2017-04-22 23:29:26 +00:00
|
|
|
final long id = fragment.stageOutgoingMessage(outgoingMessage);
|
2014-11-08 19:35:58 +00:00
|
|
|
|
|
|
|
new AsyncTask<OutgoingMediaMessage, Void, Long>() {
|
|
|
|
@Override
|
|
|
|
protected Long doInBackground(OutgoingMediaMessage... messages) {
|
2017-08-17 04:49:41 +00:00
|
|
|
if (initiating) {
|
|
|
|
DatabaseFactory.getRecipientPreferenceDatabase(context).setProfileSharing(recipient.getAddress(), true);
|
|
|
|
}
|
|
|
|
|
2017-04-22 23:29:26 +00:00
|
|
|
return MessageSender.send(context, masterSecret, messages[0], threadId, forceSms, new SmsDatabase.InsertListener() {
|
|
|
|
@Override
|
|
|
|
public void onComplete() {
|
|
|
|
fragment.releaseOutgoingMessage(id);
|
|
|
|
}
|
|
|
|
});
|
2014-11-08 19:35:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Long result) {
|
|
|
|
sendComplete(result);
|
2015-11-18 22:52:26 +00:00
|
|
|
future.set(null);
|
2014-11-08 19:35:58 +00:00
|
|
|
}
|
|
|
|
}.execute(outgoingMessage);
|
2015-11-18 22:52:26 +00:00
|
|
|
|
|
|
|
return future;
|
2014-06-11 22:31:59 +00:00
|
|
|
}
|
|
|
|
|
2017-08-17 04:49:41 +00:00
|
|
|
private void sendTextMessage(final boolean forceSms, final long expiresIn, final int subscriptionId, final boolean initiatingConversation)
|
2014-06-11 22:31:59 +00:00
|
|
|
throws InvalidMessageException
|
|
|
|
{
|
2014-11-08 19:35:58 +00:00
|
|
|
final Context context = getApplicationContext();
|
2014-06-11 22:31:59 +00:00
|
|
|
OutgoingTextMessage message;
|
|
|
|
|
2015-09-29 21:26:37 +00:00
|
|
|
if (isSecureText && !forceSms) {
|
2017-08-01 15:56:00 +00:00
|
|
|
message = new OutgoingEncryptedMessage(recipient, getMessage(), expiresIn);
|
2014-06-11 22:31:59 +00:00
|
|
|
} else {
|
2017-08-01 15:56:00 +00:00
|
|
|
message = new OutgoingTextMessage(recipient, getMessage(), expiresIn, subscriptionId);
|
2014-06-11 22:31:59 +00:00
|
|
|
}
|
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
this.composeText.setText("");
|
2017-04-22 23:29:26 +00:00
|
|
|
final long id = fragment.stageOutgoingMessage(message);
|
2014-06-11 22:31:59 +00:00
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
new AsyncTask<OutgoingTextMessage, Void, Long>() {
|
|
|
|
@Override
|
|
|
|
protected Long doInBackground(OutgoingTextMessage... messages) {
|
2017-08-17 04:49:41 +00:00
|
|
|
if (initiatingConversation) {
|
|
|
|
DatabaseFactory.getRecipientPreferenceDatabase(context).setProfileSharing(recipient.getAddress(), true);
|
|
|
|
}
|
|
|
|
|
2017-04-22 23:29:26 +00:00
|
|
|
return MessageSender.send(context, masterSecret, messages[0], threadId, forceSms, new SmsDatabase.InsertListener() {
|
|
|
|
@Override
|
|
|
|
public void onComplete() {
|
|
|
|
fragment.releaseOutgoingMessage(id);
|
|
|
|
}
|
|
|
|
});
|
2014-11-08 19:35:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Long result) {
|
|
|
|
sendComplete(result);
|
|
|
|
}
|
|
|
|
}.execute(message);
|
2014-06-11 22:31:59 +00:00
|
|
|
}
|
|
|
|
|
2015-05-18 17:26:32 +00:00
|
|
|
private void updateToggleButtonState() {
|
2017-07-04 17:09:36 +00:00
|
|
|
if (composeText.getTextTrimmed().length() == 0 && !attachmentManager.isAttachmentPresent()) {
|
2015-05-18 17:26:32 +00:00
|
|
|
buttonToggle.display(attachButton);
|
2015-06-08 18:07:46 +00:00
|
|
|
quickAttachmentToggle.show();
|
2015-05-18 17:26:32 +00:00
|
|
|
} else {
|
|
|
|
buttonToggle.display(sendButton);
|
2015-06-08 18:07:46 +00:00
|
|
|
quickAttachmentToggle.hide();
|
2015-05-18 17:26:32 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-11 22:31:59 +00:00
|
|
|
|
2016-02-06 00:10:33 +00:00
|
|
|
private void recordSubscriptionIdPreference(final Optional<Integer> subscriptionId) {
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
DatabaseFactory.getRecipientPreferenceDatabase(ConversationActivity.this)
|
2017-08-01 15:56:00 +00:00
|
|
|
.setDefaultSubscriptionId(recipient, subscriptionId.or(-1));
|
2016-02-06 00:10:33 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
|
2015-06-08 18:07:46 +00:00
|
|
|
@Override
|
2015-07-24 20:22:28 +00:00
|
|
|
public void onAttachmentDrawerStateChanged(DrawerState drawerState) {
|
|
|
|
if (drawerState == DrawerState.FULL_EXPANDED) {
|
|
|
|
getSupportActionBar().hide();
|
|
|
|
} else {
|
|
|
|
getSupportActionBar().show();
|
|
|
|
}
|
2015-11-17 01:11:03 +00:00
|
|
|
|
|
|
|
if (drawerState == DrawerState.COLLAPSED) {
|
|
|
|
container.hideAttachedInput(true);
|
|
|
|
}
|
2015-06-08 18:07:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-07-14 00:35:34 +00:00
|
|
|
public void onImageCapture(@NonNull final byte[] imageBytes) {
|
2015-11-21 07:18:19 +00:00
|
|
|
setMedia(PersistentBlobProvider.getInstance(this)
|
2017-05-10 22:21:52 +00:00
|
|
|
.create(masterSecret, imageBytes, MediaUtil.IMAGE_JPEG, null),
|
2015-11-21 07:18:19 +00:00
|
|
|
MediaType.IMAGE);
|
2015-07-24 20:22:28 +00:00
|
|
|
quickAttachmentDrawer.hide(false);
|
2015-06-08 18:07:46 +00:00
|
|
|
}
|
|
|
|
|
2015-07-14 00:35:34 +00:00
|
|
|
@Override
|
2015-11-14 01:13:40 +00:00
|
|
|
public void onCameraFail() {
|
2015-09-24 23:53:48 +00:00
|
|
|
Toast.makeText(this, R.string.ConversationActivity_quick_camera_unavailable, Toast.LENGTH_SHORT).show();
|
2015-07-24 20:22:28 +00:00
|
|
|
quickAttachmentDrawer.hide(false);
|
2015-07-14 00:35:34 +00:00
|
|
|
quickAttachmentToggle.disable();
|
|
|
|
}
|
|
|
|
|
2015-11-23 23:19:05 +00:00
|
|
|
@Override
|
|
|
|
public void onCameraStart() {}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCameraStop() {}
|
|
|
|
|
2015-11-18 22:52:26 +00:00
|
|
|
@Override
|
|
|
|
public void onRecorderStarted() {
|
2015-11-22 18:44:44 +00:00
|
|
|
Vibrator vibrator = (Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
|
|
|
|
vibrator.vibrate(20);
|
2017-02-16 20:28:06 +00:00
|
|
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
|
2015-11-18 22:52:26 +00:00
|
|
|
|
2015-11-22 18:44:44 +00:00
|
|
|
audioRecorder.startRecording();
|
2015-11-18 22:52:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRecorderFinished() {
|
|
|
|
Vibrator vibrator = (Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
|
|
|
|
vibrator.vibrate(20);
|
2017-02-16 20:28:06 +00:00
|
|
|
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
|
2015-11-18 22:52:26 +00:00
|
|
|
|
|
|
|
ListenableFuture<Pair<Uri, Long>> future = audioRecorder.stopRecording();
|
|
|
|
future.addListener(new ListenableFuture.Listener<Pair<Uri, Long>>() {
|
|
|
|
@Override
|
|
|
|
public void onSuccess(final @NonNull Pair<Uri, Long> result) {
|
|
|
|
try {
|
2016-02-06 00:10:33 +00:00
|
|
|
boolean forceSms = sendButton.isManualSelection() && sendButton.getSelectedTransport().isSms();
|
|
|
|
int subscriptionId = sendButton.getSelectedTransport().getSimSubscriptionId().or(-1);
|
2017-08-01 15:56:00 +00:00
|
|
|
long expiresIn = recipient.getExpireMessages() * 1000;
|
2017-08-17 04:49:41 +00:00
|
|
|
boolean initiating = threadId == -1;
|
2017-05-12 05:46:35 +00:00
|
|
|
AudioSlide audioSlide = new AudioSlide(ConversationActivity.this, result.first, result.second, MediaUtil.AUDIO_AAC, true);
|
2016-02-06 00:10:33 +00:00
|
|
|
SlideDeck slideDeck = new SlideDeck();
|
2015-11-18 22:52:26 +00:00
|
|
|
slideDeck.addSlide(audioSlide);
|
|
|
|
|
2017-08-17 04:49:41 +00:00
|
|
|
sendMediaMessage(forceSms, "", slideDeck, expiresIn, subscriptionId, initiating).addListener(new AssertedSuccessListener<Void>() {
|
2015-11-18 22:52:26 +00:00
|
|
|
@Override
|
|
|
|
public void onSuccess(Void nothing) {
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
PersistentBlobProvider.getInstance(ConversationActivity.this).delete(result.first);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
});
|
2015-11-22 18:44:44 +00:00
|
|
|
} catch (InvalidMessageException e) {
|
2015-11-18 22:52:26 +00:00
|
|
|
Log.w(TAG, e);
|
2015-11-20 18:25:08 +00:00
|
|
|
Toast.makeText(ConversationActivity.this, R.string.ConversationActivity_error_sending_voice_message, Toast.LENGTH_LONG).show();
|
2015-11-18 22:52:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFailure(ExecutionException e) {
|
|
|
|
Toast.makeText(ConversationActivity.this, R.string.ConversationActivity_unable_to_record_audio, Toast.LENGTH_LONG).show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRecorderCanceled() {
|
|
|
|
Vibrator vibrator = (Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
|
|
|
|
vibrator.vibrate(50);
|
2017-02-16 20:28:06 +00:00
|
|
|
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
|
2015-11-18 22:52:26 +00:00
|
|
|
|
|
|
|
ListenableFuture<Pair<Uri, Long>> future = audioRecorder.stopRecording();
|
|
|
|
future.addListener(new ListenableFuture.Listener<Pair<Uri, Long>>() {
|
|
|
|
@Override
|
|
|
|
public void onSuccess(final Pair<Uri, Long> result) {
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
PersistentBlobProvider.getInstance(ConversationActivity.this).delete(result.first);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFailure(ExecutionException e) {}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-11-22 18:44:53 +00:00
|
|
|
@Override
|
|
|
|
public void onEmojiToggle() {
|
2017-01-19 19:31:41 +00:00
|
|
|
if (!emojiDrawerStub.resolved()) {
|
|
|
|
inputPanel.setEmojiDrawer(emojiDrawerStub.get());
|
|
|
|
emojiDrawerStub.get().setEmojiEventListener(inputPanel);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (container.getCurrentInput() == emojiDrawerStub.get()) {
|
|
|
|
container.showSoftkey(composeText);
|
|
|
|
} else {
|
|
|
|
container.show(composeText, emojiDrawerStub.get());
|
|
|
|
}
|
2015-11-22 18:44:53 +00:00
|
|
|
}
|
|
|
|
|
2016-12-26 23:14:23 +00:00
|
|
|
@Override
|
|
|
|
public void onMediaSelected(@NonNull Uri uri, String contentType) {
|
|
|
|
if (!TextUtils.isEmpty(contentType) && contentType.trim().equals("image/gif")) {
|
|
|
|
setMedia(uri, MediaType.GIF);
|
2017-05-08 22:32:59 +00:00
|
|
|
} else if (MediaUtil.isImageType(contentType)) {
|
2016-12-26 23:14:23 +00:00
|
|
|
setMedia(uri, MediaType.IMAGE);
|
2017-05-08 22:32:59 +00:00
|
|
|
} else if (MediaUtil.isVideoType(contentType)) {
|
2016-12-26 23:14:23 +00:00
|
|
|
setMedia(uri, MediaType.VIDEO);
|
2017-05-08 22:32:59 +00:00
|
|
|
} else if (MediaUtil.isAudioType(contentType)) {
|
2016-12-26 23:14:23 +00:00
|
|
|
setMedia(uri, MediaType.AUDIO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
// Listeners
|
|
|
|
|
2015-10-28 16:47:09 +00:00
|
|
|
private class AttachmentTypeListener implements AttachmentTypeSelector.AttachmentClickedListener {
|
2013-02-03 04:37:40 +00:00
|
|
|
@Override
|
2015-10-28 16:47:09 +00:00
|
|
|
public void onClick(int type) {
|
|
|
|
addAttachment(type);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
2016-11-26 06:37:23 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onQuickAttachment(Uri uri) {
|
|
|
|
Intent intent = new Intent();
|
|
|
|
intent.setData(uri);
|
|
|
|
|
2017-04-18 23:33:03 +00:00
|
|
|
onActivityResult(PICK_GALLERY, RESULT_OK, intent);
|
2016-11-26 06:37:23 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2015-11-18 22:52:26 +00:00
|
|
|
private class QuickCameraToggleListener implements OnClickListener {
|
2015-04-16 05:38:33 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2015-07-18 21:06:02 +00:00
|
|
|
if (!quickAttachmentDrawer.isShowing()) {
|
|
|
|
composeText.clearFocus();
|
|
|
|
container.show(composeText, quickAttachmentDrawer);
|
|
|
|
} else {
|
|
|
|
container.hideAttachedInput(false);
|
|
|
|
}
|
2015-04-16 05:38:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private class SendButtonListener implements OnClickListener, TextView.OnEditorActionListener {
|
2013-02-03 04:37:40 +00:00
|
|
|
@Override
|
2012-07-19 21:22:03 +00:00
|
|
|
public void onClick(View v) {
|
2014-07-19 02:31:03 +00:00
|
|
|
sendMessage();
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
2013-02-03 04:37:40 +00:00
|
|
|
@Override
|
2012-07-19 21:22:03 +00:00
|
|
|
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
|
|
|
|
if (actionId == EditorInfo.IME_ACTION_SEND) {
|
|
|
|
sendButton.performClick();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-26 01:59:49 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-05-18 17:26:32 +00:00
|
|
|
private class AttachButtonListener implements OnClickListener {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
handleAddAttachment();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-26 21:49:43 +00:00
|
|
|
private class AttachButtonLongClickListener implements View.OnLongClickListener {
|
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View v) {
|
|
|
|
return sendButton.performLongClick();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-29 03:53:34 +00:00
|
|
|
private class ComposeKeyPressedListener implements OnKeyListener, OnClickListener, TextWatcher, OnFocusChangeListener {
|
2015-05-18 17:26:32 +00:00
|
|
|
|
|
|
|
int beforeLength;
|
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
@Override
|
|
|
|
public boolean onKey(View v, int keyCode, KeyEvent event) {
|
|
|
|
if (event.getAction() == KeyEvent.ACTION_DOWN) {
|
|
|
|
if (keyCode == KeyEvent.KEYCODE_ENTER) {
|
2013-07-10 01:26:18 +00:00
|
|
|
if (TextSecurePreferences.isEnterSendsEnabled(ConversationActivity.this)) {
|
2013-06-28 03:57:27 +00:00
|
|
|
sendButton.dispatchKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_ENTER));
|
|
|
|
sendButton.dispatchKeyEvent(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_ENTER));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2015-07-24 20:22:28 +00:00
|
|
|
container.showSoftkey(composeText);
|
2013-06-28 03:57:27 +00:00
|
|
|
}
|
|
|
|
|
2015-05-18 17:26:32 +00:00
|
|
|
@Override
|
|
|
|
public void beforeTextChanged(CharSequence s, int start, int count,int after) {
|
2017-07-04 17:09:36 +00:00
|
|
|
beforeLength = composeText.getTextTrimmed().length();
|
2015-05-18 17:26:32 +00:00
|
|
|
}
|
|
|
|
|
2013-02-03 04:37:40 +00:00
|
|
|
@Override
|
2012-07-19 21:22:03 +00:00
|
|
|
public void afterTextChanged(Editable s) {
|
|
|
|
calculateCharactersRemaining();
|
2015-05-18 17:26:32 +00:00
|
|
|
|
2017-07-04 17:09:36 +00:00
|
|
|
if (composeText.getTextTrimmed().length() == 0 || beforeLength == 0) {
|
2015-05-22 20:30:34 +00:00
|
|
|
composeText.postDelayed(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
updateToggleButtonState();
|
|
|
|
}
|
|
|
|
}, 50);
|
2015-05-18 17:26:32 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
2015-05-18 17:26:32 +00:00
|
|
|
|
2013-02-03 04:37:40 +00:00
|
|
|
@Override
|
2012-07-19 21:22:03 +00:00
|
|
|
public void onTextChanged(CharSequence s, int start, int before,int count) {}
|
2014-05-29 03:53:34 +00:00
|
|
|
|
|
|
|
@Override
|
2015-07-24 20:22:28 +00:00
|
|
|
public void onFocusChange(View v, boolean hasFocus) {}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
2012-08-04 00:34:09 +00:00
|
|
|
|
2015-03-31 20:36:04 +00:00
|
|
|
@Override
|
|
|
|
public void setThreadId(long threadId) {
|
|
|
|
this.threadId = threadId;
|
|
|
|
}
|
|
|
|
|
2014-04-15 10:43:14 +00:00
|
|
|
@Override
|
|
|
|
public void onAttachmentChanged() {
|
2017-03-14 20:24:24 +00:00
|
|
|
handleSecurityChange(isSecureText, isDefaultSms);
|
2015-05-18 17:26:32 +00:00
|
|
|
updateToggleButtonState();
|
2014-04-15 10:43:14 +00:00
|
|
|
}
|
2015-09-05 00:33:22 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
private class RecipientPreferencesTask extends AsyncTask<Recipient, Void, Pair<Recipient,RecipientsPreferences>> {
|
2015-10-14 04:44:01 +00:00
|
|
|
@Override
|
2017-08-01 15:56:00 +00:00
|
|
|
protected Pair<Recipient, RecipientsPreferences> doInBackground(Recipient... recipient) {
|
|
|
|
if (recipient.length != 1 || recipient[0] == null) {
|
2016-02-06 00:10:33 +00:00
|
|
|
throw new AssertionError("task needs exactly one Recipients object");
|
|
|
|
}
|
2015-10-14 04:44:01 +00:00
|
|
|
|
|
|
|
Optional<RecipientsPreferences> prefs = DatabaseFactory.getRecipientPreferenceDatabase(ConversationActivity.this)
|
2017-08-01 15:56:00 +00:00
|
|
|
.getRecipientsPreferences(recipient[0].getAddress());
|
|
|
|
return new Pair<>(recipient[0], prefs.orNull());
|
2015-10-14 04:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-08-01 15:56:00 +00:00
|
|
|
protected void onPostExecute(@NonNull Pair<Recipient, RecipientsPreferences> result) {
|
|
|
|
if (result.first == recipient) {
|
2016-02-06 00:10:33 +00:00
|
|
|
updateInviteReminder(result.second != null && result.second.hasSeenInviteReminder());
|
|
|
|
updateDefaultSubscriptionId(result.second != null ? result.second.getDefaultSubscriptionId() : Optional.<Integer>absent());
|
2015-10-14 04:44:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-07 01:03:09 +00:00
|
|
|
|
|
|
|
private class UnverifiedDismissedListener implements UnverifiedBannerView.DismissListener {
|
|
|
|
@Override
|
|
|
|
public void onDismissed(final List<IdentityRecord> unverifiedIdentities) {
|
|
|
|
final IdentityDatabase identityDatabase = DatabaseFactory.getIdentityDatabase(ConversationActivity.this);
|
|
|
|
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
synchronized (SESSION_LOCK) {
|
|
|
|
for (IdentityRecord identityRecord : unverifiedIdentities) {
|
2017-07-26 16:59:15 +00:00
|
|
|
identityDatabase.setVerified(identityRecord.getAddress(),
|
2017-06-07 01:03:09 +00:00
|
|
|
identityRecord.getIdentityKey(),
|
|
|
|
VerifiedStatus.DEFAULT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Void result) {
|
|
|
|
initializeIdentityRecords();
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class UnverifiedClickedListener implements UnverifiedBannerView.ClickListener {
|
|
|
|
@Override
|
|
|
|
public void onClicked(final List<IdentityRecord> unverifiedIdentities) {
|
|
|
|
Log.w(TAG, "onClicked: " + unverifiedIdentities.size());
|
|
|
|
if (unverifiedIdentities.size() == 1) {
|
|
|
|
Intent intent = new Intent(ConversationActivity.this, VerifyIdentityActivity.class);
|
2017-07-26 16:59:15 +00:00
|
|
|
intent.putExtra(VerifyIdentityActivity.ADDRESS_EXTRA, unverifiedIdentities.get(0).getAddress());
|
2017-06-07 01:03:09 +00:00
|
|
|
intent.putExtra(VerifyIdentityActivity.IDENTITY_EXTRA, new IdentityKeyParcelable(unverifiedIdentities.get(0).getIdentityKey()));
|
|
|
|
intent.putExtra(VerifyIdentityActivity.VERIFIED_EXTRA, false);
|
|
|
|
|
|
|
|
startActivity(intent);
|
|
|
|
} else {
|
|
|
|
String[] unverifiedNames = new String[unverifiedIdentities.size()];
|
|
|
|
|
|
|
|
for (int i=0;i<unverifiedIdentities.size();i++) {
|
2017-08-22 01:32:38 +00:00
|
|
|
unverifiedNames[i] = Recipient.from(ConversationActivity.this, unverifiedIdentities.get(i).getAddress(), false).toShortString();
|
2017-06-07 01:03:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(ConversationActivity.this);
|
|
|
|
builder.setIconAttribute(R.attr.dialog_alert_icon);
|
|
|
|
builder.setTitle("No longer verified");
|
|
|
|
builder.setItems(unverifiedNames, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
Intent intent = new Intent(ConversationActivity.this, VerifyIdentityActivity.class);
|
2017-07-26 16:59:15 +00:00
|
|
|
intent.putExtra(VerifyIdentityActivity.ADDRESS_EXTRA, unverifiedIdentities.get(which).getAddress());
|
2017-06-07 01:03:09 +00:00
|
|
|
intent.putExtra(VerifyIdentityActivity.IDENTITY_EXTRA, new IdentityKeyParcelable(unverifiedIdentities.get(which).getIdentityKey()));
|
|
|
|
intent.putExtra(VerifyIdentityActivity.VERIFIED_EXTRA, false);
|
|
|
|
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|