2012-09-23 18:13:06 -04:00
|
|
|
package com.fsck.k9.fragment;
|
2008-11-01 17:32:06 -04:00
|
|
|
|
2012-07-12 12:29:41 -04:00
|
|
|
import java.io.File;
|
2012-11-03 00:56:12 -04:00
|
|
|
import java.util.Collections;
|
2012-07-12 12:29:41 -04:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
import android.app.Activity;
|
2008-11-01 17:32:06 -04:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2012-09-13 20:25:39 -04:00
|
|
|
import android.content.SharedPreferences.Editor;
|
2008-11-01 17:32:06 -04:00
|
|
|
import android.net.Uri;
|
2012-09-13 20:25:39 -04:00
|
|
|
import android.os.AsyncTask;
|
2008-11-01 17:32:06 -04:00
|
|
|
import android.os.Bundle;
|
|
|
|
import android.os.Handler;
|
2012-09-26 12:03:14 -04:00
|
|
|
import android.support.v4.app.DialogFragment;
|
|
|
|
import android.support.v4.app.FragmentManager;
|
2008-11-01 17:32:06 -04:00
|
|
|
import android.util.Log;
|
2012-07-12 12:29:41 -04:00
|
|
|
import android.view.KeyEvent;
|
2012-09-26 12:03:14 -04:00
|
|
|
import android.view.LayoutInflater;
|
2012-07-12 12:29:41 -04:00
|
|
|
import android.view.View;
|
2008-11-01 17:32:06 -04:00
|
|
|
import android.view.View.OnClickListener;
|
2012-09-26 12:03:14 -04:00
|
|
|
import android.view.ViewGroup;
|
2012-07-12 12:29:41 -04:00
|
|
|
import android.widget.Toast;
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
import com.actionbarsherlock.app.SherlockFragment;
|
2012-07-12 12:29:41 -04:00
|
|
|
import com.actionbarsherlock.view.Menu;
|
2012-09-26 12:03:14 -04:00
|
|
|
import com.actionbarsherlock.view.MenuInflater;
|
2012-07-12 12:29:41 -04:00
|
|
|
import com.actionbarsherlock.view.MenuItem;
|
|
|
|
import com.fsck.k9.Account;
|
|
|
|
import com.fsck.k9.K9;
|
|
|
|
import com.fsck.k9.Preferences;
|
|
|
|
import com.fsck.k9.R;
|
2012-09-26 12:03:14 -04:00
|
|
|
import com.fsck.k9.activity.ChooseFolder;
|
|
|
|
import com.fsck.k9.activity.MessageReference;
|
2010-05-19 14:17:06 -04:00
|
|
|
import com.fsck.k9.controller.MessagingController;
|
|
|
|
import com.fsck.k9.controller.MessagingListener;
|
2012-09-26 12:03:14 -04:00
|
|
|
import com.fsck.k9.crypto.CryptoProvider.CryptoDecryptCallback;
|
2010-08-22 05:51:17 -04:00
|
|
|
import com.fsck.k9.crypto.PgpData;
|
2012-09-26 12:03:14 -04:00
|
|
|
import com.fsck.k9.fragment.ConfirmationDialogFragment.ConfirmationDialogFragmentListener;
|
2011-04-24 00:00:10 -04:00
|
|
|
import com.fsck.k9.helper.FileBrowserHelper;
|
|
|
|
import com.fsck.k9.helper.FileBrowserHelper.FileBrowserFailOverCallback;
|
2012-07-12 12:29:41 -04:00
|
|
|
import com.fsck.k9.mail.Flag;
|
|
|
|
import com.fsck.k9.mail.Message;
|
|
|
|
import com.fsck.k9.mail.MessagingException;
|
|
|
|
import com.fsck.k9.mail.Part;
|
2012-02-23 21:43:42 -05:00
|
|
|
import com.fsck.k9.mail.store.LocalStore.LocalMessage;
|
2011-01-06 11:56:20 -05:00
|
|
|
import com.fsck.k9.view.AttachmentView;
|
2011-04-24 00:00:10 -04:00
|
|
|
import com.fsck.k9.view.AttachmentView.AttachmentFileDownloadCallback;
|
2012-09-26 12:03:14 -04:00
|
|
|
import com.fsck.k9.view.MessageHeader;
|
2012-07-12 12:29:41 -04:00
|
|
|
import com.fsck.k9.view.SingleMessageView;
|
2010-12-28 04:07:59 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
|
|
|
|
public class MessageViewFragment extends SherlockFragment implements OnClickListener,
|
|
|
|
CryptoDecryptCallback, ConfirmationDialogFragmentListener {
|
|
|
|
|
|
|
|
private static final String ARG_REFERENCE = "reference";
|
|
|
|
|
|
|
|
private static final String STATE_MESSAGE_REFERENCE = "reference";
|
2010-08-22 05:51:17 -04:00
|
|
|
private static final String STATE_PGP_DATA = "pgpData";
|
2012-09-26 12:03:14 -04:00
|
|
|
|
2009-03-05 02:32:45 -05:00
|
|
|
private static final int ACTIVITY_CHOOSE_FOLDER_MOVE = 1;
|
|
|
|
private static final int ACTIVITY_CHOOSE_FOLDER_COPY = 2;
|
2011-04-24 00:00:10 -04:00
|
|
|
private static final int ACTIVITY_CHOOSE_DIRECTORY = 3;
|
2011-02-11 10:09:15 -05:00
|
|
|
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
public static MessageViewFragment newInstance(MessageReference reference) {
|
|
|
|
MessageViewFragment fragment = new MessageViewFragment();
|
|
|
|
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putParcelable(ARG_REFERENCE, reference);
|
|
|
|
fragment.setArguments(args);
|
|
|
|
|
|
|
|
return fragment;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private SingleMessageView mMessageView;
|
2011-02-11 10:09:15 -05:00
|
|
|
private PgpData mPgpData;
|
2012-08-22 09:43:18 -04:00
|
|
|
private Menu mMenu;
|
2008-11-01 17:32:06 -04:00
|
|
|
private Account mAccount;
|
2010-04-24 10:59:27 -04:00
|
|
|
private MessageReference mMessageReference;
|
2008-11-01 17:32:06 -04:00
|
|
|
private Message mMessage;
|
2012-09-26 12:03:14 -04:00
|
|
|
private MessagingController mController;
|
2008-11-01 17:32:06 -04:00
|
|
|
private Listener mListener = new Listener();
|
|
|
|
private MessageViewHandler mHandler = new MessageViewHandler();
|
2010-11-13 16:40:56 -05:00
|
|
|
|
2012-09-13 20:25:39 -04:00
|
|
|
private MenuItem mToggleMessageViewMenu;
|
|
|
|
|
2011-04-24 00:00:10 -04:00
|
|
|
/** this variable is used to save the calling AttachmentView
|
|
|
|
* until the onActivityResult is called.
|
|
|
|
* => with this reference we can identity the caller
|
|
|
|
*/
|
|
|
|
private AttachmentView attachmentTmpStore;
|
|
|
|
|
2011-03-31 22:21:27 -04:00
|
|
|
/**
|
|
|
|
* Used to temporarily store the destination folder for refile operations if a confirmation
|
|
|
|
* dialog is shown.
|
|
|
|
*/
|
|
|
|
private String mDstFolder;
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
private MessageViewFragmentListener mFragmentListener;
|
2008-12-21 12:44:18 -05:00
|
|
|
|
2010-08-29 22:16:20 -04:00
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
class MessageViewHandler extends Handler {
|
2011-01-10 12:47:28 -05:00
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public void progress(final boolean progress) {
|
2012-09-26 12:03:14 -04:00
|
|
|
post(new Runnable() {
|
2011-02-06 17:09:48 -05:00
|
|
|
public void run() {
|
2012-09-26 12:03:14 -04:00
|
|
|
setProgress(progress);
|
2010-01-03 21:06:40 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public void addAttachment(final View attachmentView) {
|
2012-09-26 12:03:14 -04:00
|
|
|
post(new Runnable() {
|
2011-02-06 17:09:48 -05:00
|
|
|
public void run() {
|
2011-02-11 10:09:15 -05:00
|
|
|
mMessageView.addAttachment(attachmentView);
|
2010-01-03 21:06:40 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-02-14 20:26:00 -05:00
|
|
|
/* A helper for a set of "show a toast" methods */
|
|
|
|
private void showToast(final String message, final int toastLength) {
|
2012-09-26 12:03:14 -04:00
|
|
|
post(new Runnable() {
|
2011-02-06 17:09:48 -05:00
|
|
|
public void run() {
|
2012-09-26 12:03:14 -04:00
|
|
|
Toast.makeText(getActivity(), message, toastLength).show();
|
2010-01-03 21:06:40 -05:00
|
|
|
}
|
|
|
|
});
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
2011-02-14 20:26:00 -05:00
|
|
|
public void networkError() {
|
|
|
|
showToast(getString(R.string.status_network_error), Toast.LENGTH_LONG);
|
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public void invalidIdError() {
|
2011-02-14 20:26:00 -05:00
|
|
|
showToast(getString(R.string.status_invalid_id_error), Toast.LENGTH_LONG);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public void fetchingAttachment() {
|
2011-02-14 20:26:00 -05:00
|
|
|
showToast(getString(R.string.message_view_fetching_attachment_toast), Toast.LENGTH_SHORT);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
@Override
|
|
|
|
public void onAttach(Activity activity) {
|
|
|
|
super.onAttach(activity);
|
|
|
|
|
|
|
|
try {
|
|
|
|
mFragmentListener = (MessageViewFragmentListener) activity;
|
|
|
|
} catch (ClassCastException e) {
|
|
|
|
throw new ClassCastException(activity.getClass() +
|
|
|
|
" must implement MessageViewFragmentListener");
|
|
|
|
}
|
2009-11-21 17:45:14 -05:00
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
|
2010-04-16 08:20:10 -04:00
|
|
|
@Override
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
2009-11-19 01:03:59 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
// This fragments adds options to the action bar
|
|
|
|
setHasOptionsMenu(true);
|
|
|
|
|
|
|
|
mController = MessagingController.getInstance(getActivity().getApplication());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
|
|
|
Bundle savedInstanceState) {
|
|
|
|
|
|
|
|
View view = inflater.inflate(R.layout.message, container, false);
|
|
|
|
|
|
|
|
|
|
|
|
mMessageView = (SingleMessageView) view.findViewById(R.id.message_view);
|
2011-02-11 10:09:15 -05:00
|
|
|
|
2011-04-24 00:00:10 -04:00
|
|
|
//set a callback for the attachment view. With this callback the attachmentview
|
|
|
|
//request the start of a filebrowser activity.
|
|
|
|
mMessageView.setAttachmentCallback(new AttachmentFileDownloadCallback() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void showFileBrowser(final AttachmentView caller) {
|
|
|
|
FileBrowserHelper.getInstance()
|
2012-09-26 12:03:14 -04:00
|
|
|
.showFileBrowserActivity(MessageViewFragment.this,
|
2011-04-24 00:00:10 -04:00
|
|
|
null,
|
2012-09-26 12:03:14 -04:00
|
|
|
ACTIVITY_CHOOSE_DIRECTORY,
|
2011-04-24 00:00:10 -04:00
|
|
|
callback);
|
|
|
|
attachmentTmpStore = caller;
|
|
|
|
}
|
2012-09-26 12:03:14 -04:00
|
|
|
|
2011-04-24 00:00:10 -04:00
|
|
|
FileBrowserFailOverCallback callback = new FileBrowserFailOverCallback() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPathEntered(String path) {
|
|
|
|
attachmentTmpStore.writeFile(new File(path));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCancel() {
|
|
|
|
// canceled, do nothing
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
2011-11-02 19:39:23 -04:00
|
|
|
|
2011-02-14 11:54:01 -05:00
|
|
|
mMessageView.initialize(this);
|
2012-09-09 19:04:47 -04:00
|
|
|
mMessageView.downloadRemainderButton().setOnClickListener(this);
|
2011-06-08 16:53:23 -04:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
mFragmentListener.messageHeaderViewAvailable(mMessageView.getMessageHeaderView());
|
2011-12-05 12:16:43 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
return view;
|
|
|
|
}
|
2010-12-25 22:51:33 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
@Override
|
|
|
|
public void onActivityCreated(Bundle savedInstanceState) {
|
|
|
|
super.onActivityCreated(savedInstanceState);
|
2010-12-25 22:51:33 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
MessageReference messageReference;
|
|
|
|
if (savedInstanceState != null) {
|
|
|
|
mPgpData = (PgpData) savedInstanceState.get(STATE_PGP_DATA);
|
|
|
|
messageReference = (MessageReference) savedInstanceState.get(STATE_MESSAGE_REFERENCE);
|
|
|
|
} else {
|
|
|
|
Bundle args = getArguments();
|
|
|
|
messageReference = (MessageReference) args.getParcelable(ARG_REFERENCE);
|
2010-12-25 22:51:33 -05:00
|
|
|
}
|
2010-07-27 08:10:09 -04:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
displayMessage(messageReference, (mPgpData == null));
|
2010-12-25 22:51:33 -05:00
|
|
|
}
|
|
|
|
|
2009-10-22 11:54:49 -04:00
|
|
|
@Override
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onSaveInstanceState(Bundle outState) {
|
2012-02-23 21:43:42 -05:00
|
|
|
super.onSaveInstanceState(outState);
|
2012-09-26 12:03:14 -04:00
|
|
|
outState.putParcelable(STATE_MESSAGE_REFERENCE, mMessageReference);
|
2011-02-11 10:09:15 -05:00
|
|
|
outState.putSerializable(STATE_PGP_DATA, mPgpData);
|
2010-07-27 08:10:09 -04:00
|
|
|
}
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
public void displayMessage(MessageReference ref) {
|
|
|
|
displayMessage(ref, true);
|
2012-09-07 23:33:53 -04:00
|
|
|
}
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
private void displayMessage(MessageReference ref, boolean resetPgpData) {
|
2010-04-24 10:59:27 -04:00
|
|
|
mMessageReference = ref;
|
2012-09-26 12:03:14 -04:00
|
|
|
if (K9.DEBUG) {
|
2010-04-24 10:59:27 -04:00
|
|
|
Log.d(K9.LOG_TAG, "MessageView displaying message " + mMessageReference);
|
2012-09-26 12:03:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Context appContext = getActivity().getApplicationContext();
|
|
|
|
mAccount = Preferences.getPreferences(appContext).getAccount(mMessageReference.accountUuid);
|
|
|
|
|
|
|
|
if (resetPgpData) {
|
|
|
|
// start with fresh, empty PGP data
|
|
|
|
mPgpData = new PgpData();
|
|
|
|
}
|
2012-02-23 21:43:42 -05:00
|
|
|
|
|
|
|
// Clear previous message
|
|
|
|
mMessageView.resetView();
|
|
|
|
mMessageView.resetHeaderView();
|
|
|
|
|
2011-02-11 10:09:15 -05:00
|
|
|
mController.loadMessageForView(mAccount, mMessageReference.folderName, mMessageReference.uid, mListener);
|
2012-08-22 09:43:18 -04:00
|
|
|
configureMenu(mMenu);
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
|
2010-09-01 16:59:09 -04:00
|
|
|
/**
|
|
|
|
* Called from UI thread when user select Delete
|
|
|
|
*/
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onDelete() {
|
2011-11-15 01:28:41 -05:00
|
|
|
if (K9.confirmDelete() || (K9.confirmDeleteStarred() && mMessage.isSet(Flag.FLAGGED))) {
|
2010-09-01 16:59:09 -04:00
|
|
|
showDialog(R.id.dialog_confirm_delete);
|
2011-02-06 17:09:48 -05:00
|
|
|
} else {
|
2010-09-01 16:59:09 -04:00
|
|
|
delete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
private void delete() {
|
|
|
|
if (mMessage != null) {
|
2010-07-11 15:40:48 -04:00
|
|
|
// Disable the delete button after it's tapped (to try to prevent
|
|
|
|
// accidental clicks)
|
2012-08-22 09:43:18 -04:00
|
|
|
mMenu.findItem(R.id.delete).setEnabled(false);
|
2009-11-21 17:45:14 -05:00
|
|
|
Message messageToDelete = mMessage;
|
2012-09-26 12:03:14 -04:00
|
|
|
mFragmentListener.showNextMessageOrReturn();
|
2012-11-03 00:56:12 -04:00
|
|
|
mController.deleteMessages(Collections.singletonList(messageToDelete), null);
|
2010-06-14 09:46:08 -04:00
|
|
|
}
|
|
|
|
}
|
2009-11-29 23:03:00 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onRefile(String dstFolder) {
|
2011-02-06 17:09:48 -05:00
|
|
|
if (!mController.isMoveCapable(mAccount)) {
|
2010-07-05 09:41:52 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-02-06 17:09:48 -05:00
|
|
|
if (!mController.isMoveCapable(mMessage)) {
|
2012-09-26 12:03:14 -04:00
|
|
|
Toast toast = Toast.makeText(getActivity(), R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
2010-07-05 09:41:52 -04:00
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
2011-03-31 22:21:27 -04:00
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
if (K9.FOLDER_NONE.equalsIgnoreCase(dstFolder)) {
|
2010-07-05 09:41:52 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-03-31 22:21:27 -04:00
|
|
|
|
|
|
|
if (mAccount.getSpamFolderName().equals(dstFolder) && K9.confirmSpam()) {
|
|
|
|
mDstFolder = dstFolder;
|
|
|
|
showDialog(R.id.dialog_confirm_spam);
|
|
|
|
} else {
|
|
|
|
refileMessage(dstFolder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void refileMessage(String dstFolder) {
|
|
|
|
String srcFolder = mMessageReference.folderName;
|
|
|
|
Message messageToMove = mMessage;
|
2012-09-26 12:03:14 -04:00
|
|
|
mFragmentListener.showNextMessageOrReturn();
|
2011-02-14 20:45:08 -05:00
|
|
|
mController.moveMessage(mAccount, srcFolder, messageToMove, dstFolder, null);
|
2010-07-05 09:41:52 -04:00
|
|
|
}
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onReply() {
|
2011-02-06 17:09:48 -05:00
|
|
|
if (mMessage != null) {
|
2012-09-26 12:03:14 -04:00
|
|
|
mFragmentListener.onReply(mMessage, mPgpData);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onReplyAll() {
|
2011-02-06 17:09:48 -05:00
|
|
|
if (mMessage != null) {
|
2012-09-26 12:03:14 -04:00
|
|
|
mFragmentListener.onReplyAll(mMessage, mPgpData);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onForward() {
|
2011-02-06 17:09:48 -05:00
|
|
|
if (mMessage != null) {
|
2012-09-26 12:03:14 -04:00
|
|
|
mFragmentListener.onForward(mMessage, mPgpData);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
}
|
2009-11-21 17:45:14 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onFlag() {
|
2011-02-06 17:09:48 -05:00
|
|
|
if (mMessage != null) {
|
2012-01-27 02:39:10 -05:00
|
|
|
boolean newState = !mMessage.isSet(Flag.FLAGGED);
|
|
|
|
mController.setFlag(mAccount, mMessage.getFolder().getName(),
|
2012-02-04 08:52:45 -05:00
|
|
|
new Message[] { mMessage }, Flag.FLAGGED, newState);
|
|
|
|
mMessageView.setHeaders(mMessage, mAccount);
|
2009-11-21 17:45:14 -05:00
|
|
|
}
|
2009-03-05 02:32:45 -05:00
|
|
|
}
|
2009-11-21 17:45:14 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onMove() {
|
2011-01-06 11:56:02 -05:00
|
|
|
if ((!mController.isMoveCapable(mAccount))
|
2011-02-06 17:09:48 -05:00
|
|
|
|| (mMessage == null)) {
|
2009-11-21 17:45:14 -05:00
|
|
|
return;
|
|
|
|
}
|
2011-02-06 17:09:48 -05:00
|
|
|
if (!mController.isMoveCapable(mMessage)) {
|
2012-09-26 12:03:14 -04:00
|
|
|
Toast toast = Toast.makeText(getActivity(), R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
2009-11-21 17:45:14 -05:00
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
2010-12-25 22:49:13 -05:00
|
|
|
|
|
|
|
startRefileActivity(ACTIVITY_CHOOSE_FOLDER_MOVE);
|
2012-09-26 12:03:14 -04:00
|
|
|
|
2009-11-21 17:45:14 -05:00
|
|
|
}
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onCopy() {
|
2011-01-06 11:56:02 -05:00
|
|
|
if ((!mController.isCopyCapable(mAccount))
|
2011-02-06 17:09:48 -05:00
|
|
|
|| (mMessage == null)) {
|
2009-11-21 17:45:14 -05:00
|
|
|
return;
|
|
|
|
}
|
2011-02-06 17:09:48 -05:00
|
|
|
if (!mController.isCopyCapable(mMessage)) {
|
2012-09-26 12:03:14 -04:00
|
|
|
Toast toast = Toast.makeText(getActivity(), R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
2009-11-21 17:45:14 -05:00
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
2010-12-25 22:49:13 -05:00
|
|
|
|
|
|
|
startRefileActivity(ACTIVITY_CHOOSE_FOLDER_COPY);
|
|
|
|
}
|
|
|
|
|
2012-09-13 20:25:39 -04:00
|
|
|
private void onToggleColors() {
|
|
|
|
if (K9.getK9MessageViewTheme() == K9.THEME_DARK) {
|
|
|
|
K9.setK9MessageViewTheme(K9.THEME_LIGHT);
|
|
|
|
} else {
|
|
|
|
K9.setK9MessageViewTheme(K9.THEME_DARK);
|
|
|
|
}
|
|
|
|
|
|
|
|
new AsyncTask<Object, Object, Object>() {
|
|
|
|
@Override
|
|
|
|
protected Object doInBackground(Object... params) {
|
2012-09-26 12:03:14 -04:00
|
|
|
Context appContext = getActivity().getApplicationContext();
|
|
|
|
Preferences prefs = Preferences.getPreferences(appContext);
|
2012-09-13 20:25:39 -04:00
|
|
|
Editor editor = prefs.getPreferences().edit();
|
|
|
|
K9.save(editor);
|
|
|
|
editor.commit();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.execute();
|
2012-09-15 01:13:46 -04:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
mFragmentListener.restartActivity();
|
2012-09-13 20:25:39 -04:00
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
private void startRefileActivity(int activity) {
|
2012-09-26 12:03:14 -04:00
|
|
|
Intent intent = new Intent(getActivity(), ChooseFolder.class);
|
2010-03-03 23:00:30 -05:00
|
|
|
intent.putExtra(ChooseFolder.EXTRA_ACCOUNT, mAccount.getUuid());
|
2010-04-24 10:59:27 -04:00
|
|
|
intent.putExtra(ChooseFolder.EXTRA_CUR_FOLDER, mMessageReference.folderName);
|
2010-07-04 19:29:57 -04:00
|
|
|
intent.putExtra(ChooseFolder.EXTRA_SEL_FOLDER, mAccount.getLastSelectedFolderName());
|
2010-05-01 16:06:52 -04:00
|
|
|
intent.putExtra(ChooseFolder.EXTRA_MESSAGE, mMessageReference);
|
2010-12-25 22:49:13 -05:00
|
|
|
startActivityForResult(intent, activity);
|
2009-11-21 17:45:14 -05:00
|
|
|
}
|
|
|
|
|
2010-05-21 11:34:29 -04:00
|
|
|
|
2009-11-21 17:45:14 -05:00
|
|
|
@Override
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
|
|
if (mAccount.getCryptoProvider().onDecryptActivityResult(this, requestCode, resultCode, data, mPgpData)) {
|
2010-07-27 08:10:09 -04:00
|
|
|
return;
|
|
|
|
}
|
2012-09-26 12:03:14 -04:00
|
|
|
|
|
|
|
if (resultCode != Activity.RESULT_OK) {
|
2009-11-21 17:45:14 -05:00
|
|
|
return;
|
2012-09-26 12:03:14 -04:00
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
switch (requestCode) {
|
2012-09-26 12:03:14 -04:00
|
|
|
case ACTIVITY_CHOOSE_DIRECTORY: {
|
|
|
|
if (resultCode == Activity.RESULT_OK && data != null) {
|
|
|
|
// obtain the filename
|
|
|
|
Uri fileUri = data.getData();
|
|
|
|
if (fileUri != null) {
|
|
|
|
String filePath = fileUri.getPath();
|
|
|
|
if (filePath != null) {
|
|
|
|
attachmentTmpStore.writeFile(new File(filePath));
|
|
|
|
}
|
2011-04-24 00:00:10 -04:00
|
|
|
}
|
|
|
|
}
|
2012-09-26 12:03:14 -04:00
|
|
|
break;
|
2011-04-24 00:00:10 -04:00
|
|
|
}
|
2012-09-26 12:03:14 -04:00
|
|
|
case ACTIVITY_CHOOSE_FOLDER_MOVE:
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_COPY: {
|
|
|
|
if (data == null) {
|
|
|
|
return;
|
|
|
|
}
|
2011-04-24 00:00:10 -04:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
String destFolderName = data.getStringExtra(ChooseFolder.EXTRA_NEW_FOLDER);
|
|
|
|
MessageReference ref = data.getParcelableExtra(ChooseFolder.EXTRA_MESSAGE);
|
|
|
|
if (mMessageReference.equals(ref)) {
|
|
|
|
mAccount.setLastSelectedFolderName(destFolderName);
|
|
|
|
switch (requestCode) {
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_MOVE: {
|
|
|
|
mFragmentListener.showNextMessageOrReturn();
|
|
|
|
moveMessage(ref, destFolderName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_COPY: {
|
|
|
|
copyMessage(ref, destFolderName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-11-21 17:45:14 -05:00
|
|
|
}
|
2012-09-26 12:03:14 -04:00
|
|
|
break;
|
2011-02-06 17:09:48 -05:00
|
|
|
}
|
2009-11-21 17:45:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
private void onSendAlternate() {
|
|
|
|
if (mMessage != null) {
|
2012-09-26 12:03:14 -04:00
|
|
|
mController.sendAlternate(getActivity(), mAccount, mMessage);
|
2009-12-26 13:31:55 -05:00
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
2012-03-18 23:44:41 -04:00
|
|
|
private void onToggleRead() {
|
2011-02-06 17:09:48 -05:00
|
|
|
if (mMessage != null) {
|
2012-01-27 02:39:10 -05:00
|
|
|
mController.setFlag(mAccount, mMessage.getFolder().getName(),
|
2012-03-18 23:44:41 -04:00
|
|
|
new Message[] { mMessage }, Flag.SEEN, !mMessage.isSet(Flag.SEEN));
|
2012-02-04 08:52:45 -05:00
|
|
|
mMessageView.setHeaders(mMessage, mAccount);
|
|
|
|
String subject = mMessage.getSubject();
|
2012-09-26 12:03:14 -04:00
|
|
|
displayMessageSubject(subject);
|
2012-09-09 18:11:54 -04:00
|
|
|
updateUnreadToggleTitle();
|
2009-11-21 17:45:14 -05:00
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
private void onDownloadRemainder() {
|
|
|
|
if (mMessage.isSet(Flag.X_DOWNLOADED_FULL)) {
|
2010-07-18 21:57:49 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-02-11 10:09:15 -05:00
|
|
|
mMessageView.downloadRemainderButton().setEnabled(false);
|
|
|
|
mController.loadMessageForViewRemote(mAccount, mMessageReference.folderName, mMessageReference.uid, mListener);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public void onClick(View view) {
|
|
|
|
switch (view.getId()) {
|
2012-09-26 12:03:14 -04:00
|
|
|
case R.id.download: {
|
|
|
|
((AttachmentView)view).saveFile();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.download_remainder: {
|
|
|
|
onDownloadRemainder();
|
|
|
|
break;
|
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-16 08:20:10 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.delete:
|
|
|
|
onDelete();
|
|
|
|
break;
|
|
|
|
case R.id.reply:
|
|
|
|
onReply();
|
|
|
|
break;
|
|
|
|
case R.id.reply_all:
|
|
|
|
onReplyAll();
|
|
|
|
break;
|
|
|
|
case R.id.forward:
|
|
|
|
onForward();
|
|
|
|
break;
|
2012-08-22 09:43:18 -04:00
|
|
|
case R.id.share:
|
2011-02-06 17:09:48 -05:00
|
|
|
onSendAlternate();
|
|
|
|
break;
|
2012-08-22 09:43:18 -04:00
|
|
|
case R.id.toggle_unread:
|
2012-03-18 23:44:41 -04:00
|
|
|
onToggleRead();
|
2011-02-06 17:09:48 -05:00
|
|
|
break;
|
|
|
|
case R.id.archive:
|
|
|
|
onRefile(mAccount.getArchiveFolderName());
|
|
|
|
break;
|
|
|
|
case R.id.spam:
|
|
|
|
onRefile(mAccount.getSpamFolderName());
|
|
|
|
break;
|
|
|
|
case R.id.move:
|
|
|
|
onMove();
|
|
|
|
break;
|
|
|
|
case R.id.copy:
|
|
|
|
onCopy();
|
|
|
|
break;
|
|
|
|
case R.id.select_text:
|
2011-02-11 10:09:15 -05:00
|
|
|
mMessageView.beginSelectingText();
|
2011-02-06 17:09:48 -05:00
|
|
|
break;
|
2012-09-13 20:25:39 -04:00
|
|
|
case R.id.toggle_message_view_theme:
|
|
|
|
onToggleColors();
|
|
|
|
break;
|
2011-02-06 17:09:48 -05:00
|
|
|
default:
|
|
|
|
return super.onOptionsItemSelected(item);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-16 14:27:57 -05:00
|
|
|
@Override
|
2012-09-26 12:03:14 -04:00
|
|
|
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
|
|
|
inflater.inflate(R.menu.message_view_fragment, menu);
|
2012-08-22 09:43:18 -04:00
|
|
|
mMenu = menu;
|
2012-11-20 20:45:37 -05:00
|
|
|
configureMenu(menu);
|
2012-08-22 09:43:18 -04:00
|
|
|
}
|
|
|
|
|
2012-09-09 17:25:52 -04:00
|
|
|
private void configureMenu(Menu menu) {
|
2012-11-22 16:50:13 -05:00
|
|
|
// In Android versions prior to 4.2 onCreateOptionsMenu() (which calls us) is called before
|
|
|
|
// onActivityCreated() when mAccount isn't initialized yet. In that case we do nothing and
|
|
|
|
// wait for displayMessage() to call us again.
|
|
|
|
if (menu == null || mAccount == null) {
|
2012-09-09 17:25:52 -04:00
|
|
|
return;
|
|
|
|
}
|
2012-08-22 09:43:18 -04:00
|
|
|
|
2012-09-09 17:25:52 -04:00
|
|
|
// enable them all
|
|
|
|
menu.findItem(R.id.copy).setVisible(true);
|
|
|
|
menu.findItem(R.id.move).setVisible(true);
|
|
|
|
menu.findItem(R.id.archive).setVisible(true);
|
|
|
|
menu.findItem(R.id.spam).setVisible(true);
|
2012-09-13 20:25:39 -04:00
|
|
|
|
|
|
|
mToggleMessageViewMenu = menu.findItem(R.id.toggle_message_view_theme);
|
|
|
|
if (K9.getK9MessageViewTheme() == K9.THEME_DARK) {
|
|
|
|
mToggleMessageViewMenu.setTitle(R.string.message_view_theme_action_light);
|
|
|
|
} else {
|
|
|
|
mToggleMessageViewMenu.setTitle(R.string.message_view_theme_action_dark);
|
|
|
|
}
|
|
|
|
|
2012-08-22 09:43:18 -04:00
|
|
|
toggleActionsState(menu, true);
|
|
|
|
|
2012-09-09 18:11:54 -04:00
|
|
|
updateUnreadToggleTitle();
|
|
|
|
|
2012-08-22 09:43:18 -04:00
|
|
|
// comply with the setting
|
|
|
|
if (!mAccount.getEnableMoveButtons()) {
|
2009-11-21 17:45:14 -05:00
|
|
|
menu.findItem(R.id.move).setVisible(false);
|
2010-07-05 09:41:52 -04:00
|
|
|
menu.findItem(R.id.archive).setVisible(false);
|
|
|
|
menu.findItem(R.id.spam).setVisible(false);
|
2012-08-22 09:43:18 -04:00
|
|
|
} else {
|
2012-09-09 17:25:52 -04:00
|
|
|
// check message, folder capability
|
2012-08-22 09:43:18 -04:00
|
|
|
if (!mController.isCopyCapable(mAccount)) {
|
|
|
|
menu.findItem(R.id.copy).setVisible(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mController.isMoveCapable(mAccount)) {
|
|
|
|
menu.findItem(R.id.move).setVisible(true);
|
|
|
|
|
|
|
|
menu.findItem(R.id.archive).setVisible(
|
2012-09-09 17:25:52 -04:00
|
|
|
!mMessageReference.folderName.equals(mAccount.getArchiveFolderName())
|
|
|
|
&& mAccount.hasArchiveFolder());
|
2012-08-22 09:43:18 -04:00
|
|
|
|
|
|
|
menu.findItem(R.id.spam).setVisible(
|
2012-09-09 17:25:52 -04:00
|
|
|
!mMessageReference.folderName.equals(mAccount.getSpamFolderName())
|
|
|
|
&& mAccount.hasSpamFolder());
|
2012-08-22 09:43:18 -04:00
|
|
|
} else {
|
2012-09-09 17:25:52 -04:00
|
|
|
menu.findItem(R.id.copy).setVisible(false);
|
|
|
|
menu.findItem(R.id.move).setVisible(false);
|
|
|
|
menu.findItem(R.id.archive).setVisible(false);
|
|
|
|
menu.findItem(R.id.spam).setVisible(false);
|
2012-08-22 09:43:18 -04:00
|
|
|
}
|
2010-07-05 09:41:52 -04:00
|
|
|
}
|
2012-08-22 09:43:18 -04:00
|
|
|
}
|
|
|
|
|
2012-09-09 18:11:54 -04:00
|
|
|
/**
|
|
|
|
* Set the title of the "Toggle Unread" menu item based upon the current read state of the message.
|
|
|
|
*/
|
|
|
|
public void updateUnreadToggleTitle() {
|
|
|
|
if (mMessage != null && mMenu != null) {
|
|
|
|
if (mMessage.isSet(Flag.SEEN)) {
|
|
|
|
mMenu.findItem(R.id.toggle_unread).setTitle(R.string.mark_as_unread_action);
|
|
|
|
} else {
|
|
|
|
mMenu.findItem(R.id.toggle_unread).setTitle(R.string.mark_as_read_action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-09 17:25:52 -04:00
|
|
|
private void toggleActionsState(Menu menu, boolean state) {
|
|
|
|
for (int i = 0; i < menu.size(); ++i) {
|
|
|
|
menu.getItem(i).setEnabled(state);
|
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
2009-11-16 14:27:57 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
private void setProgress(boolean enable) {
|
|
|
|
if (mFragmentListener != null) {
|
|
|
|
mFragmentListener.setProgress(enable);
|
|
|
|
}
|
|
|
|
}
|
2010-12-25 22:49:23 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
private void displayMessageSubject(String subject) {
|
|
|
|
if (mFragmentListener != null) {
|
|
|
|
mFragmentListener.displayMessageSubject(subject);
|
2010-09-01 16:59:09 -04:00
|
|
|
}
|
2012-09-26 12:03:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public void moveMessage(MessageReference reference, String destFolderName) {
|
|
|
|
mController.moveMessage(mAccount, mMessageReference.folderName, mMessage,
|
|
|
|
destFolderName, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void copyMessage(MessageReference reference, String destFolderName) {
|
|
|
|
mController.copyMessage(mAccount, mMessageReference.folderName, mMessage,
|
|
|
|
destFolderName, null);
|
2010-09-01 16:59:09 -04:00
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
class Listener extends MessagingListener {
|
2008-11-01 17:32:06 -04:00
|
|
|
@Override
|
2011-02-11 10:09:15 -05:00
|
|
|
public void loadMessageForViewHeadersAvailable(final Account account, String folder, String uid,
|
2011-02-06 17:09:48 -05:00
|
|
|
final Message message) {
|
2010-04-29 00:59:14 -04:00
|
|
|
if (!mMessageReference.uid.equals(uid) || !mMessageReference.folderName.equals(folder)
|
2011-02-06 17:09:48 -05:00
|
|
|
|| !mMessageReference.accountUuid.equals(account.getUuid())) {
|
2009-07-01 17:31:51 -04:00
|
|
|
return;
|
|
|
|
}
|
2012-01-03 20:27:51 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Clone the message object because the original could be modified by
|
|
|
|
* MessagingController later. This could lead to a ConcurrentModificationException
|
|
|
|
* when that same object is accessed by the UI thread (below).
|
|
|
|
*
|
|
|
|
* See issue 3953
|
|
|
|
*
|
|
|
|
* This is just an ugly hack to get rid of the most pressing problem. A proper way to
|
|
|
|
* fix this is to make Message thread-safe. Or, even better, rewriting the UI code to
|
|
|
|
* access messages via a ContentProvider.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
final Message clonedMessage = message.clone();
|
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
mHandler.post(new Runnable() {
|
2011-02-11 10:09:15 -05:00
|
|
|
public void run() {
|
2012-01-03 20:27:51 -05:00
|
|
|
if (!clonedMessage.isSet(Flag.X_DOWNLOADED_FULL) &&
|
|
|
|
!clonedMessage.isSet(Flag.X_DOWNLOADED_PARTIAL)) {
|
2012-04-04 04:04:57 -04:00
|
|
|
String text = getString(R.string.message_view_downloading);
|
|
|
|
mMessageView.showStatusMessage(text);
|
2009-11-21 17:45:14 -05:00
|
|
|
}
|
2012-01-03 20:27:51 -05:00
|
|
|
mMessageView.setHeaders(clonedMessage, account);
|
2012-09-06 21:04:59 -04:00
|
|
|
final String subject = clonedMessage.getSubject();
|
|
|
|
if (subject == null || subject.equals("")) {
|
2012-09-26 12:03:14 -04:00
|
|
|
displayMessageSubject(getString(R.string.general_no_subject));
|
2012-09-06 21:04:59 -04:00
|
|
|
} else {
|
2012-09-26 12:03:14 -04:00
|
|
|
displayMessageSubject(clonedMessage.getSubject());
|
2012-09-06 21:04:59 -04:00
|
|
|
}
|
2011-02-11 12:10:45 -05:00
|
|
|
mMessageView.setOnFlagListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
onFlag();
|
|
|
|
}
|
|
|
|
});
|
2011-02-11 10:09:15 -05:00
|
|
|
}
|
|
|
|
});
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-02-23 21:43:42 -05:00
|
|
|
public void loadMessageForViewBodyAvailable(final Account account, String folder,
|
|
|
|
String uid, final Message message) {
|
|
|
|
if (!mMessageReference.uid.equals(uid) ||
|
|
|
|
!mMessageReference.folderName.equals(folder) ||
|
|
|
|
!mMessageReference.accountUuid.equals(account.getUuid())) {
|
2009-07-01 17:31:51 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-01-06 11:56:55 -05:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
mHandler.post(new Runnable() {
|
2012-02-23 21:43:42 -05:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
try {
|
|
|
|
mMessage = message;
|
|
|
|
mMessageView.setMessage(account, (LocalMessage) message, mPgpData,
|
|
|
|
mController, mListener);
|
2012-09-09 18:11:54 -04:00
|
|
|
updateUnreadToggleTitle();
|
2010-12-28 04:07:59 -05:00
|
|
|
|
2012-02-23 21:43:42 -05:00
|
|
|
} catch (MessagingException e) {
|
|
|
|
Log.v(K9.LOG_TAG, "loadMessageForViewBodyAvailable", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2009-05-03 16:52:32 -04:00
|
|
|
|
2008-11-01 17:32:06 -04:00
|
|
|
@Override
|
2011-02-14 20:45:08 -05:00
|
|
|
public void loadMessageForViewFailed(Account account, String folder, String uid, final Throwable t) {
|
2010-04-29 00:59:14 -04:00
|
|
|
if (!mMessageReference.uid.equals(uid) || !mMessageReference.folderName.equals(folder)
|
2011-02-06 17:09:48 -05:00
|
|
|
|| !mMessageReference.accountUuid.equals(account.getUuid())) {
|
2009-07-01 17:31:51 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-02-06 17:09:48 -05:00
|
|
|
mHandler.post(new Runnable() {
|
|
|
|
public void run() {
|
2012-09-26 12:03:14 -04:00
|
|
|
setProgress(false);
|
2011-02-06 17:09:48 -05:00
|
|
|
if (t instanceof IllegalArgumentException) {
|
2009-10-19 15:35:31 -04:00
|
|
|
mHandler.invalidIdError();
|
2011-02-06 17:09:48 -05:00
|
|
|
} else {
|
2009-11-21 17:45:14 -05:00
|
|
|
mHandler.networkError();
|
2009-10-19 15:35:31 -04:00
|
|
|
}
|
2012-09-26 12:03:14 -04:00
|
|
|
if (mMessage == null || mMessage.isSet(Flag.X_DOWNLOADED_PARTIAL)) {
|
2012-04-04 04:04:57 -04:00
|
|
|
mMessageView.showStatusMessage(getString(R.string.webview_empty_message));
|
2010-02-06 09:49:36 -05:00
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2011-02-14 20:45:08 -05:00
|
|
|
public void loadMessageForViewFinished(Account account, String folder, String uid, final Message message) {
|
2010-04-29 00:59:14 -04:00
|
|
|
if (!mMessageReference.uid.equals(uid) || !mMessageReference.folderName.equals(folder)
|
2011-02-06 17:09:48 -05:00
|
|
|
|| !mMessageReference.accountUuid.equals(account.getUuid())) {
|
2009-07-01 17:31:51 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-02-06 17:09:48 -05:00
|
|
|
mHandler.post(new Runnable() {
|
|
|
|
public void run() {
|
2012-09-26 12:03:14 -04:00
|
|
|
setProgress(false);
|
2011-02-11 12:11:21 -05:00
|
|
|
mMessageView.setShowDownloadButton(message);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public void loadMessageForViewStarted(Account account, String folder, String uid) {
|
2010-04-29 00:59:14 -04:00
|
|
|
if (!mMessageReference.uid.equals(uid) || !mMessageReference.folderName.equals(folder)
|
2011-02-06 17:09:48 -05:00
|
|
|
|| !mMessageReference.accountUuid.equals(account.getUuid())) {
|
2009-07-01 17:31:51 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-02-06 17:09:48 -05:00
|
|
|
mHandler.post(new Runnable() {
|
|
|
|
public void run() {
|
2012-09-26 12:03:14 -04:00
|
|
|
setProgress(true);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2011-02-20 12:49:55 -05:00
|
|
|
public void loadAttachmentStarted(Account account, Message message, Part part, Object tag, final boolean requiresDownload) {
|
2011-02-06 17:09:48 -05:00
|
|
|
if (mMessage != message) {
|
2009-07-01 17:31:51 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-02-20 12:49:55 -05:00
|
|
|
mHandler.post(new Runnable() {
|
|
|
|
public void run() {
|
|
|
|
mMessageView.setAttachmentsEnabled(false);
|
|
|
|
showDialog(R.id.dialog_attachment_progress);
|
|
|
|
if (requiresDownload) {
|
|
|
|
mHandler.fetchingAttachment();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2011-02-20 12:49:55 -05:00
|
|
|
public void loadAttachmentFinished(Account account, Message message, Part part, final Object tag) {
|
2011-02-06 17:09:48 -05:00
|
|
|
if (mMessage != message) {
|
2009-07-01 17:31:51 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-02-20 12:49:55 -05:00
|
|
|
mHandler.post(new Runnable() {
|
|
|
|
public void run() {
|
|
|
|
mMessageView.setAttachmentsEnabled(true);
|
|
|
|
removeDialog(R.id.dialog_attachment_progress);
|
|
|
|
Object[] params = (Object[]) tag;
|
|
|
|
boolean download = (Boolean) params[0];
|
|
|
|
AttachmentView attachment = (AttachmentView) params[1];
|
|
|
|
if (download) {
|
|
|
|
attachment.writeFile();
|
|
|
|
} else {
|
|
|
|
attachment.showFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2011-02-14 20:45:08 -05:00
|
|
|
public void loadAttachmentFailed(Account account, Message message, Part part, Object tag, String reason) {
|
2011-02-06 17:09:48 -05:00
|
|
|
if (mMessage != message) {
|
2009-07-01 17:31:51 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-02-20 12:49:55 -05:00
|
|
|
mHandler.post(new Runnable() {
|
|
|
|
public void run() {
|
|
|
|
mMessageView.setAttachmentsEnabled(true);
|
|
|
|
removeDialog(R.id.dialog_attachment_progress);
|
|
|
|
mHandler.networkError();
|
|
|
|
}
|
|
|
|
});
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-10 12:03:10 -05:00
|
|
|
// This REALLY should be in MessageCryptoView
|
2012-09-26 12:03:14 -04:00
|
|
|
@Override
|
2011-02-10 12:03:10 -05:00
|
|
|
public void onDecryptDone(PgpData pgpData) {
|
2012-02-20 22:56:05 -05:00
|
|
|
Account account = mAccount;
|
2012-02-23 21:43:42 -05:00
|
|
|
LocalMessage message = (LocalMessage) mMessage;
|
|
|
|
MessagingController controller = mController;
|
|
|
|
Listener listener = mListener;
|
2012-02-20 22:56:05 -05:00
|
|
|
try {
|
2012-02-23 21:43:42 -05:00
|
|
|
mMessageView.setMessage(account, message, pgpData, controller, listener);
|
2012-02-20 22:56:05 -05:00
|
|
|
} catch (MessagingException e) {
|
|
|
|
Log.e(K9.LOG_TAG, "displayMessageBody failed", e);
|
|
|
|
}
|
2010-07-27 08:10:09 -04:00
|
|
|
}
|
2012-09-07 23:33:53 -04:00
|
|
|
|
2012-09-26 12:03:14 -04:00
|
|
|
private void showDialog(int dialogId) {
|
|
|
|
DialogFragment fragment;
|
|
|
|
switch (dialogId) {
|
|
|
|
case R.id.dialog_confirm_delete: {
|
|
|
|
String title = getString(R.string.dialog_confirm_delete_title);
|
|
|
|
String message = getString(R.string.dialog_confirm_delete_message);
|
|
|
|
String confirmText = getString(R.string.dialog_confirm_delete_confirm_button);
|
|
|
|
String cancelText = getString(R.string.dialog_confirm_delete_cancel_button);
|
|
|
|
|
|
|
|
fragment = ConfirmationDialogFragment.newInstance(dialogId, title, message,
|
|
|
|
confirmText, cancelText);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.dialog_confirm_spam: {
|
|
|
|
String title = getString(R.string.dialog_confirm_spam_title);
|
|
|
|
String message = getResources().getQuantityString(R.plurals.dialog_confirm_spam_message, 1);
|
|
|
|
String confirmText = getString(R.string.dialog_confirm_spam_confirm_button);
|
|
|
|
String cancelText = getString(R.string.dialog_confirm_spam_cancel_button);
|
|
|
|
|
|
|
|
fragment = ConfirmationDialogFragment.newInstance(dialogId, title, message,
|
|
|
|
confirmText, cancelText);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.dialog_attachment_progress: {
|
|
|
|
String title = getString(R.string.dialog_attachment_progress_title);
|
|
|
|
fragment = ProgressDialogFragment.newInstance(title);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
throw new RuntimeException("Called showDialog(int) with unknown dialog id.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment.setTargetFragment(this, dialogId);
|
|
|
|
fragment.show(getFragmentManager(), getDialogTag(dialogId));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void removeDialog(int dialogId) {
|
|
|
|
FragmentManager fm = getFragmentManager();
|
|
|
|
|
|
|
|
// Make sure the "show dialog" transaction has been processed when we call
|
|
|
|
// findFragmentByTag() below. Otherwise the fragment won't be found and the dialog will
|
|
|
|
// never be dismissed.
|
|
|
|
fm.executePendingTransactions();
|
|
|
|
|
|
|
|
DialogFragment fragment = (DialogFragment) fm.findFragmentByTag(getDialogTag(dialogId));
|
|
|
|
|
|
|
|
if (fragment != null) {
|
|
|
|
fragment.dismiss();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private String getDialogTag(int dialogId) {
|
|
|
|
return String.format("dialog-%d", dialogId);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void zoom(KeyEvent event) {
|
|
|
|
mMessageView.zoom(event);
|
|
|
|
}
|
|
|
|
|
2012-09-07 23:33:53 -04:00
|
|
|
@Override
|
2012-09-26 12:03:14 -04:00
|
|
|
public void doPositiveClick(int dialogId) {
|
|
|
|
switch (dialogId) {
|
|
|
|
case R.id.dialog_confirm_delete: {
|
|
|
|
delete();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.dialog_confirm_spam: {
|
|
|
|
refileMessage(mDstFolder);
|
|
|
|
mDstFolder = null;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void doNegativeClick(int dialogId) {
|
|
|
|
/* do nothing */
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void dialogCancelled(int dialogId) {
|
|
|
|
/* do nothing */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public interface MessageViewFragmentListener {
|
|
|
|
public void onForward(Message mMessage, PgpData mPgpData);
|
|
|
|
public void onReplyAll(Message mMessage, PgpData mPgpData);
|
|
|
|
public void onReply(Message mMessage, PgpData mPgpData);
|
|
|
|
public void displayMessageSubject(String title);
|
|
|
|
public void setProgress(boolean b);
|
|
|
|
public void restartActivity();
|
|
|
|
public void showNextMessageOrReturn();
|
|
|
|
public void messageHeaderViewAvailable(MessageHeader messageHeaderView);
|
2012-09-07 23:33:53 -04:00
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|