FairEmail/app/src/main/java/eu/faircode/email/EntityMessage.java

378 lines
17 KiB
Java
Raw Normal View History

2018-08-02 13:33:06 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-02 13:33:06 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-02 13:33:06 +00:00
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.
2018-10-29 10:46:49 +00:00
FairEmail is distributed in the hope that it will be useful,
2018-08-02 13:33:06 +00:00
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
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-08-02 13:33:06 +00:00
2018-12-31 08:04:33 +00:00
Copyright 2018-2019 by Marcel Bokhorst (M66B)
2018-08-02 13:33:06 +00:00
*/
2018-11-17 08:07:24 +00:00
import android.Manifest;
2019-01-07 15:05:24 +00:00
import android.app.AlarmManager;
import android.app.PendingIntent;
2018-11-17 08:07:24 +00:00
import android.content.ContentResolver;
2018-08-19 06:53:56 +00:00
import android.content.Context;
2019-01-07 15:05:24 +00:00
import android.content.Intent;
2018-11-17 08:07:24 +00:00
import android.content.pm.PackageManager;
import android.database.Cursor;
2018-12-25 08:50:41 +00:00
import android.net.Uri;
2018-11-17 08:07:24 +00:00
import android.provider.ContactsContract;
2018-08-19 06:53:56 +00:00
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
2018-08-26 13:24:16 +00:00
import java.io.Serializable;
2018-08-14 05:32:17 +00:00
import java.util.Date;
2018-12-25 08:50:41 +00:00
import java.util.HashMap;
import java.util.Map;
import java.util.Random;
import javax.mail.Address;
2018-11-17 08:07:24 +00:00
import javax.mail.internet.InternetAddress;
2018-08-08 06:55:47 +00:00
import androidx.annotation.NonNull;
2018-11-17 08:07:24 +00:00
import androidx.core.content.ContextCompat;
2018-08-08 06:55:47 +00:00
import androidx.room.Entity;
import androidx.room.ForeignKey;
import androidx.room.Index;
import androidx.room.PrimaryKey;
import static androidx.room.ForeignKey.CASCADE;
2018-11-12 13:45:02 +00:00
import static androidx.room.ForeignKey.SET_NULL;
2018-08-02 13:33:06 +00:00
// https://developer.android.com/training/data-storage/room/defining-data
@Entity(
tableName = EntityMessage.TABLE_NAME,
foreignKeys = {
2018-08-08 06:55:47 +00:00
@ForeignKey(childColumns = "account", entity = EntityAccount.class, parentColumns = "id", onDelete = CASCADE),
@ForeignKey(childColumns = "folder", entity = EntityFolder.class, parentColumns = "id", onDelete = CASCADE),
2018-11-12 13:45:02 +00:00
@ForeignKey(childColumns = "identity", entity = EntityIdentity.class, parentColumns = "id", onDelete = SET_NULL),
@ForeignKey(childColumns = "replying", entity = EntityMessage.class, parentColumns = "id", onDelete = SET_NULL),
@ForeignKey(childColumns = "forwarding", entity = EntityMessage.class, parentColumns = "id", onDelete = SET_NULL)
2018-08-02 13:33:06 +00:00
},
indices = {
@Index(value = {"account"}),
@Index(value = {"folder"}),
@Index(value = {"identity"}),
@Index(value = {"replying"}),
@Index(value = {"forwarding"}),
2018-12-06 10:59:57 +00:00
@Index(value = {"folder", "uid"}, unique = true),
@Index(value = {"msgid", "folder"}, unique = true),
2018-08-02 13:33:06 +00:00
@Index(value = {"thread"}),
2018-12-27 11:32:20 +00:00
@Index(value = {"sender"}),
2018-08-05 11:44:46 +00:00
@Index(value = {"received"}),
@Index(value = {"ui_seen"}),
@Index(value = {"ui_flagged"}),
2018-09-04 14:07:50 +00:00
@Index(value = {"ui_hide"}),
2018-10-16 11:29:12 +00:00
@Index(value = {"ui_found"}),
2018-11-26 15:57:00 +00:00
@Index(value = {"ui_ignored"}),
2019-01-07 15:05:24 +00:00
@Index(value = {"ui_browsed"}),
@Index(value = {"ui_snoozed"})
2018-08-02 13:33:06 +00:00
}
)
2018-08-26 13:24:16 +00:00
public class EntityMessage implements Serializable {
2018-08-02 13:33:06 +00:00
static final String TABLE_NAME = "message";
@PrimaryKey(autoGenerate = true)
public Long id;
2018-11-12 13:45:02 +00:00
@NonNull
2018-09-13 07:06:06 +00:00
public Long account; // performance
2018-08-02 13:33:06 +00:00
@NonNull
public Long folder;
public Long identity;
2018-11-09 07:22:44 +00:00
public String extra; // plus
2018-08-02 13:33:06 +00:00
public Long replying;
public Long forwarding;
2019-01-07 17:50:23 +00:00
public Long uid; // compose/moved = null
2018-08-02 13:33:06 +00:00
public String msgid;
public String references;
2018-09-18 08:55:59 +00:00
public String deliveredto;
2018-08-02 13:33:06 +00:00
public String inreplyto;
public String thread; // compose = null
2018-11-06 12:22:31 +00:00
public String avatar; // Contact lookup URI
2018-12-27 11:32:20 +00:00
public String sender; // sort key
public Address[] from;
public Address[] to;
public Address[] cc;
public Address[] bcc;
public Address[] reply;
2018-09-05 07:23:51 +00:00
public String headers;
public Boolean raw;
2018-08-02 13:33:06 +00:00
public String subject;
public Integer size;
2018-09-15 07:22:42 +00:00
@NonNull
public Boolean content = false;
2018-11-04 15:34:30 +00:00
public String preview;
2018-08-02 13:33:06 +00:00
public Long sent; // compose = null
@NonNull
public Long received; // compose = stored
@NonNull
2018-08-14 05:32:17 +00:00
public Long stored = new Date().getTime();
@NonNull
2018-11-26 15:41:33 +00:00
public Boolean seen = false;
2018-08-02 13:33:06 +00:00
@NonNull
2018-11-26 15:41:33 +00:00
public Boolean answered = false;
2018-11-24 18:14:28 +00:00
@NonNull
2018-11-26 15:41:33 +00:00
public Boolean flagged = false;
2018-11-25 16:52:30 +00:00
public String[] keywords; // user flags
2018-09-07 15:12:43 +00:00
@NonNull
2018-11-26 15:41:33 +00:00
public Boolean ui_seen = false;
2018-08-02 13:33:06 +00:00
@NonNull
2018-11-26 15:41:33 +00:00
public Boolean ui_answered = false;
2018-11-24 18:14:28 +00:00
@NonNull
2018-11-26 15:41:33 +00:00
public Boolean ui_flagged = false;
2018-09-07 15:12:43 +00:00
@NonNull
2018-11-26 15:41:33 +00:00
public Boolean ui_hide = false;
2018-09-01 16:34:16 +00:00
@NonNull
2018-11-26 15:41:33 +00:00
public Boolean ui_found = false;
2018-10-16 11:29:12 +00:00
@NonNull
2018-11-26 15:41:33 +00:00
public Boolean ui_ignored = false;
2018-11-26 15:57:00 +00:00
@NonNull
public Boolean ui_browsed = false;
2019-01-07 15:05:24 +00:00
public Long ui_snoozed;
2019-01-17 10:49:18 +00:00
public String warning; // persistent
public String error; // volatile
2018-11-19 13:14:02 +00:00
public Long last_attempt; // send
2018-08-02 13:33:06 +00:00
private static final Map<String, Uri> emailLookupUri = new HashMap<>();
2018-12-25 08:50:41 +00:00
static String generateMessageId() {
2018-12-09 14:49:43 +00:00
StringBuilder sb = new StringBuilder();
sb.append('<')
.append(Math.abs(new Random().nextInt())).append('.')
.append(System.currentTimeMillis()).append('.')
.append(BuildConfig.APPLICATION_ID).append("@localhost")
.append('>');
return sb.toString();
}
2018-08-21 14:25:42 +00:00
static File getFile(Context context, Long id) {
2018-08-19 06:53:56 +00:00
File dir = new File(context.getFilesDir(), "messages");
if (!dir.exists())
dir.mkdir();
2018-08-21 14:25:42 +00:00
return new File(dir, id.toString());
}
void write(Context context, String body) throws IOException {
File file = getFile(context, id);
2018-08-19 06:53:56 +00:00
BufferedWriter out = null;
try {
out = new BufferedWriter(new FileWriter(file));
2018-10-28 12:49:13 +00:00
out.write(body == null ? "" : body);
2018-08-19 06:53:56 +00:00
} finally {
if (out != null)
2018-12-20 15:12:24 +00:00
out.close();
2018-08-19 06:53:56 +00:00
}
}
String read(Context context) throws IOException {
2018-10-28 12:49:13 +00:00
return read(context, this.id);
2018-08-19 06:53:56 +00:00
}
static String read(Context context, Long id) throws IOException {
2018-08-21 14:25:42 +00:00
File file = getFile(context, id);
2018-08-19 06:53:56 +00:00
BufferedReader in = null;
try {
in = new BufferedReader(new FileReader(file));
StringBuilder body = new StringBuilder();
String line;
while ((line = in.readLine()) != null) {
body.append(line);
body.append('\n');
}
return body.toString();
} finally {
2018-12-20 19:38:23 +00:00
if (in != null)
in.close();
2018-08-19 06:53:56 +00:00
}
}
static File getRawFile(Context context, Long id) {
File dir = new File(context.getFilesDir(), "raw");
if (!dir.exists())
dir.mkdir();
return new File(dir, Long.toString(id));
}
static String getLookupUri(Context context, Address[] froms) {
if (froms == null)
return null;
2018-12-25 08:50:41 +00:00
2018-11-17 08:07:24 +00:00
if (ContextCompat.checkSelfPermission(context, Manifest.permission.READ_CONTACTS)
!= PackageManager.PERMISSION_GRANTED)
return null;
2018-12-25 08:50:41 +00:00
try {
for (Address from : froms) {
String email = ((InternetAddress) from).getAddress();
synchronized (emailLookupUri) {
Uri lookupUri = emailLookupUri.get(email);
if (lookupUri != null)
return lookupUri.toString();
}
Cursor cursor = null;
try {
ContentResolver resolver = context.getContentResolver();
cursor = resolver.query(ContactsContract.CommonDataKinds.Email.CONTENT_URI,
new String[]{
ContactsContract.CommonDataKinds.Photo.CONTACT_ID,
ContactsContract.Contacts.LOOKUP_KEY
},
ContactsContract.CommonDataKinds.Email.ADDRESS + " = ?",
new String[]{email}, null);
if (cursor != null && cursor.moveToNext()) {
int colContactId = cursor.getColumnIndex(ContactsContract.CommonDataKinds.Photo.CONTACT_ID);
int colLookupKey = cursor.getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY);
long contactId = cursor.getLong(colContactId);
String lookupKey = cursor.getString(colLookupKey);
Uri lookupUri = ContactsContract.Contacts.getLookupUri(contactId, lookupKey);
synchronized (emailLookupUri) {
emailLookupUri.put(email, lookupUri);
2018-12-25 08:50:41 +00:00
}
return lookupUri.toString();
2018-11-17 08:07:24 +00:00
}
} finally {
if (cursor != null)
cursor.close();
}
2018-11-17 08:07:24 +00:00
}
} catch (Throwable ex) {
Log.e(ex);
2018-11-17 08:07:24 +00:00
}
2018-12-07 14:23:17 +00:00
return null;
2018-11-17 08:07:24 +00:00
}
2019-01-07 15:05:24 +00:00
static void snooze(Context context, long id, Long wakeup) {
Intent snoozed = new Intent(context, ServiceSynchronize.class);
snoozed.setAction("snooze:" + id);
PendingIntent pi = PendingIntent.getService(context, ServiceSynchronize.PI_SNOOZED, snoozed, PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
if (wakeup == null) {
Log.i("Cancel snooze id=" + id);
am.cancel(pi);
} else {
Log.i("Set snooze id=" + id + " wakeup=" + new Date(wakeup));
am.set(AlarmManager.RTC_WAKEUP, wakeup, pi);
}
}
2018-12-04 17:42:45 +00:00
public boolean uiEquals(Object obj) {
if (obj instanceof EntityMessage) {
EntityMessage other = (EntityMessage) obj;
return (true &&
//(this.account == null ? other.account == null : this.account.equals(other.account)) &&
//this.folder.equals(other.folder) &&
//(this.identity == null ? other.identity == null : this.identity.equals(other.identity)) &&
//(this.replying == null ? other.replying == null : this.replying.equals(other.replying)) &&
//(this.forwarding == null ? other.forwarding == null : this.forwarding.equals(other.forwarding)) &&
2019-01-04 18:37:56 +00:00
(this.uid == null ? other.uid == null : this.uid.equals(other.uid)) &&
2018-12-04 17:42:45 +00:00
(this.msgid == null ? other.msgid == null : this.msgid.equals(other.msgid)) && // debug info
//(this.references == null ? other.references == null : this.references.equals(other.references)) &&
//(this.deliveredto == null ? other.deliveredto == null : this.deliveredto.equals(other.deliveredto)) &&
//(this.inreplyto == null ? other.inreplyto == null : this.inreplyto.equals(other.inreplyto)) &&
(this.thread == null ? other.thread == null : this.thread.equals(other.thread)) &&
(this.avatar == null ? other.avatar == null : this.avatar.equals(other.avatar)) &&
2018-12-25 08:22:07 +00:00
MessageHelper.equal(this.from, other.from) &&
MessageHelper.equal(this.to, other.to) &&
MessageHelper.equal(this.cc, other.cc) &&
MessageHelper.equal(this.bcc, other.bcc) &&
MessageHelper.equal(this.reply, other.reply) &&
2018-12-04 17:42:45 +00:00
(this.headers == null ? other.headers == null : this.headers.equals(other.headers)) &&
(this.raw == null ? other.raw == null : this.raw.equals(other.raw)) &&
2018-12-04 17:42:45 +00:00
(this.subject == null ? other.subject == null : this.subject.equals(other.subject)) &&
(this.size == null ? other.size == null : this.size.equals(other.size)) &&
this.content == other.content &&
(this.preview == null ? other.preview == null : this.preview.equals(other.preview)) &&
//(this.sent == null ? other.sent == null : this.sent.equals(other.sent)) &&
this.received.equals(other.received) &&
2018-12-11 12:56:48 +00:00
this.stored.equals(other.stored) && // updated after decryption
2018-12-04 17:42:45 +00:00
//this.seen.equals(other.seen) &&
//this.answered.equals(other.answered) &&
//this.flagged.equals(other.flagged) &&
Helper.equal(this.keywords, other.keywords) &&
this.ui_seen.equals(other.ui_seen) &&
this.ui_answered.equals(other.ui_answered) &&
this.ui_flagged.equals(other.ui_flagged) &&
this.ui_hide.equals(other.ui_hide) &&
this.ui_found.equals(other.ui_found) &&
this.ui_ignored.equals(other.ui_ignored) &&
2019-01-07 15:05:24 +00:00
//this.ui_browsed.equals(other.ui_browsed) &&
(this.ui_snoozed == null ? other.ui_snoozed == null : this.ui_snoozed.equals(other.ui_snoozed)) &&
2019-01-17 10:49:18 +00:00
(this.warning == null ? other.warning == null : this.warning.equals(other.warning)) &&
2018-12-04 17:42:45 +00:00
(this.error == null ? other.error == null : this.error.equals(other.error)));
}
return false;
}
2018-08-02 13:33:06 +00:00
@Override
public boolean equals(Object obj) {
if (obj instanceof EntityMessage) {
EntityMessage other = (EntityMessage) obj;
2018-08-04 19:54:33 +00:00
return ((this.account == null ? other.account == null : this.account.equals(other.account)) &&
2018-08-02 13:33:06 +00:00
this.folder.equals(other.folder) &&
2018-08-04 19:54:33 +00:00
(this.identity == null ? other.identity == null : this.identity.equals(other.identity)) &&
(this.replying == null ? other.replying == null : this.replying.equals(other.replying)) &&
2018-11-18 07:55:51 +00:00
(this.forwarding == null ? other.forwarding == null : this.forwarding.equals(other.forwarding)) &&
2018-08-04 19:54:33 +00:00
(this.uid == null ? other.uid == null : this.uid.equals(other.uid)) &&
(this.msgid == null ? other.msgid == null : this.msgid.equals(other.msgid)) &&
(this.references == null ? other.references == null : this.references.equals(other.references)) &&
2018-10-15 10:05:42 +00:00
(this.deliveredto == null ? other.deliveredto == null : this.deliveredto.equals(other.deliveredto)) &&
2018-08-04 19:54:33 +00:00
(this.inreplyto == null ? other.inreplyto == null : this.inreplyto.equals(other.inreplyto)) &&
2018-08-14 09:22:53 +00:00
(this.thread == null ? other.thread == null : this.thread.equals(other.thread)) &&
2018-09-08 17:04:10 +00:00
(this.avatar == null ? other.avatar == null : this.avatar.equals(other.avatar)) &&
2018-12-25 08:22:07 +00:00
MessageHelper.equal(this.from, other.from) &&
MessageHelper.equal(this.to, other.to) &&
MessageHelper.equal(this.cc, other.cc) &&
MessageHelper.equal(this.bcc, other.bcc) &&
MessageHelper.equal(this.reply, other.reply) &&
2018-09-07 15:12:43 +00:00
(this.headers == null ? other.headers == null : this.headers.equals(other.headers)) &&
(this.raw == null ? other.raw == null : this.raw.equals(other.raw)) &&
2018-08-04 19:54:33 +00:00
(this.subject == null ? other.subject == null : this.subject.equals(other.subject)) &&
2018-10-15 10:05:42 +00:00
(this.size == null ? other.size == null : this.size.equals(other.size)) &&
this.content == other.content &&
2018-11-04 15:34:30 +00:00
(this.preview == null ? other.preview == null : this.preview.equals(other.preview)) &&
2018-08-04 19:54:33 +00:00
(this.sent == null ? other.sent == null : this.sent.equals(other.sent)) &&
2018-08-02 13:33:06 +00:00
this.received.equals(other.received) &&
2018-09-07 15:12:43 +00:00
this.stored.equals(other.stored) &&
2018-08-02 13:33:06 +00:00
this.seen.equals(other.seen) &&
2018-11-24 18:14:28 +00:00
this.answered.equals(other.answered) &&
2018-09-07 15:12:43 +00:00
this.flagged.equals(other.flagged) &&
2018-11-26 10:30:04 +00:00
Helper.equal(this.keywords, other.keywords) &&
2018-10-15 10:05:42 +00:00
this.ui_seen.equals(other.ui_seen) &&
2018-11-24 18:14:28 +00:00
this.ui_answered.equals(other.ui_answered) &&
2018-09-07 15:12:43 +00:00
this.ui_flagged.equals(other.ui_flagged) &&
this.ui_hide.equals(other.ui_hide) &&
2018-09-07 15:12:43 +00:00
this.ui_found.equals(other.ui_found) &&
2018-10-16 11:29:12 +00:00
this.ui_ignored.equals(other.ui_ignored) &&
2019-01-07 15:05:24 +00:00
this.ui_browsed.equals(other.ui_browsed) &&
(this.ui_snoozed == null ? other.ui_snoozed == null : this.ui_snoozed.equals(other.ui_snoozed)) &&
2019-01-17 10:49:18 +00:00
(this.warning == null ? other.warning == null : this.warning.equals(other.warning)) &&
(this.error == null ? other.error == null : this.error.equals(other.error)));
2018-08-02 13:33:06 +00:00
}
return false;
}
}