mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-11 20:15:03 -05:00
136 lines
4.6 KiB
Java
136 lines
4.6 KiB
Java
package com.fsck.k9.helper;
|
|
|
|
import java.text.DateFormat;
|
|
import java.util.Date;
|
|
|
|
import android.content.Context;
|
|
import android.text.SpannableStringBuilder;
|
|
import android.util.Log;
|
|
|
|
import com.fsck.k9.Account;
|
|
import com.fsck.k9.K9;
|
|
import com.fsck.k9.R;
|
|
import com.fsck.k9.activity.FolderInfoHolder;
|
|
import com.fsck.k9.activity.MessageInfoHolder;
|
|
import com.fsck.k9.mail.Address;
|
|
import com.fsck.k9.mail.Flag;
|
|
import com.fsck.k9.mail.Message;
|
|
import com.fsck.k9.mail.MessagingException;
|
|
import com.fsck.k9.mail.Message.RecipientType;
|
|
import com.fsck.k9.mail.store.LocalStore.LocalMessage;
|
|
import com.fsck.k9.helper.DateFormatter;
|
|
|
|
public class MessageHelper {
|
|
|
|
private static MessageHelper sInstance;
|
|
|
|
public synchronized static MessageHelper getInstance(final Context context) {
|
|
if (sInstance == null) {
|
|
sInstance = new MessageHelper(context);
|
|
}
|
|
return sInstance;
|
|
}
|
|
|
|
private Context mContext;
|
|
|
|
private DateFormat mTodayDateFormat;
|
|
|
|
private DateFormat mDateFormat;
|
|
|
|
private MessageHelper(final Context context) {
|
|
mContext = context;
|
|
mDateFormat = DateFormatter.getDateFormat(mContext);
|
|
mTodayDateFormat = android.text.format.DateFormat.getTimeFormat(mContext);
|
|
}
|
|
|
|
public void populate(final MessageInfoHolder target, final Message message,
|
|
final FolderInfoHolder folder, final Account account) {
|
|
final Contacts contactHelper = K9.showContactName() ? Contacts.getInstance(mContext) : null;
|
|
try {
|
|
target.message = message;
|
|
target.compareArrival = message.getInternalDate();
|
|
target.compareDate = message.getSentDate();
|
|
if (target.compareDate == null) {
|
|
target.compareDate = message.getInternalDate();
|
|
}
|
|
|
|
target.folder = folder;
|
|
|
|
target.read = message.isSet(Flag.SEEN);
|
|
target.answered = message.isSet(Flag.ANSWERED);
|
|
target.forwarded = message.isSet(Flag.FORWARDED);
|
|
target.flagged = message.isSet(Flag.FLAGGED);
|
|
|
|
Address[] addrs = message.getFrom();
|
|
|
|
if (addrs.length > 0 && account.isAnIdentity(addrs[0])) {
|
|
CharSequence to = Address.toFriendly(message .getRecipients(RecipientType.TO), contactHelper);
|
|
target.compareCounterparty = to.toString();
|
|
target.sender = new SpannableStringBuilder(mContext.getString(R.string.message_to_label)).append(to);
|
|
} else {
|
|
target.sender = Address.toFriendly(addrs, contactHelper);
|
|
target.compareCounterparty = target.sender.toString();
|
|
}
|
|
|
|
if (addrs.length > 0) {
|
|
target.senderAddress = addrs[0].getAddress();
|
|
} else {
|
|
// a reasonable fallback "whomever we were corresponding with
|
|
target.senderAddress = target.compareCounterparty;
|
|
}
|
|
|
|
|
|
|
|
|
|
target.uid = message.getUid();
|
|
|
|
target.account = account.getUuid();
|
|
target.uri = "email://messages/" + account.getAccountNumber() + "/" + message.getFolder().getName() + "/" + message.getUid();
|
|
|
|
target.threadCount = ((LocalMessage) message).getThreadCount();
|
|
|
|
} catch (MessagingException me) {
|
|
Log.w(K9.LOG_TAG, "Unable to load message info", me);
|
|
}
|
|
}
|
|
public String formatDate(Date date) {
|
|
if (date == null) {
|
|
return "";
|
|
}
|
|
if (Utility.isDateToday(date)) {
|
|
return mTodayDateFormat.format(date);
|
|
} else {
|
|
return mDateFormat.format(date);
|
|
}
|
|
}
|
|
|
|
public void refresh() {
|
|
mDateFormat = DateFormatter.getDateFormat(mContext);
|
|
mTodayDateFormat = android.text.format.DateFormat.getTimeFormat(mContext);
|
|
}
|
|
|
|
public CharSequence getDisplayName(Account account, Address[] fromAddrs, Address[] toAddrs) {
|
|
final Contacts contactHelper = K9.showContactName() ? Contacts.getInstance(mContext) : null;
|
|
|
|
CharSequence displayName;
|
|
if (fromAddrs.length > 0 && account.isAnIdentity(fromAddrs[0])) {
|
|
CharSequence to = Address.toFriendly(toAddrs, contactHelper);
|
|
displayName = new SpannableStringBuilder(
|
|
mContext.getString(R.string.message_to_label)).append(to);
|
|
} else {
|
|
displayName = Address.toFriendly(fromAddrs, contactHelper);
|
|
}
|
|
|
|
return displayName;
|
|
}
|
|
|
|
public boolean toMe(Account account, Address[] toAddrs) {
|
|
for (Address address : toAddrs) {
|
|
if (account.isAnIdentity(address)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|