2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.entities;
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
import android.content.ContentValues;
|
2016-04-22 19:25:06 +00:00
|
|
|
import android.content.Context;
|
2014-11-05 20:55:47 +00:00
|
|
|
import android.database.Cursor;
|
2016-08-26 11:35:01 +00:00
|
|
|
import android.net.Uri;
|
|
|
|
import android.provider.ContactsContract;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
import org.json.JSONArray;
|
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
|
2014-11-15 23:20:20 +00:00
|
|
|
import java.util.ArrayList;
|
2014-11-16 16:21:21 +00:00
|
|
|
import java.util.List;
|
2014-11-17 16:53:19 +00:00
|
|
|
import java.util.Locale;
|
2014-11-05 20:55:47 +00:00
|
|
|
|
2015-12-19 11:43:09 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-11-16 16:21:21 +00:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
2014-10-22 16:38:44 +00:00
|
|
|
import eu.siacs.conversations.xml.Element;
|
2014-11-05 20:55:47 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
|
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
2015-05-05 04:17:34 +00:00
|
|
|
import eu.siacs.conversations.xmpp.pep.Avatar;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
public class Contact implements ListItem, Blockable {
|
2014-10-22 16:38:44 +00:00
|
|
|
public static final String TABLENAME = "contacts";
|
|
|
|
|
|
|
|
public static final String SYSTEMNAME = "systemname";
|
|
|
|
public static final String SERVERNAME = "servername";
|
|
|
|
public static final String JID = "jid";
|
|
|
|
public static final String OPTIONS = "options";
|
|
|
|
public static final String SYSTEMACCOUNT = "systemaccount";
|
|
|
|
public static final String PHOTOURI = "photouri";
|
|
|
|
public static final String KEYS = "pgpkey";
|
|
|
|
public static final String ACCOUNT = "accountUuid";
|
|
|
|
public static final String AVATAR = "avatar";
|
2014-11-16 22:58:30 +00:00
|
|
|
public static final String LAST_PRESENCE = "last_presence";
|
|
|
|
public static final String LAST_TIME = "last_time";
|
2014-11-16 16:21:21 +00:00
|
|
|
public static final String GROUPS = "groups";
|
2014-10-22 16:38:44 +00:00
|
|
|
protected String accountUuid;
|
|
|
|
protected String systemName;
|
|
|
|
protected String serverName;
|
|
|
|
protected String presenceName;
|
2016-02-02 12:43:20 +00:00
|
|
|
protected String commonName;
|
2014-11-05 20:55:47 +00:00
|
|
|
protected Jid jid;
|
2014-10-22 16:38:44 +00:00
|
|
|
protected int subscription = 0;
|
|
|
|
protected String systemAccount;
|
|
|
|
protected String photoUri;
|
|
|
|
protected JSONObject keys = new JSONObject();
|
2014-11-16 16:21:21 +00:00
|
|
|
protected JSONArray groups = new JSONArray();
|
2016-02-23 13:25:01 +00:00
|
|
|
protected final Presences presences = new Presences();
|
2014-10-22 16:38:44 +00:00
|
|
|
protected Account account;
|
2015-05-05 04:17:34 +00:00
|
|
|
protected Avatar avatar;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-06-04 14:16:14 +00:00
|
|
|
private boolean mActive = false;
|
|
|
|
private long mLastseen = 0;
|
|
|
|
private String mLastPresence = null;
|
|
|
|
|
2014-11-04 21:09:27 +00:00
|
|
|
public Contact(final String account, final String systemName, final String serverName,
|
2014-12-21 20:43:58 +00:00
|
|
|
final Jid jid, final int subscription, final String photoUri,
|
2016-06-04 14:16:14 +00:00
|
|
|
final String systemAccount, final String keys, final String avatar, final long lastseen,
|
|
|
|
final String presence, final String groups) {
|
2014-10-22 16:38:44 +00:00
|
|
|
this.accountUuid = account;
|
|
|
|
this.systemName = systemName;
|
|
|
|
this.serverName = serverName;
|
|
|
|
this.jid = jid;
|
|
|
|
this.subscription = subscription;
|
|
|
|
this.photoUri = photoUri;
|
|
|
|
this.systemAccount = systemAccount;
|
|
|
|
try {
|
2014-11-04 21:09:27 +00:00
|
|
|
this.keys = (keys == null ? new JSONObject("") : new JSONObject(keys));
|
2014-10-22 16:38:44 +00:00
|
|
|
} catch (JSONException e) {
|
|
|
|
this.keys = new JSONObject();
|
|
|
|
}
|
2015-05-05 04:17:34 +00:00
|
|
|
if (avatar != null) {
|
|
|
|
this.avatar = new Avatar();
|
|
|
|
this.avatar.sha1sum = avatar;
|
|
|
|
this.avatar.origin = Avatar.Origin.VCARD; //always assume worst
|
|
|
|
}
|
2014-11-16 16:21:21 +00:00
|
|
|
try {
|
|
|
|
this.groups = (groups == null ? new JSONArray() : new JSONArray(groups));
|
|
|
|
} catch (JSONException e) {
|
|
|
|
this.groups = new JSONArray();
|
|
|
|
}
|
2016-06-04 14:16:14 +00:00
|
|
|
this.mLastseen = lastseen;
|
|
|
|
this.mLastPresence = presence;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public Contact(final Jid jid) {
|
2014-10-22 16:38:44 +00:00
|
|
|
this.jid = jid;
|
|
|
|
}
|
|
|
|
|
2014-11-16 22:58:30 +00:00
|
|
|
public static Contact fromCursor(final Cursor cursor) {
|
|
|
|
final Jid jid;
|
|
|
|
try {
|
2015-03-05 21:11:59 +00:00
|
|
|
jid = Jid.fromString(cursor.getString(cursor.getColumnIndex(JID)), true);
|
2014-11-16 22:58:30 +00:00
|
|
|
} catch (final InvalidJidException e) {
|
|
|
|
// TODO: Borked DB... handle this somehow?
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return new Contact(cursor.getString(cursor.getColumnIndex(ACCOUNT)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(SYSTEMNAME)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(SERVERNAME)),
|
|
|
|
jid,
|
|
|
|
cursor.getInt(cursor.getColumnIndex(OPTIONS)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(PHOTOURI)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(SYSTEMACCOUNT)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(KEYS)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(AVATAR)),
|
2016-06-04 14:16:14 +00:00
|
|
|
cursor.getLong(cursor.getColumnIndex(LAST_TIME)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(LAST_PRESENCE)),
|
2014-11-16 22:58:30 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(GROUPS)));
|
|
|
|
}
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public String getDisplayName() {
|
2016-02-02 12:43:20 +00:00
|
|
|
if (this.commonName != null && Config.X509_VERIFICATION) {
|
|
|
|
return this.commonName;
|
2015-12-19 12:07:38 +00:00
|
|
|
} else if (this.systemName != null) {
|
2014-11-16 22:58:30 +00:00
|
|
|
return this.systemName;
|
|
|
|
} else if (this.serverName != null) {
|
|
|
|
return this.serverName;
|
2016-10-07 08:05:08 +00:00
|
|
|
} else if (this.presenceName != null && mutualPresenceSubscription()) {
|
2014-11-16 22:58:30 +00:00
|
|
|
return this.presenceName;
|
2014-11-08 03:34:54 +00:00
|
|
|
} else if (jid.hasLocalpart()) {
|
2016-12-01 19:49:18 +00:00
|
|
|
return jid.getUnescapedLocalpart();
|
2014-10-22 16:38:44 +00:00
|
|
|
} else {
|
2014-11-16 22:58:30 +00:00
|
|
|
return jid.getDomainpart();
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2016-02-24 15:53:19 +00:00
|
|
|
@Override
|
|
|
|
public String getDisplayJid() {
|
2016-04-27 14:43:02 +00:00
|
|
|
if (jid != null) {
|
2016-02-24 15:53:19 +00:00
|
|
|
return jid.toString();
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public String getProfilePhoto() {
|
|
|
|
return this.photoUri;
|
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public Jid getJid() {
|
|
|
|
return jid;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 16:21:21 +00:00
|
|
|
@Override
|
2016-04-22 19:25:06 +00:00
|
|
|
public List<Tag> getTags(Context context) {
|
2014-12-21 20:43:58 +00:00
|
|
|
final ArrayList<Tag> tags = new ArrayList<>();
|
|
|
|
for (final String group : getGroups()) {
|
2014-11-16 16:21:21 +00:00
|
|
|
tags.add(new Tag(group, UIHelper.getColorForName(group)));
|
|
|
|
}
|
2016-06-30 21:08:55 +00:00
|
|
|
Presence.Status status = getShownStatus();
|
2016-04-22 19:25:06 +00:00
|
|
|
if (status != Presence.Status.OFFLINE) {
|
|
|
|
tags.add(UIHelper.getTagForStatus(context, status));
|
2014-11-16 16:21:21 +00:00
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
if (isBlocked()) {
|
|
|
|
tags.add(new Tag("blocked", 0xff2e2f3b));
|
|
|
|
}
|
2014-11-16 16:21:21 +00:00
|
|
|
return tags;
|
|
|
|
}
|
|
|
|
|
2016-04-22 19:25:06 +00:00
|
|
|
public boolean match(Context context, String needle) {
|
2014-11-17 16:31:26 +00:00
|
|
|
if (needle == null || needle.isEmpty()) {
|
2014-11-16 22:58:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-11-17 16:53:19 +00:00
|
|
|
needle = needle.toLowerCase(Locale.US).trim();
|
2014-11-17 16:24:33 +00:00
|
|
|
String[] parts = needle.split("\\s+");
|
|
|
|
if (parts.length > 1) {
|
|
|
|
for(int i = 0; i < parts.length; ++i) {
|
2016-04-22 19:25:06 +00:00
|
|
|
if (!match(context, parts[i])) {
|
2014-11-17 16:24:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else {
|
2014-11-17 16:53:19 +00:00
|
|
|
return jid.toString().contains(needle) ||
|
|
|
|
getDisplayName().toLowerCase(Locale.US).contains(needle) ||
|
2016-04-22 19:25:06 +00:00
|
|
|
matchInTag(context, needle);
|
2014-11-17 16:24:33 +00:00
|
|
|
}
|
2014-11-16 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 19:25:06 +00:00
|
|
|
private boolean matchInTag(Context context, String needle) {
|
2014-11-17 16:53:19 +00:00
|
|
|
needle = needle.toLowerCase(Locale.US);
|
2016-04-22 19:25:06 +00:00
|
|
|
for (Tag tag : getTags(context)) {
|
2014-11-17 16:53:19 +00:00
|
|
|
if (tag.getName().toLowerCase(Locale.US).contains(needle)) {
|
2014-11-16 22:58:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public ContentValues getContentValues() {
|
2015-05-29 09:17:26 +00:00
|
|
|
synchronized (this.keys) {
|
|
|
|
final ContentValues values = new ContentValues();
|
|
|
|
values.put(ACCOUNT, accountUuid);
|
|
|
|
values.put(SYSTEMNAME, systemName);
|
|
|
|
values.put(SERVERNAME, serverName);
|
2016-10-20 15:31:46 +00:00
|
|
|
values.put(JID, jid.toPreppedString());
|
2015-05-29 09:17:26 +00:00
|
|
|
values.put(OPTIONS, subscription);
|
|
|
|
values.put(SYSTEMACCOUNT, systemAccount);
|
|
|
|
values.put(PHOTOURI, photoUri);
|
|
|
|
values.put(KEYS, keys.toString());
|
|
|
|
values.put(AVATAR, avatar == null ? null : avatar.getFilename());
|
2016-06-04 14:16:14 +00:00
|
|
|
values.put(LAST_PRESENCE, mLastPresence);
|
|
|
|
values.put(LAST_TIME, mLastseen);
|
2015-05-29 09:17:26 +00:00
|
|
|
values.put(GROUPS, groups.toString());
|
|
|
|
return values;
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 22:58:30 +00:00
|
|
|
public Account getAccount() {
|
|
|
|
return this.account;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setAccount(Account account) {
|
|
|
|
this.account = account;
|
|
|
|
this.accountUuid = account.getUuid();
|
|
|
|
}
|
|
|
|
|
|
|
|
public Presences getPresences() {
|
|
|
|
return this.presences;
|
|
|
|
}
|
|
|
|
|
2016-01-17 21:28:38 +00:00
|
|
|
public void updatePresence(final String resource, final Presence presence) {
|
|
|
|
this.presences.updatePresence(resource, presence);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
public void removePresence(final String resource) {
|
2014-10-22 16:38:44 +00:00
|
|
|
this.presences.removePresence(resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void clearPresences() {
|
|
|
|
this.presences.clearPresences();
|
|
|
|
this.resetOption(Options.PENDING_SUBSCRIPTION_REQUEST);
|
|
|
|
}
|
|
|
|
|
2016-06-30 21:08:55 +00:00
|
|
|
public Presence.Status getShownStatus() {
|
|
|
|
return this.presences.getShownStatus();
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2015-06-03 12:05:54 +00:00
|
|
|
public boolean setPhotoUri(String uri) {
|
|
|
|
if (uri != null && !uri.equals(this.photoUri)) {
|
|
|
|
this.photoUri = uri;
|
|
|
|
return true;
|
|
|
|
} else if (this.photoUri != null && uri == null) {
|
|
|
|
this.photoUri = null;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setServerName(String serverName) {
|
|
|
|
this.serverName = serverName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSystemName(String systemName) {
|
|
|
|
this.systemName = systemName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPresenceName(String presenceName) {
|
|
|
|
this.presenceName = presenceName;
|
|
|
|
}
|
|
|
|
|
2016-08-26 11:35:01 +00:00
|
|
|
public Uri getSystemAccount() {
|
|
|
|
if (systemAccount == null) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
String[] parts = systemAccount.split("#");
|
|
|
|
if (parts.length != 2) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
long id = Long.parseLong(parts[0]);
|
|
|
|
return ContactsContract.Contacts.getLookupUri(id, parts[1]);
|
|
|
|
}
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 22:58:30 +00:00
|
|
|
public void setSystemAccount(String account) {
|
|
|
|
this.systemAccount = account;
|
|
|
|
}
|
|
|
|
|
2014-11-16 16:21:21 +00:00
|
|
|
public List<String> getGroups() {
|
|
|
|
ArrayList<String> groups = new ArrayList<String>();
|
2014-11-16 22:58:30 +00:00
|
|
|
for (int i = 0; i < this.groups.length(); ++i) {
|
2014-11-16 16:21:21 +00:00
|
|
|
try {
|
|
|
|
groups.add(this.groups.getString(i));
|
|
|
|
} catch (final JSONException ignored) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return groups;
|
|
|
|
}
|
|
|
|
|
2014-11-15 23:20:20 +00:00
|
|
|
public ArrayList<String> getOtrFingerprints() {
|
2015-05-29 09:17:26 +00:00
|
|
|
synchronized (this.keys) {
|
|
|
|
final ArrayList<String> fingerprints = new ArrayList<String>();
|
|
|
|
try {
|
|
|
|
if (this.keys.has("otr_fingerprints")) {
|
|
|
|
final JSONArray prints = this.keys.getJSONArray("otr_fingerprints");
|
|
|
|
for (int i = 0; i < prints.length(); ++i) {
|
|
|
|
final String print = prints.isNull(i) ? null : prints.getString(i);
|
|
|
|
if (print != null && !print.isEmpty()) {
|
2016-11-18 12:13:29 +00:00
|
|
|
fingerprints.add(prints.getString(i).toLowerCase(Locale.US));
|
2015-05-29 09:17:26 +00:00
|
|
|
}
|
2014-12-20 14:21:03 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
2015-05-29 09:17:26 +00:00
|
|
|
} catch (final JSONException ignored) {
|
2014-11-15 23:20:20 +00:00
|
|
|
|
2015-05-29 09:17:26 +00:00
|
|
|
}
|
|
|
|
return fingerprints;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-15 23:20:20 +00:00
|
|
|
public boolean addOtrFingerprint(String print) {
|
2015-05-29 09:17:26 +00:00
|
|
|
synchronized (this.keys) {
|
|
|
|
if (getOtrFingerprints().contains(print)) {
|
|
|
|
return false;
|
2015-06-26 13:41:02 +00:00
|
|
|
}
|
2015-05-29 09:17:26 +00:00
|
|
|
try {
|
|
|
|
JSONArray fingerprints;
|
|
|
|
if (!this.keys.has("otr_fingerprints")) {
|
|
|
|
fingerprints = new JSONArray();
|
|
|
|
} else {
|
|
|
|
fingerprints = this.keys.getJSONArray("otr_fingerprints");
|
|
|
|
}
|
|
|
|
fingerprints.put(print);
|
|
|
|
this.keys.put("otr_fingerprints", fingerprints);
|
|
|
|
return true;
|
|
|
|
} catch (final JSONException ignored) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-11-15 23:20:20 +00:00
|
|
|
}
|
2015-05-29 09:17:26 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-05-29 09:17:26 +00:00
|
|
|
public long getPgpKeyId() {
|
|
|
|
synchronized (this.keys) {
|
|
|
|
if (this.keys.has("pgp_keyid")) {
|
|
|
|
try {
|
|
|
|
return this.keys.getLong("pgp_keyid");
|
|
|
|
} catch (JSONException e) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
} else {
|
2015-05-29 09:17:26 +00:00
|
|
|
return 0;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-29 09:17:26 +00:00
|
|
|
public void setPgpKeyId(long keyId) {
|
|
|
|
synchronized (this.keys) {
|
2014-10-22 16:38:44 +00:00
|
|
|
try {
|
2015-05-29 09:17:26 +00:00
|
|
|
this.keys.put("pgp_keyid", keyId);
|
|
|
|
} catch (final JSONException ignored) {
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOption(int option) {
|
|
|
|
this.subscription |= 1 << option;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void resetOption(int option) {
|
|
|
|
this.subscription &= ~(1 << option);
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean getOption(int option) {
|
|
|
|
return ((this.subscription & (1 << option)) != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean showInRoster() {
|
|
|
|
return (this.getOption(Contact.Options.IN_ROSTER) && (!this
|
2014-12-21 20:43:58 +00:00
|
|
|
.getOption(Contact.Options.DIRTY_DELETE)))
|
|
|
|
|| (this.getOption(Contact.Options.DIRTY_PUSH));
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void parseSubscriptionFromElement(Element item) {
|
|
|
|
String ask = item.getAttribute("ask");
|
|
|
|
String subscription = item.getAttribute("subscription");
|
|
|
|
|
|
|
|
if (subscription != null) {
|
2014-11-16 22:58:30 +00:00
|
|
|
switch (subscription) {
|
|
|
|
case "to":
|
|
|
|
this.resetOption(Options.FROM);
|
|
|
|
this.setOption(Options.TO);
|
|
|
|
break;
|
|
|
|
case "from":
|
|
|
|
this.resetOption(Options.TO);
|
|
|
|
this.setOption(Options.FROM);
|
|
|
|
this.resetOption(Options.PREEMPTIVE_GRANT);
|
2016-02-23 15:14:55 +00:00
|
|
|
this.resetOption(Options.PENDING_SUBSCRIPTION_REQUEST);
|
2014-11-16 22:58:30 +00:00
|
|
|
break;
|
|
|
|
case "both":
|
|
|
|
this.setOption(Options.TO);
|
|
|
|
this.setOption(Options.FROM);
|
|
|
|
this.resetOption(Options.PREEMPTIVE_GRANT);
|
2016-02-23 15:14:55 +00:00
|
|
|
this.resetOption(Options.PENDING_SUBSCRIPTION_REQUEST);
|
2014-11-16 22:58:30 +00:00
|
|
|
break;
|
|
|
|
case "none":
|
|
|
|
this.resetOption(Options.FROM);
|
|
|
|
this.resetOption(Options.TO);
|
|
|
|
break;
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// do NOT override asking if pending push request
|
|
|
|
if (!this.getOption(Contact.Options.DIRTY_PUSH)) {
|
|
|
|
if ((ask != null) && (ask.equals("subscribe"))) {
|
|
|
|
this.setOption(Contact.Options.ASKING);
|
|
|
|
} else {
|
|
|
|
this.resetOption(Contact.Options.ASKING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-16 16:21:21 +00:00
|
|
|
public void parseGroupsFromElement(Element item) {
|
|
|
|
this.groups = new JSONArray();
|
2014-11-16 22:58:30 +00:00
|
|
|
for (Element element : item.getChildren()) {
|
2014-11-16 16:21:21 +00:00
|
|
|
if (element.getName().equals("group") && element.getContent() != null) {
|
|
|
|
this.groups.put(element.getContent());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public Element asElement() {
|
2014-11-05 20:55:47 +00:00
|
|
|
final Element item = new Element("item");
|
|
|
|
item.setAttribute("jid", this.jid.toString());
|
2014-10-22 16:38:44 +00:00
|
|
|
if (this.serverName != null) {
|
|
|
|
item.setAttribute("name", this.serverName);
|
|
|
|
}
|
2014-11-16 22:58:30 +00:00
|
|
|
for (String group : getGroups()) {
|
2014-11-16 16:21:21 +00:00
|
|
|
item.addChild("group").setContent(group);
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-11-05 20:55:47 +00:00
|
|
|
public int compareTo(final ListItem another) {
|
2014-10-22 16:38:44 +00:00
|
|
|
return this.getDisplayName().compareToIgnoreCase(
|
|
|
|
another.getDisplayName());
|
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public Jid getServer() {
|
|
|
|
return getJid().toDomainJid();
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2015-05-05 04:17:34 +00:00
|
|
|
public boolean setAvatar(Avatar avatar) {
|
|
|
|
if (this.avatar != null && this.avatar.equals(avatar)) {
|
2014-10-22 16:38:44 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2015-05-05 04:17:34 +00:00
|
|
|
if (this.avatar != null && this.avatar.origin == Avatar.Origin.PEP && avatar.origin == Avatar.Origin.VCARD) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
this.avatar = avatar;
|
2014-10-22 16:38:44 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAvatar() {
|
2015-05-05 04:17:34 +00:00
|
|
|
return avatar == null ? null : avatar.getFilename();
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean deleteOtrFingerprint(String fingerprint) {
|
2015-05-29 09:17:26 +00:00
|
|
|
synchronized (this.keys) {
|
|
|
|
boolean success = false;
|
|
|
|
try {
|
|
|
|
if (this.keys.has("otr_fingerprints")) {
|
|
|
|
JSONArray newPrints = new JSONArray();
|
|
|
|
JSONArray oldPrints = this.keys
|
|
|
|
.getJSONArray("otr_fingerprints");
|
|
|
|
for (int i = 0; i < oldPrints.length(); ++i) {
|
|
|
|
if (!oldPrints.getString(i).equals(fingerprint)) {
|
|
|
|
newPrints.put(oldPrints.getString(i));
|
|
|
|
} else {
|
|
|
|
success = true;
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
2015-05-29 09:17:26 +00:00
|
|
|
this.keys.put("otr_fingerprints", newPrints);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
2015-05-29 09:17:26 +00:00
|
|
|
return success;
|
|
|
|
} catch (JSONException e) {
|
|
|
|
return false;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-07 08:05:08 +00:00
|
|
|
public boolean mutualPresenceSubscription() {
|
2014-10-22 16:38:44 +00:00
|
|
|
return getOption(Options.FROM) && getOption(Options.TO);
|
|
|
|
}
|
2014-11-15 23:20:20 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
@Override
|
|
|
|
public boolean isBlocked() {
|
|
|
|
return getAccount().isBlocked(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isDomainBlocked() {
|
|
|
|
return getAccount().isBlocked(this.getJid().toDomainJid());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Jid getBlockedJid() {
|
|
|
|
if (isDomainBlocked()) {
|
|
|
|
return getJid().toDomainJid();
|
|
|
|
} else {
|
|
|
|
return getJid();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-05 04:17:34 +00:00
|
|
|
public boolean isSelf() {
|
|
|
|
return account.getJid().toBareJid().equals(getJid().toBareJid());
|
|
|
|
}
|
|
|
|
|
2016-02-02 12:43:20 +00:00
|
|
|
public void setCommonName(String cn) {
|
|
|
|
this.commonName = cn;
|
|
|
|
}
|
|
|
|
|
2016-06-04 14:16:14 +00:00
|
|
|
public void flagActive() {
|
|
|
|
this.mActive = true;
|
|
|
|
}
|
2014-11-16 22:58:30 +00:00
|
|
|
|
2016-06-04 14:16:14 +00:00
|
|
|
public void flagInactive() {
|
|
|
|
this.mActive = false;
|
|
|
|
}
|
2014-11-16 22:58:30 +00:00
|
|
|
|
2016-06-04 14:16:14 +00:00
|
|
|
public boolean isActive() {
|
|
|
|
return this.mActive;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLastseen(long timestamp) {
|
|
|
|
this.mLastseen = Math.max(timestamp, mLastseen);
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getLastseen() {
|
|
|
|
return this.mLastseen;
|
|
|
|
}
|
|
|
|
|
2016-07-28 20:58:37 +00:00
|
|
|
public void setLastResource(String resource) {
|
|
|
|
this.mLastPresence = resource;
|
2016-06-04 14:16:14 +00:00
|
|
|
}
|
|
|
|
|
2016-07-28 20:58:37 +00:00
|
|
|
public String getLastResource() {
|
2016-06-04 14:16:14 +00:00
|
|
|
return this.mLastPresence;
|
2014-11-16 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
public final class Options {
|
2014-11-16 22:58:30 +00:00
|
|
|
public static final int TO = 0;
|
|
|
|
public static final int FROM = 1;
|
|
|
|
public static final int ASKING = 2;
|
|
|
|
public static final int PREEMPTIVE_GRANT = 3;
|
|
|
|
public static final int IN_ROSTER = 4;
|
|
|
|
public static final int PENDING_SUBSCRIPTION_REQUEST = 5;
|
|
|
|
public static final int DIRTY_PUSH = 6;
|
|
|
|
public static final int DIRTY_DELETE = 7;
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|