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

488 lines
16 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
2020-01-05 17:32:53 +00:00
Copyright 2018-2020 by Marcel Bokhorst (M66B)
2018-08-02 13:33:06 +00:00
*/
2018-12-01 09:17:49 +00:00
import android.content.Context;
import androidx.annotation.NonNull;
import androidx.room.Entity;
import androidx.room.ForeignKey;
import androidx.room.Index;
import androidx.room.PrimaryKey;
2019-02-17 19:29:51 +00:00
import org.json.JSONArray;
2018-09-14 11:33:22 +00:00
import org.json.JSONException;
import org.json.JSONObject;
2018-10-06 21:44:34 +00:00
import java.io.Serializable;
2018-11-15 07:20:48 +00:00
import java.text.Collator;
2018-08-02 13:33:06 +00:00
import java.util.Arrays;
2018-11-15 07:20:48 +00:00
import java.util.Collections;
import java.util.Comparator;
2019-02-17 18:04:22 +00:00
import java.util.Date;
2019-09-13 13:04:51 +00:00
import java.util.HashMap;
2018-08-02 13:33:06 +00:00
import java.util.List;
2018-11-15 07:20:48 +00:00
import java.util.Locale;
2019-09-13 13:04:51 +00:00
import java.util.Map;
2019-02-26 10:05:21 +00:00
import java.util.Objects;
2018-08-02 13:33:06 +00:00
2018-08-08 06:55:47 +00:00
import static androidx.room.ForeignKey.CASCADE;
2018-08-02 13:33:06 +00:00
@Entity(
tableName = EntityFolder.TABLE_NAME,
foreignKeys = {
@ForeignKey(childColumns = "account", entity = EntityAccount.class, parentColumns = "id", onDelete = CASCADE)
2018-08-02 13:33:06 +00:00
},
indices = {
@Index(value = {"account", "name"}, unique = true),
2018-08-02 13:33:06 +00:00
@Index(value = {"account"}),
@Index(value = {"name"}),
@Index(value = {"type"}),
@Index(value = {"unified"})
2018-08-02 13:33:06 +00:00
}
)
2019-05-01 05:58:45 +00:00
public class EntityFolder extends EntityOrder implements Serializable {
2018-08-02 13:33:06 +00:00
static final String TABLE_NAME = "folder";
@PrimaryKey(autoGenerate = true)
public Long id;
public Long account; // Outbox = null
2019-03-17 19:32:57 +00:00
public Long parent;
2019-07-24 20:01:27 +00:00
public Long uidv; // UIDValidity
@NonNull
public String name;
@NonNull
public String type;
@NonNull
2019-03-18 08:33:40 +00:00
public Integer level = 0; // obsolete
2018-12-03 09:39:44 +00:00
@NonNull
public Boolean synchronize;
@NonNull
public Boolean poll = false;
@NonNull
public Boolean download = true;
2019-04-25 15:23:56 +00:00
public Boolean subscribed;
@NonNull
2018-11-14 09:49:59 +00:00
public Integer sync_days;
@NonNull
public Integer keep_days;
@NonNull
public Boolean auto_delete = false;
public String display;
2019-10-07 16:15:02 +00:00
public Integer color;
@NonNull
2019-06-15 09:58:56 +00:00
public Boolean hide = false;
@NonNull
2019-03-18 08:33:40 +00:00
public Boolean collapsed = false;
@NonNull
public Boolean unified = false;
@NonNull
public Boolean navigation = false;
@NonNull
public Boolean notify = false;
2019-03-09 08:20:46 +00:00
public Integer total; // messages on server
2018-11-26 08:12:44 +00:00
public String[] keywords;
2019-01-05 07:38:16 +00:00
@NonNull
2019-06-24 10:45:52 +00:00
public Integer initialize = DEFAULT_KEEP;
2018-12-22 11:40:47 +00:00
public Boolean tbc; // to be created
public Boolean tbd; // to be deleted
2019-07-29 19:53:32 +00:00
public String rename;
2018-08-13 14:44:47 +00:00
public String state;
2018-12-03 12:41:36 +00:00
public String sync_state;
2019-04-30 07:06:32 +00:00
@NonNull
public Boolean read_only = false;
2019-07-07 06:17:27 +00:00
@NonNull
public Boolean selectable = true;
public String error;
2019-01-01 18:49:21 +00:00
public Long last_sync;
2018-08-09 07:02:41 +00:00
static final String INBOX = "Inbox";
static final String OUTBOX = "Outbox";
static final String ARCHIVE = "All";
static final String DRAFTS = "Drafts";
static final String TRASH = "Trash";
static final String JUNK = "Junk";
static final String SENT = "Sent";
static final String SYSTEM = "System";
2018-08-09 07:02:41 +00:00
static final String USER = "User";
2018-08-02 13:33:06 +00:00
2018-12-17 08:49:36 +00:00
// https://www.iana.org/assignments/imap-mailbox-name-attributes/imap-mailbox-name-attributes.xhtml
2019-03-14 19:33:01 +00:00
private static final List<String> SYSTEM_FOLDER_ATTR = Collections.unmodifiableList(Arrays.asList(
"All",
2018-12-17 08:49:36 +00:00
"Archive",
"Drafts",
"Trash",
"Junk",
"Sent",
"Important",
"Flagged"
2019-03-14 19:33:01 +00:00
));
private static final List<String> SYSTEM_FOLDER_TYPE = Collections.unmodifiableList(Arrays.asList(
2019-02-02 11:50:57 +00:00
ARCHIVE, // All
2018-08-09 07:02:41 +00:00
ARCHIVE,
DRAFTS,
TRASH,
JUNK,
SENT,
2019-02-02 11:50:57 +00:00
SYSTEM, // Important
SYSTEM // Flagged
2019-03-14 19:33:01 +00:00
)); // MUST match SYSTEM_FOLDER_ATTR
2018-08-02 13:33:06 +00:00
2019-03-14 19:33:01 +00:00
static final List<String> FOLDER_SORT_ORDER = Collections.unmodifiableList(Arrays.asList(
2018-12-17 08:50:11 +00:00
INBOX,
2018-12-18 15:42:28 +00:00
OUTBOX,
2018-08-09 07:02:41 +00:00
DRAFTS,
SENT,
TRASH,
JUNK,
SYSTEM,
2020-02-10 10:33:57 +00:00
USER,
ARCHIVE
2019-03-14 19:33:01 +00:00
));
2018-08-06 16:01:56 +00:00
2019-09-13 13:04:51 +00:00
private static Map<String, String> GUESS_FOLDER_TYPE = new HashMap<String, String>() {{
put("all", EntityFolder.ARCHIVE);
put("archive", EntityFolder.ARCHIVE);
put("draft", EntityFolder.DRAFTS);
put("concept", EntityFolder.DRAFTS);
put("trash", EntityFolder.TRASH);
put("junk", EntityFolder.JUNK);
put("spam", EntityFolder.JUNK);
put("sent", EntityFolder.SENT);
}};
2019-01-01 13:37:03 +00:00
static final int DEFAULT_SYNC = 7; // days
static final int DEFAULT_KEEP = 30; // days
2018-08-06 20:14:11 +00:00
2019-09-13 13:04:51 +00:00
private static final List<String> SYSTEM_FOLDER_SYNC = Collections.unmodifiableList(Arrays.asList(
2019-02-02 07:28:14 +00:00
INBOX,
2018-08-09 07:02:41 +00:00
DRAFTS,
2018-12-08 07:46:22 +00:00
SENT,
ARCHIVE,
2018-12-27 14:49:47 +00:00
TRASH,
JUNK
2019-03-14 19:33:01 +00:00
));
2019-09-13 13:04:51 +00:00
private static final List<Boolean> SYSTEM_FOLDER_DOWNLOAD = Collections.unmodifiableList(Arrays.asList(
2019-02-02 07:28:14 +00:00
true, // inbox
true, // drafts
false, // sent
false, // archive
false, // trash
false // junk
2019-03-14 19:33:01 +00:00
)); // MUST match SYSTEM_FOLDER_SYNC
2018-08-06 20:14:11 +00:00
2018-08-15 09:50:39 +00:00
public EntityFolder() {
}
2019-09-13 13:04:51 +00:00
public EntityFolder(String fullName, String type) {
this.name = fullName;
this.type = type;
2020-02-06 11:24:32 +00:00
setProperties();
}
2019-09-13 13:04:51 +00:00
2020-02-06 11:24:32 +00:00
void setProperties() {
2019-09-13 13:04:51 +00:00
int sync = EntityFolder.SYSTEM_FOLDER_SYNC.indexOf(type);
this.synchronize = (sync >= 0);
this.download = (sync < 0 || EntityFolder.SYSTEM_FOLDER_DOWNLOAD.get(sync));
this.sync_days = EntityFolder.DEFAULT_SYNC;
this.keep_days = EntityFolder.DEFAULT_KEEP;
if (EntityFolder.INBOX.equals(type)) {
this.unified = true;
this.notify = true;
}
}
static String getNotificationChannelId(long id) {
return "notification.folder." + id;
}
2019-02-17 19:29:51 +00:00
JSONArray getSyncArgs() {
2019-02-17 18:04:22 +00:00
int days = sync_days;
if (last_sync != null) {
int ago_days = (int) ((new Date().getTime() - last_sync) / (24 * 3600 * 1000L)) + 1;
if (ago_days > days)
days = ago_days;
}
2019-02-17 19:29:51 +00:00
JSONArray jargs = new JSONArray();
2019-08-17 08:15:40 +00:00
jargs.put(initialize == 0 ? Math.min(days, keep_days) : Math.min(keep_days, initialize));
2019-02-17 19:29:51 +00:00
jargs.put(keep_days);
jargs.put(download);
jargs.put(auto_delete);
2019-07-19 05:11:05 +00:00
jargs.put(initialize);
2019-02-17 19:29:51 +00:00
return jargs;
2019-02-17 18:04:22 +00:00
}
2019-01-21 18:54:33 +00:00
static int getIcon(String type) {
if (EntityFolder.INBOX.equals(type))
2019-05-11 18:17:36 +00:00
return R.drawable.baseline_inbox_24;
2019-07-23 07:21:46 +00:00
if (EntityFolder.OUTBOX.equals(type))
return R.drawable.baseline_send_24;
2019-05-11 18:17:36 +00:00
if (EntityFolder.DRAFTS.equals(type))
return R.drawable.baseline_drafts_24;
2019-05-22 14:29:18 +00:00
if (EntityFolder.SENT.equals(type))
2019-07-23 07:21:46 +00:00
return R.drawable.baseline_forward_24;
2019-01-21 18:54:33 +00:00
if (EntityFolder.ARCHIVE.equals(type))
return R.drawable.baseline_archive_24;
if (EntityFolder.TRASH.equals(type))
return R.drawable.baseline_delete_24;
if (EntityFolder.JUNK.equals(type))
return R.drawable.baseline_flag_24;
if (EntityFolder.SYSTEM.equals(type))
return R.drawable.baseline_folder_special_24;
2019-01-21 18:54:33 +00:00
return R.drawable.baseline_folder_24;
}
2018-12-01 09:17:49 +00:00
String getDisplayName(Context context) {
return (display == null ? Helper.localizeFolderName(context, name) : display);
}
2019-03-18 08:33:40 +00:00
String getDisplayName(Context context, EntityFolder parent) {
String n = name;
if (parent != null && name.startsWith(parent.name))
n = n.substring(parent.name.length() + 1);
return (display == null ? Helper.localizeFolderName(context, n) : display);
}
2019-05-01 05:58:45 +00:00
@Override
Long getSortId() {
return id;
}
2019-05-01 11:08:15 +00:00
@Override
String[] getSortTitle(Context context) {
return new String[]{getDisplayName(context), null};
2019-05-01 05:58:45 +00:00
}
2018-11-11 07:07:41 +00:00
boolean isOutgoing() {
return isOutgoing(this.type);
}
static boolean isOutgoing(String type) {
return DRAFTS.equals(type) || OUTBOX.equals(type) || SENT.equals(type);
}
2019-07-07 06:17:27 +00:00
static String getType(String[] attrs, String fullName, boolean selectable) {
2020-02-06 10:19:44 +00:00
// https://tools.ietf.org/html/rfc3501#section-5.1
2020-02-15 14:53:11 +00:00
if ("INBOX".equals(fullName.toUpperCase(Locale.ROOT)))
2020-02-06 10:19:44 +00:00
return INBOX;
2019-06-15 17:28:57 +00:00
// https://www.iana.org/assignments/imap-mailbox-name-attributes/imap-mailbox-name-attributes.xhtml
2019-02-01 21:06:14 +00:00
for (String attr : attrs) {
2019-07-07 06:17:27 +00:00
if ((selectable && "\\Noselect".equals(attr)) || "\\NonExistent".equals(attr))
2019-02-01 21:06:14 +00:00
return null;
if (attr.startsWith("\\")) {
int index = SYSTEM_FOLDER_ATTR.indexOf(attr.substring(1));
if (index >= 0)
return SYSTEM_FOLDER_TYPE.get(index);
}
}
return USER;
}
2019-09-13 13:04:51 +00:00
static String guessType(String fullName) {
for (String guess : GUESS_FOLDER_TYPE.keySet())
2019-09-23 20:07:22 +00:00
if (fullName.toLowerCase(Locale.ROOT).contains(guess))
2019-09-13 13:04:51 +00:00
return GUESS_FOLDER_TYPE.get(guess);
return null;
}
2019-03-17 19:32:57 +00:00
String getParentName(Character separator) {
if (separator == null)
return null;
else {
int p = name.lastIndexOf(separator);
if (p < 0)
return null;
else
return name.substring(0, p);
}
}
2018-08-02 13:33:06 +00:00
@Override
public boolean equals(Object obj) {
if (obj instanceof EntityFolder) {
EntityFolder other = (EntityFolder) obj;
2018-08-15 19:34:22 +00:00
return (this.id.equals(other.id) &&
2019-02-26 10:05:21 +00:00
Objects.equals(this.account, other.account) &&
2019-07-24 20:02:17 +00:00
Objects.equals(this.parent, other.parent) &&
2019-07-24 20:01:27 +00:00
Objects.equals(this.uidv, other.uidv) &&
2018-08-02 13:33:06 +00:00
this.name.equals(other.name) &&
this.type.equals(other.type) &&
2019-07-24 20:02:17 +00:00
this.level.equals(other.level) &&
2018-08-02 13:33:06 +00:00
this.synchronize.equals(other.synchronize) &&
this.poll.equals(other.poll) &&
2019-01-05 07:38:16 +00:00
this.download.equals(other.download) &&
2019-04-25 15:23:56 +00:00
Objects.equals(this.subscribed, other.subscribed) &&
this.sync_days.equals(other.sync_days) &&
this.keep_days.equals(other.keep_days) &&
2019-07-24 20:02:17 +00:00
this.auto_delete.equals(other.auto_delete) &&
2019-02-26 10:05:21 +00:00
Objects.equals(this.display, other.display) &&
2019-10-07 16:15:02 +00:00
Objects.equals(this.color, other.color) &&
2019-04-29 11:09:11 +00:00
Objects.equals(this.order, other.order) &&
2019-06-15 09:58:56 +00:00
this.hide == other.hide &&
2019-03-18 08:33:40 +00:00
this.collapsed == other.collapsed &&
this.unified == other.unified &&
2019-07-24 20:02:17 +00:00
this.navigation == other.navigation &&
this.notify == other.notify &&
2019-03-09 08:20:46 +00:00
Objects.equals(this.total, other.total) &&
Helper.equal(this.keywords, other.keywords) &&
2019-07-24 20:02:17 +00:00
this.initialize.equals(other.initialize) &&
2019-04-29 11:09:11 +00:00
Objects.equals(this.tbc, other.tbc) &&
2019-02-26 10:05:21 +00:00
Objects.equals(this.tbd, other.tbd) &&
2019-10-07 16:15:02 +00:00
Objects.equals(this.rename, other.rename) &&
2019-02-26 10:05:21 +00:00
Objects.equals(this.state, other.state) &&
Objects.equals(this.sync_state, other.sync_state) &&
2019-07-24 20:02:17 +00:00
this.read_only == other.read_only &&
this.selectable == other.selectable &&
2019-02-26 10:05:21 +00:00
Objects.equals(this.error, other.error) &&
Objects.equals(this.last_sync, other.last_sync));
2018-08-02 13:33:06 +00:00
} else
return false;
}
2018-08-10 09:45:36 +00:00
@Override
public String toString() {
2019-05-28 11:42:19 +00:00
return name;
2018-08-10 09:45:36 +00:00
}
2018-08-15 09:50:39 +00:00
2018-09-14 11:33:22 +00:00
public JSONObject toJSON() throws JSONException {
JSONObject json = new JSONObject();
json.put("id", id);
2019-06-13 20:08:43 +00:00
json.put("order", order);
2018-09-14 11:33:22 +00:00
json.put("name", name);
json.put("type", type);
json.put("synchronize", synchronize);
json.put("poll", poll);
2019-01-05 07:38:16 +00:00
json.put("download", download);
2018-11-14 09:49:59 +00:00
json.put("sync_days", sync_days);
json.put("keep_days", keep_days);
json.put("auto_delete", auto_delete);
2018-10-06 21:36:11 +00:00
json.put("display", display);
2019-10-07 16:15:02 +00:00
json.put("color", color);
2019-06-15 09:58:56 +00:00
json.put("hide", hide);
2019-03-18 08:33:40 +00:00
json.put("collapsed", collapsed);
2018-10-06 21:36:11 +00:00
json.put("unified", unified);
json.put("navigation", navigation);
json.put("notify", notify);
2018-09-14 11:33:22 +00:00
return json;
}
public static EntityFolder fromJSON(JSONObject json) throws JSONException {
EntityFolder folder = new EntityFolder();
2019-02-28 11:04:34 +00:00
if (json.has("id"))
folder.id = json.getLong("id");
2019-06-13 20:08:43 +00:00
if (json.has("order"))
folder.order = json.getInt("order");
2018-09-14 11:33:22 +00:00
folder.name = json.getString("name");
folder.type = json.getString("type");
2018-12-03 09:39:44 +00:00
2018-09-14 11:33:22 +00:00
folder.synchronize = json.getBoolean("synchronize");
2019-01-05 07:38:16 +00:00
if (json.has("poll"))
folder.poll = json.getBoolean("poll");
2019-01-05 07:38:16 +00:00
if (json.has("download"))
folder.download = json.getBoolean("download");
2018-11-14 09:49:59 +00:00
if (json.has("after"))
folder.sync_days = json.getInt("after");
else
folder.sync_days = json.getInt("sync_days");
if (json.has("keep_days"))
folder.keep_days = json.getInt("keep_days");
else
folder.keep_days = folder.sync_days;
if (json.has("auto_delete"))
folder.auto_delete = json.getBoolean("auto_delete");
2019-03-14 17:52:15 +00:00
if (json.has("display") && !json.isNull("display"))
2018-10-06 21:36:11 +00:00
folder.display = json.getString("display");
2019-10-07 16:15:02 +00:00
if (json.has("color") && !json.isNull("color"))
folder.color = json.getInt("color");
2019-06-15 09:58:56 +00:00
if (json.has("hide"))
folder.hide = json.getBoolean("hide");
2019-03-18 08:33:40 +00:00
if (json.has("collapsed"))
folder.collapsed = json.getBoolean("collapsed");
2018-10-06 21:36:11 +00:00
folder.unified = json.getBoolean("unified");
if (json.has("navigation"))
folder.navigation = json.getBoolean("navigation");
if (json.has("notify"))
folder.notify = json.getBoolean("notify");
2018-09-14 11:33:22 +00:00
return folder;
}
2018-11-15 07:20:48 +00:00
2019-05-06 20:34:18 +00:00
@Override
Comparator getComparator(final Context context) {
2018-11-15 07:20:48 +00:00
final Collator collator = Collator.getInstance(Locale.getDefault());
collator.setStrength(Collator.SECONDARY); // Case insensitive, process accents etc
2019-05-06 20:34:18 +00:00
return new Comparator() {
2018-11-15 07:20:48 +00:00
@Override
2019-05-06 20:34:18 +00:00
public int compare(Object o1, Object o2) {
EntityFolder f1 = (EntityFolder) o1;
EntityFolder f2 = (EntityFolder) o2;
int o = Integer.compare(
f1.order == null ? -1 : f1.order,
f2.order == null ? -1 : f2.order);
if (o != 0)
return o;
2018-12-22 10:44:44 +00:00
int i1 = EntityFolder.FOLDER_SORT_ORDER.indexOf(f1.type);
int i2 = EntityFolder.FOLDER_SORT_ORDER.indexOf(f2.type);
int s = Integer.compare(i1, i2);
2018-11-15 07:20:48 +00:00
if (s != 0)
return s;
2019-03-04 07:48:36 +00:00
2019-05-06 20:34:18 +00:00
int c = -f1.synchronize.compareTo(f2.synchronize);
if (c != 0)
return c;
2019-03-04 07:48:36 +00:00
2019-06-28 07:46:18 +00:00
if (context == null)
return collator.compare(f1.name, f2.name);
2018-12-22 15:13:52 +00:00
String name1 = f1.getDisplayName(context);
String name2 = f2.getDisplayName(context);
return collator.compare(name1, name2);
2018-11-15 07:20:48 +00:00
}
2019-05-06 20:34:18 +00:00
};
2018-11-15 07:20:48 +00:00
}
2018-08-02 13:33:06 +00:00
}