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

128 lines
4.7 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
2021-01-01 07:56:36 +00:00
Copyright 2018-2021 by Marcel Bokhorst (M66B)
2018-08-02 13:33:06 +00:00
*/
2019-10-01 11:56:48 +00:00
import android.content.Context;
import android.content.SharedPreferences;
import android.graphics.Color;
2019-10-01 11:56:48 +00:00
import androidx.preference.PreferenceManager;
2019-01-27 16:16:21 +00:00
import androidx.room.Ignore;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
2019-08-04 11:43:37 +00:00
import javax.mail.Address;
2018-08-02 13:33:06 +00:00
public class TupleMessageEx extends EntityMessage {
2019-11-23 12:48:59 +00:00
public Integer accountProtocol;
2018-08-22 16:37:10 +00:00
public String accountName;
2018-09-12 16:54:48 +00:00
public Integer accountColor;
public boolean accountNotify;
public boolean accountAutoSeen;
2018-08-02 13:33:06 +00:00
public String folderName;
public Integer folderColor;
2018-09-19 17:47:03 +00:00
public String folderDisplay;
2018-08-02 13:33:06 +00:00
public String folderType;
2020-06-15 10:34:25 +00:00
public boolean folderUnified;
2019-07-07 07:25:52 +00:00
public boolean folderReadOnly;
public String identityName;
public String identityEmail;
public Boolean identitySynchronize;
2019-08-04 11:43:37 +00:00
public Address[] senders;
2020-05-05 20:30:57 +00:00
public Address[] recipients;
2018-08-02 13:33:06 +00:00
public int count;
public int unseen;
2018-09-19 17:04:52 +00:00
public int unflagged;
2019-01-01 14:26:30 +00:00
public int drafts;
2019-11-27 09:40:43 +00:00
public int signed;
2019-11-17 11:16:06 +00:00
public int encrypted;
2018-12-30 07:58:02 +00:00
public int visible;
public int visible_unseen;
2019-04-05 06:57:50 +00:00
public Long totalSize;
2020-02-01 13:29:47 +00:00
public Integer ui_priority;
public Integer ui_importance;
2019-07-07 07:25:52 +00:00
2019-01-27 16:16:21 +00:00
@Ignore
boolean duplicate;
2019-10-01 11:56:48 +00:00
@Ignore
public Integer[] keyword_colors;
2019-10-01 11:56:48 +00:00
String getFolderName(Context context) {
return (folderDisplay == null
2020-06-06 08:02:11 +00:00
? EntityFolder.localizeName(context, folderName)
2019-10-01 11:56:48 +00:00
: folderDisplay);
}
2018-08-02 13:33:06 +00:00
void resolveKeywordColors(Context context) {
List<Integer> color = new ArrayList<>();
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
for (int i = 0; i < this.keywords.length; i++) {
String key = "keyword." + this.keywords[i];
if (prefs.contains(key))
color.add(prefs.getInt(key, Color.GRAY));
else
color.add(null);
}
this.keyword_colors = color.toArray(new Integer[0]);
}
2018-08-02 13:33:06 +00:00
@Override
public boolean equals(Object obj) {
if (obj instanceof TupleMessageEx) {
TupleMessageEx other = (TupleMessageEx) obj;
return (super.equals(obj) &&
2019-11-23 12:48:59 +00:00
this.accountProtocol.equals(other.accountProtocol) &&
2019-02-26 10:05:21 +00:00
Objects.equals(this.accountName, other.accountName) &&
Objects.equals(this.accountColor, other.accountColor) &&
this.accountNotify == other.accountNotify &&
this.accountAutoSeen == other.accountAutoSeen &&
2018-08-22 16:37:10 +00:00
this.folderName.equals(other.folderName) &&
2019-02-26 10:05:21 +00:00
Objects.equals(this.folderDisplay, other.folderDisplay) &&
2018-08-02 13:33:06 +00:00
this.folderType.equals(other.folderType) &&
2020-06-15 10:34:25 +00:00
this.folderUnified == other.folderUnified &&
2019-07-07 07:25:52 +00:00
this.folderReadOnly == other.folderReadOnly &&
2019-06-25 07:46:31 +00:00
Objects.equals(this.identityName, other.identityName) &&
Objects.equals(this.identityEmail, other.identityEmail) &&
Objects.equals(this.identitySynchronize, other.identitySynchronize) &&
2020-01-18 10:28:37 +00:00
MessageHelper.equal(this.senders, other.senders) &&
2020-05-05 20:30:57 +00:00
MessageHelper.equal(this.recipients, other.recipients) &&
2018-08-02 13:33:06 +00:00
this.count == other.count &&
this.unseen == other.unseen &&
2018-09-19 17:04:52 +00:00
this.unflagged == other.unflagged &&
2019-05-07 15:52:14 +00:00
this.drafts == other.drafts &&
2019-11-27 09:40:43 +00:00
this.signed == other.signed &&
2019-11-17 11:16:06 +00:00
this.encrypted == other.encrypted &&
2018-12-30 07:58:02 +00:00
this.visible == other.visible &&
this.visible_unseen == other.visible_unseen &&
2019-04-05 06:57:50 +00:00
Objects.equals(this.totalSize, other.totalSize) &&
2020-02-01 13:29:47 +00:00
Objects.equals(this.ui_priority, other.ui_priority) &&
Objects.equals(this.ui_importance, other.ui_importance) &&
this.duplicate == other.duplicate);
2018-08-02 13:33:06 +00:00
}
2018-12-04 17:42:45 +00:00
return false;
2018-08-02 13:33:06 +00:00
}
}