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;
|
|
|
|
|
2013-03-06 03:32:15 +00:00
|
|
|
import android.app.Activity;
|
|
|
|
import android.app.AlertDialog;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.IntentFilter;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.AsyncTask;
|
|
|
|
import android.os.Build;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.preference.PreferenceManager;
|
|
|
|
import android.telephony.PhoneNumberUtils;
|
|
|
|
import android.text.Editable;
|
|
|
|
import android.text.TextWatcher;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.ContextMenu;
|
|
|
|
import android.view.KeyEvent;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.View.OnClickListener;
|
|
|
|
import android.view.View.OnKeyListener;
|
|
|
|
import android.view.WindowManager;
|
|
|
|
import android.view.inputmethod.EditorInfo;
|
|
|
|
import android.widget.EditText;
|
|
|
|
import android.widget.ImageButton;
|
|
|
|
import android.widget.TextView;
|
|
|
|
import android.widget.Toast;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2013-02-03 04:37:40 +00:00
|
|
|
import com.actionbarsherlock.view.Menu;
|
|
|
|
import com.actionbarsherlock.view.MenuInflater;
|
|
|
|
import com.actionbarsherlock.view.MenuItem;
|
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.components.RecipientsPanel;
|
|
|
|
import org.thoughtcrime.securesms.crypto.AuthenticityCalculator;
|
|
|
|
import org.thoughtcrime.securesms.crypto.KeyExchangeInitiator;
|
|
|
|
import org.thoughtcrime.securesms.crypto.KeyExchangeProcessor;
|
|
|
|
import org.thoughtcrime.securesms.crypto.KeyUtil;
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterCipher;
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.database.DraftDatabase;
|
|
|
|
import org.thoughtcrime.securesms.database.DraftDatabase.Draft;
|
2013-04-26 01:59:49 +00:00
|
|
|
import org.thoughtcrime.securesms.database.ThreadDatabase;
|
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;
|
|
|
|
import org.thoughtcrime.securesms.mms.AttachmentTypeSelectorAdapter;
|
|
|
|
import org.thoughtcrime.securesms.mms.MediaTooLargeException;
|
|
|
|
import org.thoughtcrime.securesms.mms.MmsSendHelper;
|
|
|
|
import org.thoughtcrime.securesms.mms.Slide;
|
|
|
|
import org.thoughtcrime.securesms.mms.SlideDeck;
|
|
|
|
import org.thoughtcrime.securesms.notifications.MessageNotifier;
|
|
|
|
import org.thoughtcrime.securesms.protocol.Tag;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFormattingException;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
|
|
|
import org.thoughtcrime.securesms.service.KeyCachingService;
|
|
|
|
import org.thoughtcrime.securesms.sms.MessageSender;
|
|
|
|
import org.thoughtcrime.securesms.sms.OutgoingEncryptedMessage;
|
|
|
|
import org.thoughtcrime.securesms.sms.OutgoingTextMessage;
|
2013-05-21 17:32:48 +00:00
|
|
|
import org.thoughtcrime.securesms.util.BitmapDecodingException;
|
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.util.CharacterCalculator;
|
|
|
|
import org.thoughtcrime.securesms.util.EncryptedCharacterCalculator;
|
|
|
|
import org.thoughtcrime.securesms.util.InvalidMessageException;
|
|
|
|
import org.thoughtcrime.securesms.util.MemoryCleaner;
|
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import ws.com.google.android.mms.MmsException;
|
2013-02-03 04:37:40 +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
|
|
|
|
*
|
|
|
|
*/
|
2013-02-11 01:30:51 +00:00
|
|
|
public class ConversationActivity extends PassphraseRequiredSherlockFragmentActivity
|
2012-08-04 00:34:09 +00:00
|
|
|
implements ConversationFragment.ConversationFragmentListener
|
2013-04-26 01:59:49 +00:00
|
|
|
{
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2013-04-26 01:59:49 +00:00
|
|
|
public static final String RECIPIENTS_EXTRA = "recipients";
|
|
|
|
public static final String THREAD_ID_EXTRA = "thread_id";
|
|
|
|
public static final String MASTER_SECRET_EXTRA = "master_secret";
|
|
|
|
public static final String DRAFT_TEXT_EXTRA = "draft_text";
|
|
|
|
public static final String DRAFT_IMAGE_EXTRA = "draft_image";
|
|
|
|
public static final String DRAFT_AUDIO_EXTRA = "draft_audio";
|
|
|
|
public static final String DISTRIBUTION_TYPE_EXTRA = "distribution_type";
|
2013-02-03 04:37:40 +00:00
|
|
|
|
|
|
|
private static final int PICK_CONTACT = 1;
|
|
|
|
private static final int PICK_IMAGE = 2;
|
|
|
|
private static final int PICK_VIDEO = 3;
|
|
|
|
private static final int PICK_AUDIO = 4;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
private MasterSecret masterSecret;
|
|
|
|
private RecipientsPanel recipientsPanel;
|
|
|
|
private EditText composeText;
|
|
|
|
private ImageButton addContactButton;
|
2013-03-06 03:32:15 +00:00
|
|
|
private ImageButton sendButton;
|
2012-07-19 21:22:03 +00:00
|
|
|
private TextView charactersLeft;
|
|
|
|
|
|
|
|
private AttachmentTypeSelectorAdapter attachmentAdapter;
|
|
|
|
private AttachmentManager attachmentManager;
|
|
|
|
private BroadcastReceiver securityUpdateReceiver;
|
|
|
|
|
|
|
|
private Recipients recipients;
|
|
|
|
private long threadId;
|
2013-04-26 01:59:49 +00:00
|
|
|
private int distributionType;
|
2012-10-22 00:41:44 +00:00
|
|
|
private boolean isEncryptedConversation;
|
2013-03-05 01:43:04 +00:00
|
|
|
private boolean isMmsEnabled = true;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
private CharacterCalculator characterCalculator = new CharacterCalculator();
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle state) {
|
|
|
|
super.onCreate(state);
|
|
|
|
|
|
|
|
setContentView(R.layout.conversation_activity);
|
|
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
|
|
|
|
initializeReceivers();
|
|
|
|
initializeResources();
|
2013-02-03 04:37:40 +00:00
|
|
|
initializeDraft();
|
2012-07-19 21:22:03 +00:00
|
|
|
initializeTitleBar();
|
|
|
|
}
|
|
|
|
|
2013-02-04 02:41:34 +00:00
|
|
|
@Override
|
2013-03-05 01:43:04 +00:00
|
|
|
protected void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
|
|
|
|
if (!isExistingConversation())
|
|
|
|
initializeRecipientsInput();
|
2013-02-04 02:41:34 +00:00
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
@Override
|
|
|
|
protected void onResume() {
|
|
|
|
super.onResume();
|
2012-08-02 00:39:36 +00:00
|
|
|
initializeSecurity();
|
2012-07-19 21:22:03 +00:00
|
|
|
initializeTitleBar();
|
2013-03-05 01:43:04 +00:00
|
|
|
initializeMmsEnabledCheck();
|
2012-07-19 21:22:03 +00:00
|
|
|
calculateCharactersRemaining();
|
2013-02-04 02:41:34 +00:00
|
|
|
|
|
|
|
MessageNotifier.setVisibleThread(threadId);
|
|
|
|
markThreadAsRead();
|
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);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onDestroy() {
|
|
|
|
unregisterReceiver(securityUpdateReceiver);
|
2013-02-04 08:13:07 +00:00
|
|
|
saveDraft();
|
2012-07-19 21:22:03 +00:00
|
|
|
MemoryCleaner.clean(masterSecret);
|
|
|
|
super.onDestroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onActivityResult(int reqCode, int resultCode, Intent data) {
|
|
|
|
Log.w("ComposeMessageActivity", "onActivityResult called: " + resultCode + " , " + data);
|
|
|
|
super.onActivityResult(reqCode, resultCode, data);
|
|
|
|
|
|
|
|
if (data == null || resultCode != Activity.RESULT_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (reqCode) {
|
|
|
|
case PICK_CONTACT:
|
2013-04-26 01:59:49 +00:00
|
|
|
Recipients recipients = data.getParcelableExtra("recipients");
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
if (recipients != null)
|
|
|
|
recipientsPanel.addRecipients(recipients);
|
|
|
|
|
|
|
|
break;
|
|
|
|
case PICK_IMAGE:
|
|
|
|
addAttachmentImage(data.getData());
|
|
|
|
break;
|
|
|
|
case PICK_VIDEO:
|
|
|
|
addAttachmentVideo(data.getData());
|
|
|
|
break;
|
|
|
|
case PICK_AUDIO:
|
|
|
|
addAttachmentAudio(data.getData());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onPrepareOptionsMenu(Menu menu) {
|
|
|
|
MenuInflater inflater = this.getSupportMenuInflater();
|
|
|
|
menu.clear();
|
|
|
|
|
2012-10-22 00:41:44 +00:00
|
|
|
if (isSingleConversation() && isEncryptedConversation)
|
2012-07-19 21:22:03 +00:00
|
|
|
{
|
|
|
|
if (isAuthenticatedSession()) {
|
|
|
|
inflater.inflate(R.menu.conversation_secure_verified, menu);
|
|
|
|
} else {
|
|
|
|
inflater.inflate(R.menu.conversation_secure_unverified, menu);
|
|
|
|
}
|
2012-08-02 00:39:36 +00:00
|
|
|
} else if (isSingleConversation()) {
|
2012-07-19 21:22:03 +00:00
|
|
|
inflater.inflate(R.menu.conversation_insecure, menu);
|
|
|
|
}
|
|
|
|
|
2012-08-08 02:03:28 +00:00
|
|
|
if (isSingleConversation()) {
|
|
|
|
inflater.inflate(R.menu.conversation_callable, 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
|
|
|
|
|
|
|
if (distributionType == ThreadDatabase.DistributionTypes.BROADCAST)
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.menu_distribution_broadcast).setChecked(true);
|
|
|
|
} else {
|
|
|
|
menu.findItem(R.id.menu_distribution_conversation).setChecked(true);
|
|
|
|
}
|
2012-08-08 02:03:28 +00:00
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
inflater.inflate(R.menu.conversation, menu);
|
|
|
|
super.onPrepareOptionsMenu(menu);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
super.onOptionsItemSelected(item);
|
|
|
|
switch (item.getItemId()) {
|
2013-04-26 01:59:49 +00:00
|
|
|
case R.id.menu_call: handleDial(getRecipients().getPrimaryRecipient()); return true;
|
|
|
|
case R.id.menu_delete_thread: handleDeleteThread(); return true;
|
|
|
|
case R.id.menu_add_attachment: handleAddAttachment(); return true;
|
|
|
|
case R.id.menu_start_secure_session: handleStartSecureSession(); return true;
|
|
|
|
case R.id.menu_abort_session: handleAbortSecureSession(); return true;
|
|
|
|
case R.id.menu_verify_recipient: handleVerifyRecipient(); return true;
|
|
|
|
case R.id.menu_verify_session: handleVerifySession(); return true;
|
|
|
|
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;
|
|
|
|
case android.R.id.home: handleReturnToConversationList(); return true;
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu (ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
|
2012-10-22 00:41:44 +00:00
|
|
|
if (isEncryptedConversation) {
|
2012-07-19 21:22:03 +00:00
|
|
|
android.view.MenuInflater inflater = getMenuInflater();
|
|
|
|
inflater.inflate(R.menu.conversation_button_context, menu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(android.view.MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
2012-10-22 00:41:44 +00:00
|
|
|
case R.id.menu_context_send_unencrypted: sendMessage(true); return true;
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////// Event Handlers
|
|
|
|
|
2013-02-17 19:42:30 +00:00
|
|
|
private void handleReturnToConversationList() {
|
|
|
|
Intent intent = new Intent(this, ConversationListActivity.class);
|
|
|
|
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
|
|
|
intent.putExtra("master_secret", masterSecret);
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private void handleVerifyRecipient() {
|
|
|
|
Intent verifyIdentityIntent = new Intent(this, VerifyIdentityActivity.class);
|
2012-08-02 00:39:36 +00:00
|
|
|
verifyIdentityIntent.putExtra("recipient", getRecipients().getPrimaryRecipient());
|
2012-07-19 21:22:03 +00:00
|
|
|
verifyIdentityIntent.putExtra("master_secret", masterSecret);
|
|
|
|
startActivity(verifyIdentityIntent);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleVerifySession() {
|
|
|
|
Intent verifyKeysIntent = new Intent(this, VerifyKeysActivity.class);
|
2012-08-02 00:39:36 +00:00
|
|
|
verifyKeysIntent.putExtra("recipient", getRecipients().getPrimaryRecipient());
|
2012-07-19 21:22:03 +00:00
|
|
|
verifyKeysIntent.putExtra("master_secret", masterSecret);
|
|
|
|
startActivity(verifyKeysIntent);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleStartSecureSession() {
|
2012-08-02 00:39:36 +00:00
|
|
|
final Recipient recipient = getRecipients().getPrimaryRecipient();
|
2012-07-19 21:22:03 +00:00
|
|
|
String recipientName = (recipient.getName() == null ? recipient.getNumber() : recipient.getName());
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2012-09-20 02:56:04 +00:00
|
|
|
builder.setTitle(R.string.ConversationActivity_initiate_secure_session_question);
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.setIcon(android.R.drawable.ic_dialog_info);
|
|
|
|
builder.setCancelable(true);
|
2012-09-20 02:56:04 +00:00
|
|
|
builder.setMessage(String.format(getString(R.string.ConversationActivity_initiate_secure_session_with_s_question),
|
|
|
|
recipientName));
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
KeyExchangeInitiator.initiate(ConversationActivity.this, masterSecret,
|
2012-08-02 00:39:36 +00:00
|
|
|
recipient, true);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
builder.setNegativeButton(R.string.no, null);
|
|
|
|
builder.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleAbortSecureSession() {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2012-09-20 02:56:04 +00:00
|
|
|
builder.setTitle(R.string.ConversationActivity_abort_secure_session_confirmation);
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.setIcon(android.R.drawable.ic_dialog_alert);
|
|
|
|
builder.setCancelable(true);
|
2012-09-20 02:56:04 +00:00
|
|
|
builder.setMessage(R.string.ConversationActivity_are_you_sure_that_you_want_to_abort_this_secure_session_question);
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2012-08-02 00:39:36 +00:00
|
|
|
if (isSingleConversation()) {
|
|
|
|
KeyUtil.abortSessionFor(ConversationActivity.this, getRecipients().getPrimaryRecipient());
|
|
|
|
initializeSecurity();
|
2012-07-19 21:22:03 +00:00
|
|
|
initializeTitleBar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.no, null);
|
|
|
|
builder.show();
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private void handleDial(Recipient recipient) {
|
|
|
|
if (recipient == null) return;
|
|
|
|
|
|
|
|
Intent dialIntent = new Intent(Intent.ACTION_DIAL,
|
|
|
|
Uri.parse("tel:" + recipient.getNumber()));
|
|
|
|
startActivity(dialIntent);
|
|
|
|
}
|
|
|
|
|
2012-10-21 21:34:09 +00:00
|
|
|
private void handleDisplayGroupRecipients() {
|
|
|
|
List<String> recipientStrings = new LinkedList<String>();
|
|
|
|
|
|
|
|
for (Recipient recipient : getRecipients().getRecipientsList()) {
|
2013-03-08 01:47:57 +00:00
|
|
|
recipientStrings.add(recipient.toShortString());
|
2012-10-21 21:34:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(R.string.ConversationActivity_group_conversation_recipients);
|
|
|
|
builder.setIcon(R.drawable.ic_groups_holo_dark);
|
|
|
|
builder.setCancelable(true);
|
|
|
|
builder.setItems(recipientStrings.toArray(new String[]{}), null);
|
|
|
|
builder.setPositiveButton(android.R.string.ok, null);
|
|
|
|
builder.show();
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private void handleDeleteThread() {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2012-09-20 02:56:04 +00:00
|
|
|
builder.setTitle(R.string.ConversationActivity_delete_thread_confirmation);
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.setIcon(android.R.drawable.ic_dialog_alert);
|
|
|
|
builder.setCancelable(true);
|
2012-09-20 02:56:04 +00:00
|
|
|
builder.setMessage(R.string.ConversationActivity_are_you_sure_that_you_want_to_permanently_delete_this_conversation_question);
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
if (threadId > 0) {
|
|
|
|
DatabaseFactory.getThreadDatabase(ConversationActivity.this).deleteConversation(threadId);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
builder.setNegativeButton(R.string.no, null);
|
|
|
|
builder.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleAddAttachment() {
|
2013-03-05 01:43:04 +00:00
|
|
|
if (this.isMmsEnabled) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setIcon(R.drawable.ic_dialog_attach);
|
|
|
|
builder.setTitle(R.string.ConversationActivity_add_attachment);
|
|
|
|
builder.setAdapter(attachmentAdapter, new AttachmentTypeListener());
|
|
|
|
builder.show();
|
|
|
|
} else {
|
|
|
|
startActivity(new Intent(this, PromptApnActivity.class));
|
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///// Initializers
|
|
|
|
|
|
|
|
private void initializeTitleBar() {
|
|
|
|
String title = null;
|
|
|
|
String subtitle = null;
|
|
|
|
|
2012-08-02 00:39:36 +00:00
|
|
|
if (isSingleConversation()) {
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2012-10-22 00:41:44 +00:00
|
|
|
if (isEncryptedConversation) {
|
2012-07-19 21:22:03 +00:00
|
|
|
title = AuthenticityCalculator.getAuthenticatedName(this,
|
2012-08-02 00:39:36 +00:00
|
|
|
getRecipients().getPrimaryRecipient(),
|
2012-07-19 21:22:03 +00:00
|
|
|
masterSecret);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (title == null || title.trim().length() == 0) {
|
2012-08-02 00:39:36 +00:00
|
|
|
title = getRecipients().getPrimaryRecipient().getName();
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (title == null || title.trim().length() == 0) {
|
2012-08-02 00:39:36 +00:00
|
|
|
title = getRecipients().getPrimaryRecipient().getNumber();
|
2012-07-19 21:22:03 +00:00
|
|
|
} else {
|
2012-08-02 00:39:36 +00:00
|
|
|
subtitle = getRecipients().getPrimaryRecipient().getNumber();
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
2012-10-21 21:34:09 +00:00
|
|
|
} else if (isGroupConversation()) {
|
|
|
|
title = getString(R.string.ConversationActivity_group_conversation);
|
|
|
|
subtitle = String.format(getString(R.string.ConversationActivity_d_recipients_in_group),
|
|
|
|
getRecipients().getRecipientsList().size());
|
2012-07-19 21:22:03 +00:00
|
|
|
} else {
|
2012-09-20 02:56:04 +00:00
|
|
|
title = getString(R.string.ConversationActivity_compose_message);
|
2012-08-02 00:39:36 +00:00
|
|
|
subtitle = "";
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.getSupportActionBar().setTitle(title);
|
|
|
|
|
|
|
|
if (subtitle != null)
|
|
|
|
this.getSupportActionBar().setSubtitle(PhoneNumberUtils.formatNumber(subtitle));
|
|
|
|
|
|
|
|
this.invalidateOptionsMenu();
|
|
|
|
}
|
|
|
|
|
2013-02-03 04:37:40 +00:00
|
|
|
private void initializeDraft() {
|
|
|
|
String draftText = getIntent().getStringExtra(DRAFT_TEXT_EXTRA);
|
|
|
|
Uri draftImage = getIntent().getParcelableExtra(DRAFT_IMAGE_EXTRA);
|
|
|
|
Uri draftAudio = getIntent().getParcelableExtra(DRAFT_AUDIO_EXTRA);
|
|
|
|
|
|
|
|
if (draftText != null) composeText.setText(draftText);
|
|
|
|
if (draftImage != null) addAttachmentImage(draftImage);
|
|
|
|
if (draftAudio != null) addAttachmentAudio(draftAudio);
|
2013-02-04 08:13:07 +00:00
|
|
|
|
|
|
|
if (draftText == null && draftImage == null && draftAudio == null) {
|
|
|
|
initializeDraftFromDatabase();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
if (draft.getType().equals(Draft.TEXT)) composeText.setText(draft.getValue());
|
|
|
|
else if (draft.getType().equals(Draft.IMAGE)) addAttachmentImage(Uri.parse(draft.getValue()));
|
|
|
|
else if (draft.getType().equals(Draft.AUDIO)) addAttachmentAudio(Uri.parse(draft.getValue()));
|
|
|
|
else if (draft.getType().equals(Draft.VIDEO)) addAttachmentVideo(Uri.parse(draft.getValue()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}.execute();
|
2013-02-03 04:37:40 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 00:39:36 +00:00
|
|
|
private void initializeSecurity() {
|
|
|
|
if (isSingleConversation() &&
|
|
|
|
KeyUtil.isSessionFor(this, getRecipients().getPrimaryRecipient()))
|
2012-07-19 21:22:03 +00:00
|
|
|
{
|
2013-03-06 03:32:15 +00:00
|
|
|
sendButton.setImageResource(R.drawable.ic_send_encrypted_holo_light);
|
2012-10-22 00:41:44 +00:00
|
|
|
this.isEncryptedConversation = true;
|
|
|
|
this.characterCalculator = new EncryptedCharacterCalculator();
|
2012-07-19 21:22:03 +00:00
|
|
|
} else {
|
2013-03-06 03:32:15 +00:00
|
|
|
sendButton.setImageResource(R.drawable.ic_send_holo_light);
|
2012-10-22 00:41:44 +00:00
|
|
|
this.isEncryptedConversation = false;
|
|
|
|
this.characterCalculator = new CharacterCalculator();
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
calculateCharactersRemaining();
|
|
|
|
}
|
|
|
|
|
2013-03-05 01:43:04 +00:00
|
|
|
private void initializeMmsEnabledCheck() {
|
|
|
|
new AsyncTask<Void, Void, Boolean>() {
|
|
|
|
@Override
|
|
|
|
protected Boolean doInBackground(Void... params) {
|
|
|
|
return MmsSendHelper.hasNecessaryApnDetails(ConversationActivity.this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Boolean isMmsEnabled) {
|
|
|
|
ConversationActivity.this.isMmsEnabled = isMmsEnabled;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private void initializeResources() {
|
|
|
|
recipientsPanel = (RecipientsPanel)findViewById(R.id.recipients);
|
2013-04-26 01:59:49 +00:00
|
|
|
recipients = getIntent().getParcelableExtra(RECIPIENTS_EXTRA);
|
|
|
|
threadId = getIntent().getLongExtra(THREAD_ID_EXTRA, -1);
|
|
|
|
distributionType = getIntent().getIntExtra(DISTRIBUTION_TYPE_EXTRA,
|
|
|
|
ThreadDatabase.DistributionTypes.DEFAULT);
|
2012-07-19 21:22:03 +00:00
|
|
|
addContactButton = (ImageButton)findViewById(R.id.contacts_button);
|
2013-03-06 03:32:15 +00:00
|
|
|
sendButton = (ImageButton)findViewById(R.id.send_button);
|
2012-07-19 21:22:03 +00:00
|
|
|
composeText = (EditText)findViewById(R.id.embedded_text_editor);
|
2013-04-26 01:59:49 +00:00
|
|
|
masterSecret = getIntent().getParcelableExtra(MASTER_SECRET_EXTRA);
|
2012-07-19 21:22:03 +00:00
|
|
|
charactersLeft = (TextView)findViewById(R.id.space_left);
|
|
|
|
|
|
|
|
attachmentAdapter = new AttachmentTypeSelectorAdapter(this);
|
|
|
|
attachmentManager = new AttachmentManager(this);
|
|
|
|
|
|
|
|
SendButtonListener sendButtonListener = new SendButtonListener();
|
|
|
|
|
|
|
|
recipientsPanel.setPanelChangeListener(new RecipientsPanelChangeListener());
|
|
|
|
sendButton.setOnClickListener(sendButtonListener);
|
2013-03-14 00:45:32 +00:00
|
|
|
sendButton.setEnabled(true);
|
2012-07-19 21:22:03 +00:00
|
|
|
addContactButton.setOnClickListener(new AddRecipientButtonListener());
|
|
|
|
composeText.setOnKeyListener(new ComposeKeyPressedListener());
|
|
|
|
composeText.addTextChangedListener(new OnTextChangedListener());
|
|
|
|
composeText.setOnEditorActionListener(sendButtonListener);
|
|
|
|
|
|
|
|
registerForContextMenu(sendButton);
|
|
|
|
|
2012-11-21 02:49:56 +00:00
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
|
|
|
|
getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
if (getIntent().getStringExtra("forwarded_message") != null)
|
2012-11-05 17:45:04 +00:00
|
|
|
composeText.setText(getString(R.string.ConversationActivity_forward_message_prefix)+": " + getIntent().getStringExtra("forwarded_message"));
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeRecipientsInput() {
|
|
|
|
recipientsPanel.setVisibility(View.VISIBLE);
|
|
|
|
|
|
|
|
if (this.recipients != null) {
|
|
|
|
recipientsPanel.addRecipients(this.recipients);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void initializeReceivers() {
|
|
|
|
securityUpdateReceiver = new BroadcastReceiver() {
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
if (intent.getLongExtra("thread_id", -1) == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (intent.getLongExtra("thread_id", -1) == threadId) {
|
2012-08-02 00:39:36 +00:00
|
|
|
initializeSecurity();
|
2012-07-19 21:22:03 +00:00
|
|
|
initializeTitleBar();
|
|
|
|
calculateCharactersRemaining();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
registerReceiver(securityUpdateReceiver,
|
|
|
|
new IntentFilter(KeyExchangeProcessor.SECURITY_UPDATE_EVENT),
|
|
|
|
KeyCachingService.KEY_PERMISSION, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//////// Helper Methods
|
|
|
|
|
|
|
|
private void addAttachment(int type) {
|
|
|
|
Log.w("ComposeMessageActivity", "Selected: " + type);
|
|
|
|
switch (type) {
|
|
|
|
case AttachmentTypeSelectorAdapter.ADD_IMAGE:
|
|
|
|
AttachmentManager.selectImage(this, PICK_IMAGE); break;
|
|
|
|
case AttachmentTypeSelectorAdapter.ADD_VIDEO:
|
|
|
|
AttachmentManager.selectVideo(this, PICK_VIDEO); break;
|
|
|
|
case AttachmentTypeSelectorAdapter.ADD_SOUND:
|
|
|
|
AttachmentManager.selectAudio(this, PICK_AUDIO); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void addAttachmentImage(Uri imageUri) {
|
|
|
|
try {
|
|
|
|
attachmentManager.setImage(imageUri);
|
|
|
|
} catch (IOException e) {
|
2013-05-21 17:32:48 +00:00
|
|
|
Log.w("ConversationActivity", e);
|
|
|
|
attachmentManager.clear();
|
|
|
|
Toast.makeText(this, R.string.ConversationActivity_sorry_there_was_an_error_setting_your_attachment,
|
|
|
|
Toast.LENGTH_LONG).show();
|
|
|
|
} catch (BitmapDecodingException e) {
|
|
|
|
Log.w("ConversationActivity", e);
|
2012-07-19 21:22:03 +00:00
|
|
|
attachmentManager.clear();
|
2012-09-20 02:56:04 +00:00
|
|
|
Toast.makeText(this, R.string.ConversationActivity_sorry_there_was_an_error_setting_your_attachment,
|
2012-07-19 21:22:03 +00:00
|
|
|
Toast.LENGTH_LONG).show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void addAttachmentVideo(Uri videoUri) {
|
|
|
|
try {
|
|
|
|
attachmentManager.setVideo(videoUri);
|
|
|
|
} catch (IOException e) {
|
|
|
|
attachmentManager.clear();
|
2012-09-20 02:56:04 +00:00
|
|
|
Toast.makeText(this, R.string.ConversationActivity_sorry_there_was_an_error_setting_your_attachment,
|
2012-07-19 21:22:03 +00:00
|
|
|
Toast.LENGTH_LONG).show();
|
|
|
|
Log.w("ComposeMessageActivity", e);
|
|
|
|
} catch (MediaTooLargeException e) {
|
|
|
|
attachmentManager.clear();
|
2012-09-20 02:56:04 +00:00
|
|
|
Toast.makeText(this, R.string.ConversationActivity_sorry_the_selected_video_exceeds_message_size_restrictions,
|
2012-07-19 21:22:03 +00:00
|
|
|
Toast.LENGTH_LONG).show();
|
|
|
|
Log.w("ComposeMessageActivity", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void addAttachmentAudio(Uri audioUri) {
|
|
|
|
try {
|
|
|
|
attachmentManager.setAudio(audioUri);
|
|
|
|
} catch (IOException e) {
|
|
|
|
attachmentManager.clear();
|
2012-09-20 02:56:04 +00:00
|
|
|
Toast.makeText(this, R.string.ConversationActivity_sorry_there_was_an_error_setting_your_attachment,
|
2012-07-19 21:22:03 +00:00
|
|
|
Toast.LENGTH_LONG).show();
|
|
|
|
Log.w("ComposeMessageActivity", e);
|
|
|
|
} catch (MediaTooLargeException e) {
|
|
|
|
attachmentManager.clear();
|
2012-09-20 02:56:04 +00:00
|
|
|
Toast.makeText(this, R.string.ConversationActivity_sorry_the_selected_audio_exceeds_message_size_restrictions,
|
2012-07-19 21:22:03 +00:00
|
|
|
Toast.LENGTH_LONG).show();
|
|
|
|
Log.w("ComposeMessageActivity", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-04 08:13:07 +00:00
|
|
|
private List<Draft> getDraftsForCurrentState() {
|
|
|
|
List<Draft> drafts = new LinkedList<Draft>();
|
|
|
|
|
|
|
|
if (!Util.isEmpty(composeText)) {
|
|
|
|
drafts.add(new Draft(Draft.TEXT, composeText.getText().toString()));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Slide slide : attachmentManager.getSlideDeck().getSlides()) {
|
|
|
|
if (slide.hasImage()) drafts.add(new Draft(Draft.IMAGE, slide.getUri().toString()));
|
|
|
|
else if (slide.hasAudio()) drafts.add(new Draft(Draft.AUDIO, slide.getUri().toString()));
|
|
|
|
else if (slide.hasVideo()) drafts.add(new Draft(Draft.VIDEO, slide.getUri().toString()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return drafts;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void saveDraft() {
|
|
|
|
if (this.threadId <= 0 || this.recipients == null || this.recipients.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
final List<Draft> drafts = getDraftsForCurrentState();
|
|
|
|
|
|
|
|
if (drafts.size() <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
final long thisThreadId = this.threadId;
|
|
|
|
final MasterSecret thisMasterSecret = this.masterSecret.parcelClone();
|
|
|
|
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected void onPreExecute() {
|
2013-02-04 19:12:03 +00:00
|
|
|
Toast.makeText(ConversationActivity.this,
|
|
|
|
R.string.ConversationActivity_saving_draft,
|
|
|
|
Toast.LENGTH_SHORT).show();
|
2013-02-04 08:13:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... params) {
|
|
|
|
MasterCipher masterCipher = new MasterCipher(thisMasterSecret);
|
|
|
|
DatabaseFactory.getDraftDatabase(ConversationActivity.this).insertDrafts(masterCipher, thisThreadId, drafts);
|
|
|
|
MemoryCleaner.clean(thisMasterSecret);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute();
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private void calculateCharactersRemaining() {
|
|
|
|
int charactersSpent = composeText.getText().length();
|
|
|
|
CharacterCalculator.CharacterState characterState = characterCalculator.calculateCharacters(charactersSpent);
|
|
|
|
charactersLeft.setText(characterState.charactersRemaining + "/" + characterState.maxMessageSize + " (" + characterState.messagesSpent + ")");
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isExistingConversation() {
|
|
|
|
return this.recipients != null && this.threadId != -1;
|
|
|
|
}
|
|
|
|
|
2012-08-02 00:39:36 +00:00
|
|
|
private boolean isSingleConversation() {
|
|
|
|
return getRecipients() != null && getRecipients().isSingleRecipient();
|
2012-10-21 21:34:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isGroupConversation() {
|
|
|
|
return getRecipients() != null && !getRecipients().isSingleRecipient();
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isAuthenticatedSession() {
|
|
|
|
return AuthenticityCalculator.isAuthenticated(this,
|
2012-08-02 00:39:36 +00:00
|
|
|
getRecipients().getPrimaryRecipient(),
|
2012-07-19 21:22:03 +00:00
|
|
|
masterSecret);
|
|
|
|
}
|
|
|
|
|
2012-08-02 00:39:36 +00:00
|
|
|
private Recipients getRecipients() {
|
|
|
|
try {
|
|
|
|
if (isExistingConversation()) return this.recipients;
|
|
|
|
else return recipientsPanel.getRecipients();
|
|
|
|
} catch (RecipientFormattingException rfe) {
|
|
|
|
Log.w("ConversationActivity", rfe);
|
|
|
|
return null;
|
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private String getMessage() throws InvalidMessageException {
|
2012-09-08 04:21:12 +00:00
|
|
|
String rawText = composeText.getText().toString();
|
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
|
|
|
|
2012-10-22 00:41:44 +00:00
|
|
|
if (!isEncryptedConversation && Tag.isTaggable(this, rawText))
|
2012-09-08 04:21:12 +00:00
|
|
|
rawText = Tag.getTaggedMessage(rawText);
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
return rawText;
|
|
|
|
}
|
|
|
|
|
2013-02-04 02:41:34 +00:00
|
|
|
private void markThreadAsRead() {
|
|
|
|
new AsyncTask<Long, Void, Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Long... params) {
|
|
|
|
DatabaseFactory.getThreadDatabase(ConversationActivity.this).setRead(params[0]);
|
2013-02-08 19:57:54 +00:00
|
|
|
MessageNotifier.updateNotification(ConversationActivity.this, masterSecret);
|
2013-02-04 02:41:34 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute(threadId);
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private void sendComplete(Recipients recipients, long threadId) {
|
|
|
|
attachmentManager.clear();
|
|
|
|
recipientsPanel.disable();
|
|
|
|
composeText.setText("");
|
|
|
|
|
|
|
|
this.recipients = recipients;
|
|
|
|
this.threadId = threadId;
|
|
|
|
|
|
|
|
if (this.recipientsPanel.getVisibility() == View.VISIBLE) {
|
2012-07-31 23:27:58 +00:00
|
|
|
ConversationFragment fragment
|
|
|
|
= (ConversationFragment)this.getSupportFragmentManager()
|
|
|
|
.findFragmentById(R.id.fragment_content);
|
|
|
|
|
|
|
|
fragment.reload(recipients, threadId);
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
this.recipientsPanel.setVisibility(View.GONE);
|
|
|
|
initializeTitleBar();
|
2012-08-02 00:39:36 +00:00
|
|
|
initializeSecurity();
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-22 00:41:44 +00:00
|
|
|
private void sendMessage(boolean forcePlaintext) {
|
2012-07-19 21:22:03 +00:00
|
|
|
try {
|
|
|
|
Recipients recipients = getRecipients();
|
2012-08-02 00:39:36 +00:00
|
|
|
|
|
|
|
if (recipients == null)
|
|
|
|
throw new RecipientFormattingException("Badly formatted");
|
|
|
|
|
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
|
|
|
String body = getMessage();
|
2012-07-19 21:22:03 +00:00
|
|
|
long allocatedThreadId;
|
|
|
|
|
|
|
|
if (attachmentManager.isAttachmentPresent()) {
|
|
|
|
allocatedThreadId = MessageSender.sendMms(ConversationActivity.this, masterSecret, recipients,
|
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
|
|
|
threadId, attachmentManager.getSlideDeck(), body,
|
2013-05-16 20:48:44 +00:00
|
|
|
distributionType, isEncryptedConversation && !forcePlaintext);
|
2013-04-26 01:59:49 +00:00
|
|
|
} else if (recipients.isEmailRecipient() || !recipients.isSingleRecipient()) {
|
2012-07-19 21:22:03 +00:00
|
|
|
allocatedThreadId = MessageSender.sendMms(ConversationActivity.this, masterSecret, recipients,
|
2013-04-26 01:59:49 +00:00
|
|
|
threadId, new SlideDeck(), body, distributionType,
|
2013-05-16 20:48:44 +00:00
|
|
|
isEncryptedConversation && !forcePlaintext);
|
2012-07-19 21:22:03 +00:00
|
|
|
} else {
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
OutgoingTextMessage message;
|
|
|
|
|
|
|
|
if (isEncryptedConversation && !forcePlaintext) {
|
|
|
|
message = new OutgoingEncryptedMessage(recipients, body);
|
|
|
|
} else {
|
|
|
|
message = new OutgoingTextMessage(recipients, body);
|
|
|
|
}
|
|
|
|
|
|
|
|
Log.w("ConversationActivity", "Sending message...");
|
|
|
|
allocatedThreadId = MessageSender.send(ConversationActivity.this, masterSecret,
|
|
|
|
message, threadId);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sendComplete(recipients, allocatedThreadId);
|
|
|
|
} 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();
|
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
|
|
|
Log.w("ConversationActivity", 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();
|
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
|
|
|
Log.w("ConversationActivity", ex);
|
2012-07-19 21:22:03 +00:00
|
|
|
} catch (MmsException e) {
|
|
|
|
Log.w("ComposeMessageActivity", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Listeners
|
|
|
|
|
|
|
|
private class AddRecipientButtonListener implements OnClickListener {
|
2013-02-03 04:37:40 +00:00
|
|
|
@Override
|
2012-07-19 21:22:03 +00:00
|
|
|
public void onClick(View v) {
|
|
|
|
Intent intent = new Intent(ConversationActivity.this, ContactSelectionActivity.class);
|
|
|
|
startActivityForResult(intent, PICK_CONTACT);
|
|
|
|
}
|
2013-04-26 01:59:49 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
private class AttachmentTypeListener implements DialogInterface.OnClickListener {
|
2013-02-03 04:37:40 +00:00
|
|
|
@Override
|
2012-07-19 21:22:03 +00:00
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
addAttachment(attachmentAdapter.buttonToCommand(which));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class RecipientsPanelChangeListener implements RecipientsPanel.RecipientsPanelChangedListener {
|
2013-02-03 04:37:40 +00:00
|
|
|
@Override
|
2012-07-19 21:22:03 +00:00
|
|
|
public void onRecipientsPanelUpdate(Recipients recipients) {
|
2012-08-02 00:39:36 +00:00
|
|
|
initializeSecurity();
|
|
|
|
initializeTitleBar();
|
|
|
|
calculateCharactersRemaining();
|
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) {
|
2012-10-22 00:41:44 +00:00
|
|
|
sendMessage(false);
|
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();
|
|
|
|
composeText.clearFocus();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-26 01:59:49 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
private class OnTextChangedListener implements TextWatcher {
|
2013-02-03 04:37:40 +00:00
|
|
|
@Override
|
2012-07-19 21:22:03 +00:00
|
|
|
public void afterTextChanged(Editable s) {
|
|
|
|
calculateCharactersRemaining();
|
2013-03-14 00:45:32 +00:00
|
|
|
// if (s == null || s.length() == 0) {
|
|
|
|
// sendButton.setClickable(false);
|
|
|
|
// sendButton.setEnabled(false);
|
|
|
|
// sendButton.setColorFilter(0x66FFFFFF);
|
|
|
|
// } else {
|
|
|
|
// sendButton.setClickable(true);
|
|
|
|
// sendButton.setEnabled(true);
|
|
|
|
// sendButton.setColorFilter(null);
|
|
|
|
// }
|
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 void beforeTextChanged(CharSequence s, int start, int count,int after) {}
|
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) {}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private class ComposeKeyPressedListener implements OnKeyListener {
|
2013-02-03 04:37:40 +00:00
|
|
|
@Override
|
2012-07-19 21:22:03 +00:00
|
|
|
public boolean onKey(View v, int keyCode, KeyEvent event) {
|
|
|
|
if (event.getAction() == KeyEvent.ACTION_DOWN) {
|
|
|
|
if (keyCode == KeyEvent.KEYCODE_ENTER) {
|
|
|
|
if (PreferenceManager.getDefaultSharedPreferences(ConversationActivity.this).getBoolean("pref_enter_sends", false)) {
|
|
|
|
sendButton.dispatchKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_ENTER));
|
|
|
|
sendButton.dispatchKeyEvent(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_ENTER));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-08-04 00:34:09 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setComposeText(String text) {
|
|
|
|
this.composeText.setText(text);
|
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|