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

184 lines
6.6 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
Copyright 2018 by Marcel Bokhorst (M66B)
*/
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.content.Context;
import android.os.Build;
2018-09-14 11:33:22 +00:00
import org.json.JSONException;
import org.json.JSONObject;
2018-08-08 06:55:47 +00:00
import androidx.annotation.NonNull;
import androidx.annotation.RequiresApi;
2018-08-08 06:55:47 +00:00
import androidx.room.Entity;
import androidx.room.PrimaryKey;
2018-08-02 13:33:06 +00:00
@Entity(
tableName = EntityAccount.TABLE_NAME,
indices = {
}
)
public class EntityAccount {
static final String TABLE_NAME = "account";
@PrimaryKey(autoGenerate = true)
public Long id;
public String name;
2018-11-14 13:51:50 +00:00
public String signature; // obsolete
2018-12-22 17:39:16 +00:00
public String prefix; // namespace
2018-08-02 13:33:06 +00:00
@NonNull
public String host; // IMAP
@NonNull
2018-10-23 07:52:20 +00:00
public Boolean starttls;
@NonNull
public Boolean insecure;
@NonNull
2018-08-02 13:33:06 +00:00
public Integer port;
@NonNull
public String user;
@NonNull
public String password;
@NonNull
2018-08-27 14:31:45 +00:00
public Integer auth_type;
@NonNull
2018-08-02 13:33:06 +00:00
public Boolean synchronize;
2018-10-07 06:53:09 +00:00
@NonNull
public Boolean primary;
@NonNull
public Boolean browse;
2018-09-12 16:54:48 +00:00
public Integer color;
@NonNull
public Boolean notify;
@NonNull
2018-10-07 06:53:09 +00:00
public Integer poll_interval; // keep-alive interval
public Long created;
public Boolean tbd;
2018-08-13 14:44:47 +00:00
public String state;
public String error;
2018-11-19 13:14:02 +00:00
public Long last_connected;
2018-08-02 13:33:06 +00:00
static String getNotificationChannelName(long account) {
return "notification." + account;
}
@RequiresApi(api = Build.VERSION_CODES.O)
void createNotificationChannel(Context context) {
NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
NotificationChannel notification = new NotificationChannel(
getNotificationChannelName(id), name,
NotificationManager.IMPORTANCE_HIGH);
notification.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
nm.createNotificationChannel(notification);
}
@RequiresApi(api = Build.VERSION_CODES.O)
void deleteNotificationChannel(Context context) {
NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
nm.deleteNotificationChannel(getNotificationChannelName(id));
}
2018-09-14 11:33:22 +00:00
public JSONObject toJSON() throws JSONException {
JSONObject json = new JSONObject();
json.put("name", name);
2018-12-22 17:39:16 +00:00
json.put("prefix", prefix);
2018-09-14 11:33:22 +00:00
json.put("host", host);
2018-10-24 11:14:56 +00:00
json.put("starttls", starttls);
json.put("insecure", insecure);
2018-09-14 11:33:22 +00:00
json.put("port", port);
json.put("user", user);
json.put("password", password);
2018-09-14 11:33:22 +00:00
json.put("auth_type", auth_type);
json.put("synchronize", synchronize);
2018-10-07 08:08:01 +00:00
json.put("primary", primary);
json.put("browse", browse);
2018-09-14 11:33:22 +00:00
if (color != null)
json.put("color", color);
json.put("notify", notify);
2018-09-14 11:33:22 +00:00
json.put("poll_interval", poll_interval);
2018-11-10 10:45:03 +00:00
// not created
// not state
// not error
2018-11-19 13:14:02 +00:00
// not last connected
2018-09-14 11:33:22 +00:00
return json;
}
public static EntityAccount fromJSON(JSONObject json) throws JSONException {
EntityAccount account = new EntityAccount();
if (json.has("name"))
account.name = json.getString("name");
2018-12-22 17:39:16 +00:00
if (json.has("prefix"))
account.prefix = json.getString("prefix");
2018-09-14 11:33:22 +00:00
account.host = json.getString("host");
2018-10-24 11:14:56 +00:00
account.starttls = (json.has("starttls") && json.getBoolean("starttls"));
account.insecure = (json.has("insecure") && json.getBoolean("insecure"));
2018-09-14 11:33:22 +00:00
account.port = json.getInt("port");
account.user = json.getString("user");
account.password = json.getString("password");
account.auth_type = json.getInt("auth_type");
account.synchronize = json.getBoolean("synchronize");
2018-10-07 08:08:01 +00:00
account.primary = json.getBoolean("primary");
if (json.has("browse"))
account.browse = json.getBoolean("browse");
else
account.browse = true;
2018-09-14 11:33:22 +00:00
if (json.has("color"))
account.color = json.getInt("color");
if (json.has("notify"))
account.notify = json.getBoolean("notify");
2018-09-14 11:33:22 +00:00
account.poll_interval = json.getInt("poll_interval");
return account;
}
2018-11-10 10:45:03 +00:00
@Override
public boolean equals(Object obj) {
if (obj instanceof EntityAccount) {
EntityAccount other = (EntityAccount) obj;
return ((this.name == null ? other.name == null : this.name.equals(other.name)) &&
2018-12-22 17:39:16 +00:00
(this.prefix == null ? other.prefix == null : this.prefix.equals(other.prefix)) &&
2018-11-10 10:45:03 +00:00
this.host.equals(other.host) &&
this.starttls == other.starttls &&
this.insecure == other.insecure &&
this.port.equals(other.port) &&
this.user.equals(other.user) &&
this.password.equals(other.password) &&
this.auth_type.equals(other.auth_type) &&
this.synchronize.equals(other.synchronize) &&
this.primary.equals(other.primary) &&
this.browse.equals(other.browse) &&
2018-11-10 10:45:03 +00:00
(this.color == null ? other.color == null : this.color.equals(other.color)) &&
this.notify.equals(other.notify) &&
2018-11-10 10:45:03 +00:00
this.poll_interval.equals(other.poll_interval) &&
(this.created == null ? other.created == null : this.created.equals(other.created)) &&
(this.tbd == null ? other.tbd == null : this.tbd.equals(other.tbd)) &&
2018-11-10 10:45:03 +00:00
(this.state == null ? other.state == null : this.state.equals(other.state)) &&
(this.error == null ? other.error == null : this.error.equals(other.error)));
} else
return false;
}
2018-08-08 10:22:12 +00:00
@Override
public String toString() {
return name + (primary ? "" : "");
}
2018-08-02 13:33:06 +00:00
}