2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.entities;
|
|
|
|
|
2014-11-09 15:20:36 +00:00
|
|
|
import android.content.ContentValues;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.os.SystemClock;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-10-15 22:21:47 +00:00
|
|
|
import eu.siacs.conversations.crypto.PgpDecryptionService;
|
2014-10-22 16:38:44 +00:00
|
|
|
import net.java.otr4j.crypto.OtrCryptoEngineImpl;
|
|
|
|
import net.java.otr4j.crypto.OtrCryptoException;
|
|
|
|
|
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
|
2014-12-23 22:19:00 +00:00
|
|
|
import java.security.PublicKey;
|
2014-11-09 15:20:36 +00:00
|
|
|
import java.security.interfaces.DSAPublicKey;
|
2014-12-21 20:43:58 +00:00
|
|
|
import java.util.Collection;
|
2014-11-09 15:20:36 +00:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.concurrent.CopyOnWriteArrayList;
|
2014-12-21 20:43:58 +00:00
|
|
|
import java.util.concurrent.CopyOnWriteArraySet;
|
2014-11-09 15:20:36 +00:00
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
|
|
|
import eu.siacs.conversations.R;
|
2015-05-26 02:36:32 +00:00
|
|
|
import eu.siacs.conversations.crypto.OtrService;
|
2015-06-25 14:56:34 +00:00
|
|
|
import eu.siacs.conversations.crypto.axolotl.AxolotlService;
|
2014-10-22 16:38:44 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
|
|
import eu.siacs.conversations.xmpp.XmppConnection;
|
2014-11-05 20:55:47 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
|
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public class Account extends AbstractEntity {
|
|
|
|
|
|
|
|
public static final String TABLENAME = "accounts";
|
|
|
|
|
|
|
|
public static final String USERNAME = "username";
|
|
|
|
public static final String SERVER = "server";
|
|
|
|
public static final String PASSWORD = "password";
|
|
|
|
public static final String OPTIONS = "options";
|
|
|
|
public static final String ROSTERVERSION = "rosterversion";
|
|
|
|
public static final String KEYS = "keys";
|
|
|
|
public static final String AVATAR = "avatar";
|
2015-10-29 12:41:08 +00:00
|
|
|
public static final String DISPLAY_NAME = "display_name";
|
2015-11-28 19:11:38 +00:00
|
|
|
public static final String HOSTNAME = "hostname";
|
|
|
|
public static final String PORT = "port";
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2014-11-15 14:42:40 +00:00
|
|
|
public static final String PINNED_MECHANISM_KEY = "pinned_mechanism";
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public static final int OPTION_USETLS = 0;
|
|
|
|
public static final int OPTION_DISABLED = 1;
|
|
|
|
public static final int OPTION_REGISTER = 2;
|
|
|
|
public static final int OPTION_USECOMPRESSION = 3;
|
|
|
|
|
2015-06-28 11:14:21 +00:00
|
|
|
public boolean httpUploadAvailable() {
|
|
|
|
return xmppConnection != null && xmppConnection.getFeatures().httpUpload();
|
|
|
|
}
|
|
|
|
|
2015-10-29 12:41:08 +00:00
|
|
|
public void setDisplayName(String displayName) {
|
|
|
|
this.displayName = displayName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDisplayName() {
|
|
|
|
return displayName;
|
|
|
|
}
|
|
|
|
|
2015-11-01 13:50:06 +00:00
|
|
|
public XmppConnection.Identity getServerIdentity() {
|
|
|
|
if (xmppConnection == null) {
|
|
|
|
return XmppConnection.Identity.UNKNOWN;
|
|
|
|
} else {
|
|
|
|
return xmppConnection.getServerIdentity();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-28 19:11:38 +00:00
|
|
|
public enum State {
|
2014-11-15 16:19:42 +00:00
|
|
|
DISABLED,
|
|
|
|
OFFLINE,
|
|
|
|
CONNECTING,
|
|
|
|
ONLINE,
|
|
|
|
NO_INTERNET,
|
2014-11-15 16:09:02 +00:00
|
|
|
UNAUTHORIZED(true),
|
|
|
|
SERVER_NOT_FOUND(true),
|
|
|
|
REGISTRATION_FAILED(true),
|
|
|
|
REGISTRATION_CONFLICT(true),
|
2014-11-15 16:19:42 +00:00
|
|
|
REGISTRATION_SUCCESSFUL,
|
|
|
|
REGISTRATION_NOT_SUPPORTED(true),
|
2014-11-15 16:29:58 +00:00
|
|
|
SECURITY_ERROR(true),
|
2015-09-01 20:37:52 +00:00
|
|
|
INCOMPATIBLE_SERVER(true),
|
2015-11-30 15:01:48 +00:00
|
|
|
TOR_NOT_AVAILABLE(true);
|
2014-11-15 16:09:02 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
private final boolean isError;
|
2014-11-15 16:09:02 +00:00
|
|
|
|
|
|
|
public boolean isError() {
|
|
|
|
return this.isError;
|
|
|
|
}
|
|
|
|
|
|
|
|
private State(final boolean isError) {
|
|
|
|
this.isError = isError;
|
|
|
|
}
|
|
|
|
|
|
|
|
private State() {
|
|
|
|
this(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getReadableId() {
|
|
|
|
switch (this) {
|
|
|
|
case DISABLED:
|
|
|
|
return R.string.account_status_disabled;
|
|
|
|
case ONLINE:
|
|
|
|
return R.string.account_status_online;
|
|
|
|
case CONNECTING:
|
|
|
|
return R.string.account_status_connecting;
|
|
|
|
case OFFLINE:
|
|
|
|
return R.string.account_status_offline;
|
|
|
|
case UNAUTHORIZED:
|
|
|
|
return R.string.account_status_unauthorized;
|
|
|
|
case SERVER_NOT_FOUND:
|
|
|
|
return R.string.account_status_not_found;
|
|
|
|
case NO_INTERNET:
|
|
|
|
return R.string.account_status_no_internet;
|
|
|
|
case REGISTRATION_FAILED:
|
|
|
|
return R.string.account_status_regis_fail;
|
|
|
|
case REGISTRATION_CONFLICT:
|
|
|
|
return R.string.account_status_regis_conflict;
|
|
|
|
case REGISTRATION_SUCCESSFUL:
|
|
|
|
return R.string.account_status_regis_success;
|
|
|
|
case REGISTRATION_NOT_SUPPORTED:
|
|
|
|
return R.string.account_status_regis_not_sup;
|
2014-11-15 16:19:42 +00:00
|
|
|
case SECURITY_ERROR:
|
|
|
|
return R.string.account_status_security_error;
|
2014-11-15 16:29:58 +00:00
|
|
|
case INCOMPATIBLE_SERVER:
|
|
|
|
return R.string.account_status_incompatible_server;
|
2015-11-30 15:01:48 +00:00
|
|
|
case TOR_NOT_AVAILABLE:
|
|
|
|
return R.string.account_status_tor_unavailable;
|
2014-11-15 16:09:02 +00:00
|
|
|
default:
|
|
|
|
return R.string.account_status_unknown;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-09 15:20:36 +00:00
|
|
|
public List<Conversation> pendingConferenceJoins = new CopyOnWriteArrayList<>();
|
|
|
|
public List<Conversation> pendingConferenceLeaves = new CopyOnWriteArrayList<>();
|
2015-10-29 13:03:41 +00:00
|
|
|
|
|
|
|
private static final String KEY_PGP_SIGNATURE = "pgp_signature";
|
|
|
|
private static final String KEY_PGP_ID = "pgp_id";
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
protected Jid jid;
|
2014-10-22 16:38:44 +00:00
|
|
|
protected String password;
|
|
|
|
protected int options = 0;
|
|
|
|
protected String rosterVersion;
|
2014-11-15 16:09:02 +00:00
|
|
|
protected State status = State.OFFLINE;
|
2014-10-22 16:38:44 +00:00
|
|
|
protected JSONObject keys = new JSONObject();
|
|
|
|
protected String avatar;
|
2015-10-29 12:41:08 +00:00
|
|
|
protected String displayName = null;
|
2015-11-28 19:11:38 +00:00
|
|
|
protected String hostname = null;
|
|
|
|
protected int port = 5222;
|
2014-10-22 16:38:44 +00:00
|
|
|
protected boolean online = false;
|
2015-05-26 02:36:32 +00:00
|
|
|
private OtrService mOtrService = null;
|
2015-06-25 14:56:34 +00:00
|
|
|
private AxolotlService axolotlService = null;
|
2015-10-15 22:21:47 +00:00
|
|
|
private PgpDecryptionService pgpDecryptionService = null;
|
2014-10-22 16:38:44 +00:00
|
|
|
private XmppConnection xmppConnection = null;
|
|
|
|
private long mEndGracePeriod = 0L;
|
|
|
|
private String otrFingerprint;
|
2014-12-20 16:23:03 +00:00
|
|
|
private final Roster roster = new Roster(this);
|
2014-11-05 20:55:47 +00:00
|
|
|
private List<Bookmark> bookmarks = new CopyOnWriteArrayList<>();
|
2014-12-21 20:43:58 +00:00
|
|
|
private final Collection<Jid> blocklist = new CopyOnWriteArraySet<>();
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
public Account() {
|
|
|
|
this.uuid = "0";
|
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public Account(final Jid jid, final String password) {
|
|
|
|
this(java.util.UUID.randomUUID().toString(), jid,
|
2015-11-28 19:11:38 +00:00
|
|
|
password, 0, null, "", null, null, null, 5222);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public Account(final String uuid, final Jid jid,
|
2014-11-15 16:19:42 +00:00
|
|
|
final String password, final int options, final String rosterVersion, final String keys,
|
2015-11-28 19:11:38 +00:00
|
|
|
final String avatar, String displayName, String hostname, int port) {
|
2014-10-22 16:38:44 +00:00
|
|
|
this.uuid = uuid;
|
2014-11-09 15:20:36 +00:00
|
|
|
this.jid = jid;
|
2014-11-09 18:13:19 +00:00
|
|
|
if (jid.isBareJid()) {
|
2014-11-09 15:20:36 +00:00
|
|
|
this.setResource("mobile");
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
this.password = password;
|
|
|
|
this.options = options;
|
|
|
|
this.rosterVersion = rosterVersion;
|
|
|
|
try {
|
|
|
|
this.keys = new JSONObject(keys);
|
2014-11-05 20:55:47 +00:00
|
|
|
} catch (final JSONException ignored) {
|
2015-02-26 15:55:49 +00:00
|
|
|
this.keys = new JSONObject();
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
this.avatar = avatar;
|
2015-10-29 12:41:08 +00:00
|
|
|
this.displayName = displayName;
|
2015-11-28 19:11:38 +00:00
|
|
|
this.hostname = hostname;
|
|
|
|
this.port = port;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-12-23 22:19:00 +00:00
|
|
|
public static Account fromCursor(final Cursor cursor) {
|
2014-11-09 15:20:36 +00:00
|
|
|
Jid jid = null;
|
|
|
|
try {
|
|
|
|
jid = Jid.fromParts(cursor.getString(cursor.getColumnIndex(USERNAME)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(SERVER)), "mobile");
|
|
|
|
} catch (final InvalidJidException ignored) {
|
|
|
|
}
|
|
|
|
return new Account(cursor.getString(cursor.getColumnIndex(UUID)),
|
|
|
|
jid,
|
|
|
|
cursor.getString(cursor.getColumnIndex(PASSWORD)),
|
|
|
|
cursor.getInt(cursor.getColumnIndex(OPTIONS)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(ROSTERVERSION)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(KEYS)),
|
2015-10-29 12:41:08 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(AVATAR)),
|
2015-11-28 19:11:38 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(DISPLAY_NAME)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(HOSTNAME)),
|
|
|
|
cursor.getInt(cursor.getColumnIndex(PORT)));
|
2014-11-09 15:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-12-23 22:19:00 +00:00
|
|
|
public boolean isOptionSet(final int option) {
|
2014-10-22 16:38:44 +00:00
|
|
|
return ((options & (1 << option)) != 0);
|
|
|
|
}
|
|
|
|
|
2014-12-23 22:19:00 +00:00
|
|
|
public void setOption(final int option, final boolean value) {
|
2014-10-22 16:38:44 +00:00
|
|
|
if (value) {
|
|
|
|
this.options |= 1 << option;
|
|
|
|
} else {
|
|
|
|
this.options &= ~(1 << option);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getUsername() {
|
2014-11-05 20:55:47 +00:00
|
|
|
return jid.getLocalpart();
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2015-10-09 11:37:08 +00:00
|
|
|
public void setJid(final Jid jid) {
|
|
|
|
this.jid = jid;
|
2014-11-09 15:20:36 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public Jid getServer() {
|
|
|
|
return jid.toDomainJid();
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getPassword() {
|
|
|
|
return password;
|
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public void setPassword(final String password) {
|
2014-10-22 16:38:44 +00:00
|
|
|
this.password = password;
|
|
|
|
}
|
|
|
|
|
2015-11-28 19:11:38 +00:00
|
|
|
public void setHostname(String hostname) {
|
|
|
|
this.hostname = hostname;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getHostname() {
|
|
|
|
return this.hostname == null ? "" : this.hostname;
|
|
|
|
}
|
|
|
|
|
2015-11-29 14:44:45 +00:00
|
|
|
public boolean isOnion() {
|
|
|
|
return getServer().toString().toLowerCase().endsWith(".onion");
|
|
|
|
}
|
|
|
|
|
2015-11-28 19:11:38 +00:00
|
|
|
public void setPort(int port) {
|
|
|
|
this.port = port;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getPort() {
|
|
|
|
return this.port;
|
|
|
|
}
|
|
|
|
|
2014-11-15 16:09:02 +00:00
|
|
|
public State getStatus() {
|
2014-10-22 16:38:44 +00:00
|
|
|
if (isOptionSet(OPTION_DISABLED)) {
|
2014-11-15 16:09:02 +00:00
|
|
|
return State.DISABLED;
|
2014-10-22 16:38:44 +00:00
|
|
|
} else {
|
|
|
|
return this.status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-15 16:09:02 +00:00
|
|
|
public void setStatus(final State status) {
|
2014-11-09 15:20:36 +00:00
|
|
|
this.status = status;
|
|
|
|
}
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public boolean errorStatus() {
|
2014-11-15 16:09:02 +00:00
|
|
|
return getStatus().isError();
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasErrorStatus() {
|
2016-01-04 14:33:11 +00:00
|
|
|
return getXmppConnection() != null && getStatus().isError() && getXmppConnection().getAttempt() >= 3;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getResource() {
|
2014-11-05 20:55:47 +00:00
|
|
|
return jid.getResourcepart();
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2015-04-09 10:46:54 +00:00
|
|
|
public boolean setResource(final String resource) {
|
|
|
|
final String oldResource = jid.getResourcepart();
|
|
|
|
if (oldResource == null || !oldResource.equals(resource)) {
|
|
|
|
try {
|
|
|
|
jid = Jid.fromParts(jid.getLocalpart(), jid.getDomainpart(), resource);
|
|
|
|
return true;
|
|
|
|
} catch (final InvalidJidException ignored) {
|
|
|
|
return true;
|
|
|
|
}
|
2014-11-09 15:20:36 +00:00
|
|
|
}
|
2015-04-09 10:46:54 +00:00
|
|
|
return false;
|
2014-11-09 15:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public Jid getJid() {
|
2014-11-09 15:57:22 +00:00
|
|
|
return jid;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public JSONObject getKeys() {
|
|
|
|
return keys;
|
|
|
|
}
|
|
|
|
|
2015-05-29 09:17:26 +00:00
|
|
|
public String getKey(final String name) {
|
|
|
|
return this.keys.optString(name, null);
|
|
|
|
}
|
|
|
|
|
2014-12-23 22:19:00 +00:00
|
|
|
public boolean setKey(final String keyName, final String keyValue) {
|
2014-10-22 16:38:44 +00:00
|
|
|
try {
|
|
|
|
this.keys.put(keyName, keyValue);
|
|
|
|
return true;
|
2014-12-23 22:19:00 +00:00
|
|
|
} catch (final JSONException e) {
|
2014-10-22 16:38:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-09 11:37:08 +00:00
|
|
|
public boolean setPrivateKeyAlias(String alias) {
|
|
|
|
return setKey("private_key_alias", alias);
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPrivateKeyAlias() {
|
|
|
|
return getKey("private_key_alias");
|
|
|
|
}
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
@Override
|
|
|
|
public ContentValues getContentValues() {
|
2014-12-23 22:19:00 +00:00
|
|
|
final ContentValues values = new ContentValues();
|
2014-10-22 16:38:44 +00:00
|
|
|
values.put(UUID, uuid);
|
2014-11-05 20:55:47 +00:00
|
|
|
values.put(USERNAME, jid.getLocalpart());
|
|
|
|
values.put(SERVER, jid.getDomainpart());
|
2014-10-22 16:38:44 +00:00
|
|
|
values.put(PASSWORD, password);
|
|
|
|
values.put(OPTIONS, options);
|
|
|
|
values.put(KEYS, this.keys.toString());
|
|
|
|
values.put(ROSTERVERSION, rosterVersion);
|
|
|
|
values.put(AVATAR, avatar);
|
2015-10-29 12:41:08 +00:00
|
|
|
values.put(DISPLAY_NAME, displayName);
|
2015-11-28 19:11:38 +00:00
|
|
|
values.put(HOSTNAME, hostname);
|
|
|
|
values.put(PORT, port);
|
2014-10-22 16:38:44 +00:00
|
|
|
return values;
|
|
|
|
}
|
|
|
|
|
2015-06-25 14:56:34 +00:00
|
|
|
public AxolotlService getAxolotlService() {
|
|
|
|
return axolotlService;
|
|
|
|
}
|
|
|
|
|
2015-05-26 02:36:32 +00:00
|
|
|
public void initAccountServices(final XmppConnectionService context) {
|
|
|
|
this.mOtrService = new OtrService(context, this);
|
2015-06-25 14:56:34 +00:00
|
|
|
this.axolotlService = new AxolotlService(this, context);
|
2015-10-16 21:48:42 +00:00
|
|
|
if (xmppConnection != null) {
|
|
|
|
xmppConnection.addOnAdvancedStreamFeaturesAvailableListener(axolotlService);
|
|
|
|
}
|
2015-10-15 22:21:47 +00:00
|
|
|
this.pgpDecryptionService = new PgpDecryptionService(context);
|
2014-11-15 23:20:20 +00:00
|
|
|
}
|
|
|
|
|
2015-05-26 02:36:32 +00:00
|
|
|
public OtrService getOtrService() {
|
|
|
|
return this.mOtrService;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2015-10-15 22:21:47 +00:00
|
|
|
public PgpDecryptionService getPgpDecryptionService() {
|
|
|
|
return pgpDecryptionService;
|
|
|
|
}
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public XmppConnection getXmppConnection() {
|
|
|
|
return this.xmppConnection;
|
|
|
|
}
|
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
public void setXmppConnection(final XmppConnection connection) {
|
2014-10-22 16:38:44 +00:00
|
|
|
this.xmppConnection = connection;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOtrFingerprint() {
|
|
|
|
if (this.otrFingerprint == null) {
|
|
|
|
try {
|
2015-05-26 02:36:32 +00:00
|
|
|
if (this.mOtrService == null) {
|
2014-10-22 16:38:44 +00:00
|
|
|
return null;
|
|
|
|
}
|
2015-05-26 02:36:32 +00:00
|
|
|
final PublicKey publicKey = this.mOtrService.getPublicKey();
|
2014-12-23 22:19:00 +00:00
|
|
|
if (publicKey == null || !(publicKey instanceof DSAPublicKey)) {
|
2014-11-15 23:20:20 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
this.otrFingerprint = new OtrCryptoEngineImpl().getFingerprint(publicKey);
|
|
|
|
return this.otrFingerprint;
|
2014-11-05 20:55:47 +00:00
|
|
|
} catch (final OtrCryptoException ignored) {
|
2014-11-15 23:20:20 +00:00
|
|
|
return null;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
2014-11-15 23:20:20 +00:00
|
|
|
} else {
|
|
|
|
return this.otrFingerprint;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getRosterVersion() {
|
|
|
|
if (this.rosterVersion == null) {
|
|
|
|
return "";
|
|
|
|
} else {
|
|
|
|
return this.rosterVersion;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
public void setRosterVersion(final String version) {
|
2014-10-22 16:38:44 +00:00
|
|
|
this.rosterVersion = version;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int countPresences() {
|
2014-12-20 16:23:03 +00:00
|
|
|
return this.getRoster().getContact(this.getJid().toBareJid()).getPresences().size();
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getPgpSignature() {
|
2015-12-02 15:43:55 +00:00
|
|
|
try {
|
|
|
|
if (keys.has(KEY_PGP_SIGNATURE) && !"null".equals(keys.getString(KEY_PGP_SIGNATURE))) {
|
2015-10-29 13:03:41 +00:00
|
|
|
return keys.getString(KEY_PGP_SIGNATURE);
|
2015-12-02 15:43:55 +00:00
|
|
|
} else {
|
2014-10-22 16:38:44 +00:00
|
|
|
return null;
|
|
|
|
}
|
2015-12-02 15:43:55 +00:00
|
|
|
} catch (final JSONException e) {
|
2014-10-22 16:38:44 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-29 13:03:41 +00:00
|
|
|
public boolean setPgpSignature(String signature) {
|
|
|
|
try {
|
|
|
|
keys.put(KEY_PGP_SIGNATURE, signature);
|
|
|
|
} catch (JSONException e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-02 15:43:55 +00:00
|
|
|
public boolean unsetPgpSignature() {
|
|
|
|
try {
|
|
|
|
keys.put(KEY_PGP_SIGNATURE, JSONObject.NULL);
|
|
|
|
} catch (JSONException e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-10-29 13:03:41 +00:00
|
|
|
public long getPgpId() {
|
|
|
|
if (keys.has(KEY_PGP_ID)) {
|
|
|
|
try {
|
|
|
|
return keys.getLong(KEY_PGP_ID);
|
|
|
|
} catch (JSONException e) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean setPgpSignId(long pgpID) {
|
|
|
|
try {
|
|
|
|
keys.put(KEY_PGP_ID, pgpID);
|
|
|
|
} catch (JSONException e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public Roster getRoster() {
|
|
|
|
return this.roster;
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<Bookmark> getBookmarks() {
|
|
|
|
return this.bookmarks;
|
|
|
|
}
|
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
public void setBookmarks(final List<Bookmark> bookmarks) {
|
2014-11-09 15:20:36 +00:00
|
|
|
this.bookmarks = bookmarks;
|
|
|
|
}
|
|
|
|
|
2014-11-06 19:45:38 +00:00
|
|
|
public boolean hasBookmarkFor(final Jid conferenceJid) {
|
2014-12-23 22:19:00 +00:00
|
|
|
for (final Bookmark bookmark : this.bookmarks) {
|
2014-12-02 23:18:07 +00:00
|
|
|
final Jid jid = bookmark.getJid();
|
|
|
|
if (jid != null && jid.equals(conferenceJid.toBareJid())) {
|
2014-10-22 16:38:44 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-12-23 22:19:00 +00:00
|
|
|
public boolean setAvatar(final String filename) {
|
2014-10-22 16:38:44 +00:00
|
|
|
if (this.avatar != null && this.avatar.equals(filename)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
this.avatar = filename;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAvatar() {
|
|
|
|
return this.avatar;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void activateGracePeriod() {
|
|
|
|
this.mEndGracePeriod = SystemClock.elapsedRealtime()
|
2014-11-15 16:19:42 +00:00
|
|
|
+ (Config.CARBON_GRACE_PERIOD * 1000);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void deactivateGracePeriod() {
|
|
|
|
this.mEndGracePeriod = 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean inGracePeriod() {
|
|
|
|
return SystemClock.elapsedRealtime() < this.mEndGracePeriod;
|
|
|
|
}
|
2014-11-15 23:20:20 +00:00
|
|
|
|
|
|
|
public String getShareableUri() {
|
2014-12-23 22:19:00 +00:00
|
|
|
final String fingerprint = this.getOtrFingerprint();
|
2014-11-15 23:20:20 +00:00
|
|
|
if (fingerprint != null) {
|
|
|
|
return "xmpp:" + this.getJid().toBareJid().toString() + "?otr-fingerprint="+fingerprint;
|
|
|
|
} else {
|
|
|
|
return "xmpp:" + this.getJid().toBareJid().toString();
|
|
|
|
}
|
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
|
|
|
|
public boolean isBlocked(final ListItem contact) {
|
|
|
|
final Jid jid = contact.getJid();
|
|
|
|
return jid != null && (blocklist.contains(jid.toBareJid()) || blocklist.contains(jid.toDomainJid()));
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isBlocked(final Jid jid) {
|
|
|
|
return jid != null && blocklist.contains(jid.toBareJid());
|
|
|
|
}
|
|
|
|
|
|
|
|
public Collection<Jid> getBlocklist() {
|
|
|
|
return this.blocklist;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void clearBlocklist() {
|
|
|
|
getBlocklist().clear();
|
|
|
|
}
|
2014-12-23 22:19:00 +00:00
|
|
|
|
|
|
|
public boolean isOnlineAndConnected() {
|
|
|
|
return this.getStatus() == State.ONLINE && this.getXmppConnection() != null;
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|