2012-07-19 21:22:03 +00:00
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
2012-08-04 00:34:09 +00:00
|
|
|
import android.app.Activity;
|
2012-07-19 21:22:03 +00:00
|
|
|
import android.app.AlertDialog;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.os.Handler;
|
|
|
|
import android.support.v4.app.LoaderManager;
|
|
|
|
import android.support.v4.content.Loader;
|
|
|
|
import android.text.ClipboardManager;
|
|
|
|
import android.view.ContextMenu;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.CursorAdapter;
|
|
|
|
|
|
|
|
import com.actionbarsherlock.app.SherlockListFragment;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.database.loaders.ConversationLoader;
|
2012-10-28 23:04:24 +00:00
|
|
|
import org.thoughtcrime.securesms.database.model.MessageRecord;
|
2012-07-19 21:22:03 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
|
|
|
|
|
|
|
import java.sql.Date;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
|
|
|
|
public class ConversationFragment extends SherlockListFragment
|
|
|
|
implements LoaderManager.LoaderCallbacks<Cursor>
|
|
|
|
{
|
|
|
|
|
2012-08-04 00:34:09 +00:00
|
|
|
private ConversationFragmentListener listener;
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private MasterSecret masterSecret;
|
|
|
|
private Recipients recipients;
|
|
|
|
private long threadId;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle bundle) {
|
|
|
|
return inflater.inflate(R.layout.conversation_fragment, container, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onActivityCreated(Bundle bundle) {
|
|
|
|
super.onActivityCreated(bundle);
|
|
|
|
|
|
|
|
initializeResources();
|
|
|
|
initializeListAdapter();
|
|
|
|
registerForContextMenu(getListView());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu (ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
|
|
|
|
android.view.MenuInflater inflater = this.getSherlockActivity().getMenuInflater();
|
|
|
|
menu.clear();
|
|
|
|
|
|
|
|
inflater.inflate(R.menu.conversation_context, menu);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(android.view.MenuItem item) {
|
|
|
|
Cursor cursor = ((CursorAdapter)getListAdapter()).getCursor();
|
|
|
|
ConversationItem conversationItem = (ConversationItem)(((ConversationAdapter)getListAdapter()).newView(getActivity(), cursor, null));
|
|
|
|
MessageRecord messageRecord = conversationItem.getMessageRecord();
|
|
|
|
|
|
|
|
switch(item.getItemId()) {
|
|
|
|
case R.id.menu_context_copy: handleCopyMessage(messageRecord); return true;
|
|
|
|
case R.id.menu_context_delete_message: handleDeleteMessage(messageRecord); return true;
|
|
|
|
case R.id.menu_context_details: handleDisplayDetails(messageRecord); return true;
|
|
|
|
case R.id.menu_context_forward: handleForwardMessage(messageRecord); return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-04 00:34:09 +00:00
|
|
|
@Override
|
|
|
|
public void onAttach(Activity activity) {
|
|
|
|
super.onAttach(activity);
|
|
|
|
this.listener = (ConversationFragmentListener)activity;
|
|
|
|
}
|
|
|
|
|
2012-07-31 23:27:58 +00:00
|
|
|
public void reload(Recipients recipients, long threadId) {
|
|
|
|
this.recipients = recipients;
|
|
|
|
this.threadId = threadId;
|
|
|
|
|
|
|
|
initializeListAdapter();
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
private void handleCopyMessage(MessageRecord message) {
|
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 = message.getDisplayBody().toString();
|
2012-07-19 21:22:03 +00:00
|
|
|
if (body == null) return;
|
|
|
|
|
|
|
|
ClipboardManager clipboard = (ClipboardManager)getActivity()
|
|
|
|
.getSystemService(Context.CLIPBOARD_SERVICE);
|
|
|
|
clipboard.setText(body);
|
|
|
|
}
|
|
|
|
|
2012-10-28 23:04:24 +00:00
|
|
|
private void handleDeleteMessage(final MessageRecord message) {
|
2012-07-19 21:22:03 +00:00
|
|
|
final long messageId = message.getId();
|
|
|
|
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
|
2012-09-22 19:53:56 +00:00
|
|
|
builder.setTitle(R.string.ConversationFragment_confirm_message_delete);
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.setIcon(android.R.drawable.ic_dialog_alert);
|
|
|
|
builder.setCancelable(true);
|
2012-09-22 19:53:56 +00:00
|
|
|
builder.setMessage(R.string.ConversationFragment_are_you_sure_you_want_to_permanently_delete_this_message);
|
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-10-28 23:04:24 +00:00
|
|
|
if (message.isMms()) {
|
2012-07-19 21:22:03 +00:00
|
|
|
DatabaseFactory.getMmsDatabase(getActivity()).delete(messageId);
|
|
|
|
} else {
|
|
|
|
DatabaseFactory.getSmsDatabase(getActivity()).deleteMessage(messageId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
builder.setNegativeButton(R.string.no, null);
|
|
|
|
builder.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleDisplayDetails(MessageRecord message) {
|
2013-04-26 01:59:49 +00:00
|
|
|
String sender = message.getIndividualRecipient().getNumber();
|
2013-01-06 21:13:14 +00:00
|
|
|
String transport = message.isMms() ? "mms" : "sms";
|
|
|
|
long dateReceived = message.getDateReceived();
|
|
|
|
long dateSent = message.getDateSent();
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
SimpleDateFormat dateFormatter = new SimpleDateFormat("EEE MMM d, yyyy 'at' hh:mm:ss a zzz");
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
|
2012-09-20 02:56:04 +00:00
|
|
|
builder.setTitle(R.string.ConversationFragment_message_details);
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.setIcon(android.R.drawable.ic_dialog_info);
|
|
|
|
builder.setCancelable(false);
|
2013-01-06 21:13:14 +00:00
|
|
|
|
|
|
|
if (dateReceived == dateSent || message.isOutgoing()) {
|
|
|
|
builder.setMessage(String.format(getSherlockActivity()
|
|
|
|
.getString(R.string.ConversationFragment_sender_s_transport_s_sent_received_s),
|
|
|
|
sender, transport.toUpperCase(),
|
|
|
|
dateFormatter.format(new Date(dateSent))));
|
|
|
|
} else {
|
|
|
|
builder.setMessage(String.format(getSherlockActivity()
|
|
|
|
.getString(R.string.ConversationFragment_sender_s_transport_s_sent_s_received_s),
|
|
|
|
sender, transport.toUpperCase(),
|
|
|
|
dateFormatter.format(new Date(dateSent)),
|
|
|
|
dateFormatter.format(new Date(dateReceived))));
|
|
|
|
}
|
|
|
|
|
2012-09-08 03:03:23 +00:00
|
|
|
builder.setPositiveButton(android.R.string.ok, null);
|
2012-07-19 21:22:03 +00:00
|
|
|
builder.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleForwardMessage(MessageRecord message) {
|
|
|
|
Intent composeIntent = new Intent(getActivity(), ConversationActivity.class);
|
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
|
|
|
composeIntent.putExtra("forwarded_message", message.getDisplayBody().toString());
|
2012-07-19 21:22:03 +00:00
|
|
|
composeIntent.putExtra("master_secret", masterSecret);
|
|
|
|
startActivity(composeIntent);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeResources() {
|
|
|
|
this.masterSecret = (MasterSecret)this.getActivity().getIntent()
|
|
|
|
.getParcelableExtra("master_secret");
|
|
|
|
this.recipients = this.getActivity().getIntent().getParcelableExtra("recipients");
|
|
|
|
this.threadId = this.getActivity().getIntent().getLongExtra("thread_id", -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeListAdapter() {
|
|
|
|
if (this.recipients != null && this.threadId != -1) {
|
2013-05-05 19:51:36 +00:00
|
|
|
this.setListAdapter(new ConversationAdapter(getActivity(), masterSecret,
|
|
|
|
new FailedIconClickHandler(),
|
|
|
|
!this.recipients.isSingleRecipient()));
|
2013-04-26 18:23:43 +00:00
|
|
|
getListView().setRecyclerListener((ConversationAdapter)getListAdapter());
|
2012-07-31 23:27:58 +00:00
|
|
|
getLoaderManager().initLoader(0, null, this);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Loader<Cursor> onCreateLoader(int arg0, Bundle arg1) {
|
2013-04-26 01:59:49 +00:00
|
|
|
return new ConversationLoader(getActivity(), threadId);
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onLoadFinished(Loader<Cursor> arg0, Cursor cursor) {
|
|
|
|
((CursorAdapter)getListAdapter()).changeCursor(cursor);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onLoaderReset(Loader<Cursor> arg0) {
|
|
|
|
((CursorAdapter)getListAdapter()).changeCursor(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
private class FailedIconClickHandler extends Handler {
|
|
|
|
@Override
|
|
|
|
public void handleMessage(android.os.Message message) {
|
2012-08-04 00:34:09 +00:00
|
|
|
if (listener != null) {
|
|
|
|
listener.setComposeText((String)message.obj);
|
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-04 00:34:09 +00:00
|
|
|
public interface ConversationFragmentListener {
|
|
|
|
public void setComposeText(String text);
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
}
|