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

134 lines
4.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)
*/
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.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-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;
2018-09-12 16:54:48 +00:00
public Integer color;
@NonNull
2018-10-07 06:53:09 +00:00
public Integer poll_interval; // keep-alive interval
public Long created;
2018-08-13 14:44:47 +00:00
public String state;
public String error;
2018-08-02 13:33:06 +00:00
2018-09-14 11:33:22 +00:00
public JSONObject toJSON() throws JSONException {
JSONObject json = new JSONObject();
json.put("name", name);
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);
2018-09-14 11:33:22 +00:00
if (color != null)
json.put("color", color);
json.put("poll_interval", poll_interval);
2018-11-10 10:45:03 +00:00
// not created
// not state
// not error
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");
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");
2018-09-14 11:33:22 +00:00
if (json.has("color"))
account.color = json.getInt("color");
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)) &&
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.color == null ? other.color == null : this.color.equals(other.color)) &&
this.poll_interval.equals(other.poll_interval) &&
(this.created == null ? other.created == null : this.created.equals(other.created)) &&
(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
}