2012-06-28 19:16:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.email.provider;
|
|
|
|
|
|
|
|
import android.content.ContentUris;
|
|
|
|
import android.content.ContentValues;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.net.Uri;
|
|
|
|
|
|
|
|
import com.android.email.LegacyConversions;
|
|
|
|
import com.android.emailcommon.Logging;
|
|
|
|
import com.android.emailcommon.internet.MimeUtility;
|
|
|
|
import com.android.emailcommon.mail.Message;
|
|
|
|
import com.android.emailcommon.mail.MessagingException;
|
|
|
|
import com.android.emailcommon.mail.Part;
|
|
|
|
import com.android.emailcommon.provider.Account;
|
|
|
|
import com.android.emailcommon.provider.EmailContent;
|
2013-09-21 00:34:09 +00:00
|
|
|
import com.android.emailcommon.provider.EmailContent.Attachment;
|
2012-06-28 19:16:59 +00:00
|
|
|
import com.android.emailcommon.provider.EmailContent.MessageColumns;
|
|
|
|
import com.android.emailcommon.provider.EmailContent.SyncColumns;
|
|
|
|
import com.android.emailcommon.provider.Mailbox;
|
|
|
|
import com.android.emailcommon.utility.ConversionUtilities;
|
2013-05-26 04:32:32 +00:00
|
|
|
import com.android.mail.utils.LogUtils;
|
2012-06-28 19:16:59 +00:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
public class Utilities {
|
|
|
|
/**
|
|
|
|
* Copy one downloaded message (which may have partially-loaded sections)
|
|
|
|
* into a newly created EmailProvider Message, given the account and mailbox
|
|
|
|
*
|
|
|
|
* @param message the remote message we've just downloaded
|
|
|
|
* @param account the account it will be stored into
|
|
|
|
* @param folder the mailbox it will be stored into
|
|
|
|
* @param loadStatus when complete, the message will be marked with this status (e.g.
|
|
|
|
* EmailContent.Message.LOADED)
|
|
|
|
*/
|
|
|
|
public static void copyOneMessageToProvider(Context context, Message message, Account account,
|
|
|
|
Mailbox folder, int loadStatus) {
|
|
|
|
EmailContent.Message localMessage = null;
|
|
|
|
Cursor c = null;
|
|
|
|
try {
|
|
|
|
c = context.getContentResolver().query(
|
|
|
|
EmailContent.Message.CONTENT_URI,
|
|
|
|
EmailContent.Message.CONTENT_PROJECTION,
|
|
|
|
EmailContent.MessageColumns.ACCOUNT_KEY + "=?" +
|
2012-08-02 17:53:40 +00:00
|
|
|
" AND " + MessageColumns.MAILBOX_KEY + "=?" +
|
|
|
|
" AND " + SyncColumns.SERVER_ID + "=?",
|
|
|
|
new String[] {
|
2012-06-28 19:16:59 +00:00
|
|
|
String.valueOf(account.mId),
|
|
|
|
String.valueOf(folder.mId),
|
|
|
|
String.valueOf(message.getUid())
|
|
|
|
},
|
|
|
|
null);
|
2012-08-02 17:53:40 +00:00
|
|
|
if (c == null) {
|
|
|
|
return;
|
|
|
|
} else if (c.moveToNext()) {
|
2012-06-28 19:16:59 +00:00
|
|
|
localMessage = EmailContent.getContent(c, EmailContent.Message.class);
|
2012-08-02 17:53:40 +00:00
|
|
|
} else {
|
|
|
|
localMessage = new EmailContent.Message();
|
2012-06-28 19:16:59 +00:00
|
|
|
}
|
2012-08-02 17:53:40 +00:00
|
|
|
localMessage.mMailboxKey = folder.mId;
|
|
|
|
localMessage.mAccountKey = account.mId;
|
|
|
|
copyOneMessageToProvider(context, message, localMessage, loadStatus);
|
2012-06-28 19:16:59 +00:00
|
|
|
} finally {
|
|
|
|
if (c != null) {
|
|
|
|
c.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy one downloaded message (which may have partially-loaded sections)
|
|
|
|
* into an already-created EmailProvider Message
|
|
|
|
*
|
|
|
|
* @param message the remote message we've just downloaded
|
|
|
|
* @param localMessage the EmailProvider Message, already created
|
|
|
|
* @param loadStatus when complete, the message will be marked with this status (e.g.
|
|
|
|
* EmailContent.Message.LOADED)
|
|
|
|
* @param context the context to be used for EmailProvider
|
|
|
|
*/
|
|
|
|
public static void copyOneMessageToProvider(Context context, Message message,
|
|
|
|
EmailContent.Message localMessage, int loadStatus) {
|
|
|
|
try {
|
|
|
|
|
2012-08-02 17:53:40 +00:00
|
|
|
EmailContent.Body body = null;
|
|
|
|
if (localMessage.mId != EmailContent.Message.NO_MESSAGE) {
|
|
|
|
body = EmailContent.Body.restoreBodyWithMessageId(context, localMessage.mId);
|
|
|
|
}
|
2012-06-28 19:16:59 +00:00
|
|
|
if (body == null) {
|
|
|
|
body = new EmailContent.Body();
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
// Copy the fields that are available into the message object
|
|
|
|
LegacyConversions.updateMessageFields(localMessage, message,
|
|
|
|
localMessage.mAccountKey, localMessage.mMailboxKey);
|
|
|
|
|
|
|
|
// Now process body parts & attachments
|
|
|
|
ArrayList<Part> viewables = new ArrayList<Part>();
|
|
|
|
ArrayList<Part> attachments = new ArrayList<Part>();
|
|
|
|
MimeUtility.collectParts(message, viewables, attachments);
|
|
|
|
|
2013-06-04 22:08:18 +00:00
|
|
|
final ConversionUtilities.BodyFieldData data =
|
|
|
|
ConversionUtilities.parseBodyFields(viewables);
|
|
|
|
|
|
|
|
// set body and local message values
|
|
|
|
localMessage.setFlags(data.isQuotedReply, data.isQuotedForward);
|
|
|
|
localMessage.mSnippet = data.snippet;
|
|
|
|
body.mTextContent = data.textContent;
|
|
|
|
body.mHtmlContent = data.htmlContent;
|
|
|
|
body.mHtmlReply = data.htmlReply;
|
|
|
|
body.mTextReply = data.textReply;
|
|
|
|
body.mIntroText = data.introText;
|
2012-06-28 19:16:59 +00:00
|
|
|
|
|
|
|
// Commit the message & body to the local store immediately
|
|
|
|
saveOrUpdate(localMessage, context);
|
2012-08-02 17:53:40 +00:00
|
|
|
body.mMessageKey = localMessage.mId;
|
2012-06-28 19:16:59 +00:00
|
|
|
saveOrUpdate(body, context);
|
|
|
|
|
|
|
|
// process (and save) attachments
|
2013-07-30 00:02:27 +00:00
|
|
|
if (loadStatus != EmailContent.Message.FLAG_LOADED_PARTIAL
|
|
|
|
&& loadStatus != EmailContent.Message.FLAG_LOADED_UNKNOWN) {
|
|
|
|
// TODO(pwestbro): What should happen with unknown status?
|
2012-08-02 17:53:40 +00:00
|
|
|
LegacyConversions.updateAttachments(context, localMessage, attachments);
|
|
|
|
} else {
|
|
|
|
EmailContent.Attachment att = new EmailContent.Attachment();
|
2013-09-21 00:34:09 +00:00
|
|
|
// Since we haven't actually loaded the attachment, we're just putting
|
|
|
|
// a dummy placeholder here. When the user taps on it, we'll load the attachment
|
|
|
|
// for real.
|
|
|
|
// TODO: This is not really a great way to model this.... could we at least get
|
|
|
|
// the file names and mime types from the attachments? Then we could display
|
|
|
|
// something sensible at least. This may be impossible in POP, but maybe
|
|
|
|
// we could put a flag on the message indicating that there are undownloaded
|
|
|
|
// attachments, rather than this dummy placeholder, which causes a lot of
|
|
|
|
// special case handling in a lot of places.
|
|
|
|
att.mFileName = "";
|
2012-08-02 17:53:40 +00:00
|
|
|
att.mSize = message.getSize();
|
|
|
|
att.mMimeType = "text/plain";
|
|
|
|
att.mMessageKey = localMessage.mId;
|
|
|
|
att.mAccountKey = localMessage.mAccountKey;
|
2013-09-21 00:34:09 +00:00
|
|
|
att.mFlags = Attachment.FLAG_DUMMY_ATTACHMENT;
|
2012-08-02 17:53:40 +00:00
|
|
|
att.save(context);
|
|
|
|
localMessage.mFlagAttachment = true;
|
|
|
|
}
|
2012-06-28 19:16:59 +00:00
|
|
|
|
|
|
|
// One last update of message with two updated flags
|
|
|
|
localMessage.mFlagLoaded = loadStatus;
|
|
|
|
|
|
|
|
ContentValues cv = new ContentValues();
|
|
|
|
cv.put(EmailContent.MessageColumns.FLAG_ATTACHMENT, localMessage.mFlagAttachment);
|
|
|
|
cv.put(EmailContent.MessageColumns.FLAG_LOADED, localMessage.mFlagLoaded);
|
|
|
|
Uri uri = ContentUris.withAppendedId(EmailContent.Message.CONTENT_URI,
|
|
|
|
localMessage.mId);
|
|
|
|
context.getContentResolver().update(uri, cv, null, null);
|
|
|
|
|
|
|
|
} catch (MessagingException me) {
|
2013-05-26 04:32:32 +00:00
|
|
|
LogUtils.e(Logging.LOG_TAG, "Error while copying downloaded message." + me);
|
2012-06-28 19:16:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (RuntimeException rte) {
|
2013-05-26 04:32:32 +00:00
|
|
|
LogUtils.e(Logging.LOG_TAG, "Error while storing downloaded message." + rte.toString());
|
2012-06-28 19:16:59 +00:00
|
|
|
} catch (IOException ioe) {
|
2013-05-26 04:32:32 +00:00
|
|
|
LogUtils.e(Logging.LOG_TAG, "Error while storing attachment." + ioe.toString());
|
2012-06-28 19:16:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void saveOrUpdate(EmailContent content, Context context) {
|
|
|
|
if (content.isSaved()) {
|
|
|
|
content.update(context, content.toContentValues());
|
|
|
|
} else {
|
|
|
|
content.save(context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|