2014-02-28 18:46:01 +01:00
|
|
|
package eu.siacs.conversations.entities;
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-02-16 16:32:15 +01:00
|
|
|
import java.security.interfaces.DSAPublicKey;
|
2014-01-25 19:33:12 +01:00
|
|
|
import java.util.List;
|
2014-07-27 18:07:04 +02:00
|
|
|
import java.util.concurrent.CopyOnWriteArrayList;
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-09-27 18:16:31 +02:00
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
|
2014-09-06 18:21:31 +02:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
2014-08-05 22:58:46 +02:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
|
|
|
|
2014-02-13 23:40:08 +01:00
|
|
|
import net.java.otr4j.OtrException;
|
2014-02-16 16:32:15 +01:00
|
|
|
import net.java.otr4j.crypto.OtrCryptoEngineImpl;
|
|
|
|
import net.java.otr4j.crypto.OtrCryptoException;
|
2014-02-13 23:40:08 +01:00
|
|
|
import net.java.otr4j.session.SessionID;
|
|
|
|
import net.java.otr4j.session.SessionImpl;
|
|
|
|
import net.java.otr4j.session.SessionStatus;
|
2014-01-24 23:58:51 +01:00
|
|
|
import android.content.ContentValues;
|
2014-02-13 23:40:08 +01:00
|
|
|
import android.content.Context;
|
2014-01-24 23:58:51 +01:00
|
|
|
import android.database.Cursor;
|
2014-08-05 22:58:46 +02:00
|
|
|
import android.graphics.Bitmap;
|
2014-09-03 12:36:54 +02:00
|
|
|
import android.os.SystemClock;
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
public class Conversation extends AbstractEntity {
|
2014-01-26 03:27:55 +01:00
|
|
|
public static final String TABLENAME = "conversations";
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-01-24 23:58:51 +01:00
|
|
|
public static final int STATUS_AVAILABLE = 0;
|
|
|
|
public static final int STATUS_ARCHIVED = 1;
|
|
|
|
public static final int STATUS_DELETED = 2;
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-05 22:33:39 +01:00
|
|
|
public static final int MODE_MULTI = 1;
|
|
|
|
public static final int MODE_SINGLE = 0;
|
2014-01-25 19:33:12 +01:00
|
|
|
|
|
|
|
public static final String NAME = "name";
|
|
|
|
public static final String ACCOUNT = "accountUuid";
|
2014-02-10 15:24:34 +01:00
|
|
|
public static final String CONTACT = "contactUuid";
|
|
|
|
public static final String CONTACTJID = "contactJid";
|
2014-01-25 19:33:12 +01:00
|
|
|
public static final String STATUS = "status";
|
|
|
|
public static final String CREATED = "created";
|
2014-02-05 22:33:39 +01:00
|
|
|
public static final String MODE = "mode";
|
2014-09-27 18:16:31 +02:00
|
|
|
public static final String ATTRIBUTES = "attributes";
|
2014-09-28 15:21:56 +02:00
|
|
|
|
2014-09-27 18:16:31 +02:00
|
|
|
public static final String ATTRIBUTE_NEXT_ENCRYPTION = "next_encryption";
|
|
|
|
public static final String ATTRIBUTE_MUC_PASSWORD = "muc_password";
|
2014-10-07 15:18:09 +02:00
|
|
|
public static final String ATTRIBUTE_MUTED_TILL = "muted_till";
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-01-24 23:58:51 +01:00
|
|
|
private String name;
|
2014-02-10 15:24:34 +01:00
|
|
|
private String contactUuid;
|
2014-01-24 23:58:51 +01:00
|
|
|
private String accountUuid;
|
|
|
|
private String contactJid;
|
|
|
|
private int status;
|
2014-01-25 19:33:12 +01:00
|
|
|
private long created;
|
2014-02-05 22:33:39 +01:00
|
|
|
private int mode;
|
2014-09-28 15:21:56 +02:00
|
|
|
|
2014-09-27 18:16:31 +02:00
|
|
|
private JSONObject attributes = new JSONObject();
|
2014-09-06 18:21:31 +02:00
|
|
|
|
2014-04-10 14:12:08 +02:00
|
|
|
private String nextPresence;
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-07-27 18:07:04 +02:00
|
|
|
private transient CopyOnWriteArrayList<Message> messages = null;
|
2014-02-01 15:07:20 +01:00
|
|
|
private transient Account account = null;
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-13 23:40:08 +01:00
|
|
|
private transient SessionImpl otrSession;
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-16 16:32:15 +01:00
|
|
|
private transient String otrFingerprint = null;
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-05-07 12:59:15 +02:00
|
|
|
private String nextMessage;
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-02-28 18:46:01 +01:00
|
|
|
private transient MucOptions mucOptions = null;
|
|
|
|
|
2014-10-07 16:02:52 +02:00
|
|
|
//private transient String latestMarkableMessageId;
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-06-20 17:30:19 +02:00
|
|
|
private byte[] symmetricKey;
|
|
|
|
|
2014-06-24 15:07:59 +02:00
|
|
|
private boolean otrSessionNeedsStarting = false;
|
|
|
|
|
2014-07-14 11:47:42 +02:00
|
|
|
private Bookmark bookmark;
|
|
|
|
|
2014-03-14 22:40:56 +01:00
|
|
|
public Conversation(String name, Account account, String contactJid,
|
|
|
|
int mode) {
|
|
|
|
this(java.util.UUID.randomUUID().toString(), name, null, account
|
|
|
|
.getUuid(), contactJid, System.currentTimeMillis(),
|
2014-09-28 15:21:56 +02:00
|
|
|
STATUS_AVAILABLE, mode, "");
|
2014-02-01 15:07:20 +01:00
|
|
|
this.account = account;
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
2014-02-10 15:24:34 +01:00
|
|
|
public Conversation(String uuid, String name, String contactUuid,
|
2014-03-14 22:40:56 +01:00
|
|
|
String accountUuid, String contactJid, long created, int status,
|
2014-09-27 18:16:31 +02:00
|
|
|
int mode, String attributes) {
|
2014-01-24 23:58:51 +01:00
|
|
|
this.uuid = uuid;
|
|
|
|
this.name = name;
|
2014-02-10 15:24:34 +01:00
|
|
|
this.contactUuid = contactUuid;
|
2014-01-24 23:58:51 +01:00
|
|
|
this.accountUuid = accountUuid;
|
|
|
|
this.contactJid = contactJid;
|
2014-01-25 19:33:12 +01:00
|
|
|
this.created = created;
|
2014-01-24 23:58:51 +01:00
|
|
|
this.status = status;
|
2014-02-05 22:33:39 +01:00
|
|
|
this.mode = mode;
|
2014-09-27 18:16:31 +02:00
|
|
|
try {
|
2014-09-28 15:21:56 +02:00
|
|
|
if (attributes == null) {
|
2014-09-27 18:16:31 +02:00
|
|
|
attributes = new String();
|
|
|
|
}
|
|
|
|
this.attributes = new JSONObject(attributes);
|
|
|
|
} catch (JSONException e) {
|
|
|
|
this.attributes = new JSONObject();
|
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
public List<Message> getMessages() {
|
2014-07-27 18:07:04 +02:00
|
|
|
if (messages == null) {
|
2014-08-31 16:28:21 +02:00
|
|
|
this.messages = new CopyOnWriteArrayList<Message>(); // prevent null
|
|
|
|
// pointer
|
2014-07-27 18:07:04 +02:00
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
|
|
|
// populate with Conversation (this)
|
|
|
|
|
|
|
|
for (Message msg : messages) {
|
2014-01-27 20:40:42 +01:00
|
|
|
msg.setConversation(this);
|
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
return messages;
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-10 22:45:59 +01:00
|
|
|
public boolean isRead() {
|
2014-03-14 22:40:56 +01:00
|
|
|
if ((this.messages == null) || (this.messages.size() == 0))
|
|
|
|
return true;
|
2014-02-10 22:45:59 +01:00
|
|
|
return this.messages.get(this.messages.size() - 1).isRead();
|
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-10 22:45:59 +01:00
|
|
|
public void markRead() {
|
2014-06-04 18:44:15 +02:00
|
|
|
if (this.messages == null) {
|
2014-03-14 22:40:56 +01:00
|
|
|
return;
|
2014-06-04 18:44:15 +02:00
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
for (int i = this.messages.size() - 1; i >= 0; --i) {
|
2014-06-04 18:44:15 +02:00
|
|
|
if (messages.get(i).isRead()) {
|
|
|
|
break;
|
|
|
|
}
|
2014-02-10 22:45:59 +01:00
|
|
|
this.messages.get(i).markRead();
|
|
|
|
}
|
|
|
|
}
|
2014-07-20 02:34:07 +02:00
|
|
|
|
2014-10-07 16:02:52 +02:00
|
|
|
public String getLatestMarkableMessageId() {
|
2014-10-09 23:08:40 +02:00
|
|
|
if (this.messages == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2014-10-07 16:02:52 +02:00
|
|
|
for(int i = this.messages.size() - 1; i >= 0; --i) {
|
|
|
|
if (this.messages.get(i).getStatus() <= Message.STATUS_RECEIVED && this.messages.get(i).markable) {
|
|
|
|
if (this.messages.get(i).isRead()) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return this.messages.get(i).getRemoteMsgId();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
2014-06-04 18:44:15 +02:00
|
|
|
}
|
|
|
|
|
2014-02-13 23:40:08 +01:00
|
|
|
public Message getLatestMessage() {
|
2014-03-14 22:40:56 +01:00
|
|
|
if ((this.messages == null) || (this.messages.size() == 0)) {
|
|
|
|
Message message = new Message(this, "", Message.ENCRYPTION_NONE);
|
2014-02-16 19:30:22 +01:00
|
|
|
message.setTime(getCreated());
|
2014-02-13 23:40:08 +01:00
|
|
|
return message;
|
2014-01-27 20:40:42 +01:00
|
|
|
} else {
|
2014-04-25 16:24:56 +02:00
|
|
|
Message message = this.messages.get(this.messages.size() - 1);
|
|
|
|
message.setConversation(this);
|
|
|
|
return message;
|
2014-01-27 20:40:42 +01:00
|
|
|
}
|
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-07-27 18:07:04 +02:00
|
|
|
public void setMessages(CopyOnWriteArrayList<Message> msgs) {
|
2014-01-25 19:33:12 +01:00
|
|
|
this.messages = msgs;
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
2014-09-02 16:00:03 +02:00
|
|
|
public String getName() {
|
|
|
|
if (getMode() == MODE_MULTI && getMucOptions().getSubject() != null) {
|
2014-03-14 22:40:56 +01:00
|
|
|
return getMucOptions().getSubject();
|
2014-07-20 02:34:07 +02:00
|
|
|
} else if (getMode() == MODE_MULTI && bookmark != null
|
|
|
|
&& bookmark.getName() != null) {
|
2014-07-14 17:13:59 +02:00
|
|
|
return bookmark.getName();
|
2014-02-10 15:24:34 +01:00
|
|
|
} else {
|
2014-05-19 15:15:09 +02:00
|
|
|
return this.getContact().getDisplayName();
|
2014-02-10 15:24:34 +01:00
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getProfilePhotoString() {
|
2014-05-19 15:15:09 +02:00
|
|
|
return this.getContact().getProfilePhoto();
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getAccountUuid() {
|
|
|
|
return this.accountUuid;
|
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
public Account getAccount() {
|
|
|
|
return this.account;
|
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-10 15:24:34 +01:00
|
|
|
public Contact getContact() {
|
2014-05-19 15:15:09 +02:00
|
|
|
return this.account.getRoster().getContact(this.contactJid);
|
2014-02-10 15:24:34 +01:00
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
public void setAccount(Account account) {
|
|
|
|
this.account = account;
|
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-01-24 23:58:51 +01:00
|
|
|
public String getContactJid() {
|
|
|
|
return this.contactJid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getStatus() {
|
|
|
|
return this.status;
|
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-01-26 03:27:55 +01:00
|
|
|
public long getCreated() {
|
|
|
|
return this.created;
|
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
|
|
|
|
public ContentValues getContentValues() {
|
|
|
|
ContentValues values = new ContentValues();
|
2014-01-25 19:33:12 +01:00
|
|
|
values.put(UUID, uuid);
|
|
|
|
values.put(NAME, name);
|
2014-02-10 22:45:59 +01:00
|
|
|
values.put(CONTACT, contactUuid);
|
2014-01-25 19:33:12 +01:00
|
|
|
values.put(ACCOUNT, accountUuid);
|
2014-02-10 15:24:34 +01:00
|
|
|
values.put(CONTACTJID, contactJid);
|
2014-01-25 19:33:12 +01:00
|
|
|
values.put(CREATED, created);
|
|
|
|
values.put(STATUS, status);
|
2014-03-14 22:40:56 +01:00
|
|
|
values.put(MODE, mode);
|
2014-09-28 15:21:56 +02:00
|
|
|
values.put(ATTRIBUTES, attributes.toString());
|
2014-01-24 23:58:51 +01:00
|
|
|
return values;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Conversation fromCursor(Cursor cursor) {
|
2014-01-25 19:33:12 +01:00
|
|
|
return new Conversation(cursor.getString(cursor.getColumnIndex(UUID)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(NAME)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(CONTACT)),
|
2014-02-10 15:24:34 +01:00
|
|
|
cursor.getString(cursor.getColumnIndex(ACCOUNT)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(CONTACTJID)),
|
2014-01-25 19:33:12 +01:00
|
|
|
cursor.getLong(cursor.getColumnIndex(CREATED)),
|
2014-02-05 22:33:39 +01:00
|
|
|
cursor.getInt(cursor.getColumnIndex(STATUS)),
|
2014-09-27 18:16:31 +02:00
|
|
|
cursor.getInt(cursor.getColumnIndex(MODE)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(ATTRIBUTES)));
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
2014-01-27 20:40:42 +01:00
|
|
|
|
|
|
|
public void setStatus(int status) {
|
|
|
|
this.status = status;
|
|
|
|
}
|
2014-02-05 22:33:39 +01:00
|
|
|
|
|
|
|
public int getMode() {
|
|
|
|
return this.mode;
|
|
|
|
}
|
2014-02-07 16:50:29 +01:00
|
|
|
|
|
|
|
public void setMode(int mode) {
|
|
|
|
this.mode = mode;
|
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-09-06 18:21:31 +02:00
|
|
|
public SessionImpl startOtrSession(XmppConnectionService service,
|
|
|
|
String presence, boolean sendStart) {
|
2014-03-21 23:09:14 +01:00
|
|
|
if (this.otrSession != null) {
|
|
|
|
return this.otrSession;
|
|
|
|
} else {
|
2014-09-28 15:21:56 +02:00
|
|
|
SessionID sessionId = new SessionID(this.getContactJid().split("/",
|
|
|
|
2)[0], presence, "xmpp");
|
2014-06-04 18:44:15 +02:00
|
|
|
this.otrSession = new SessionImpl(sessionId, getAccount()
|
2014-09-06 18:21:31 +02:00
|
|
|
.getOtrEngine(service));
|
2014-03-21 23:09:14 +01:00
|
|
|
try {
|
|
|
|
if (sendStart) {
|
|
|
|
this.otrSession.startSession();
|
2014-06-24 15:07:59 +02:00
|
|
|
this.otrSessionNeedsStarting = false;
|
2014-03-21 23:09:14 +01:00
|
|
|
return this.otrSession;
|
2014-06-24 15:07:59 +02:00
|
|
|
} else {
|
2014-07-20 02:34:07 +02:00
|
|
|
this.otrSessionNeedsStarting = true;
|
2014-03-21 23:09:14 +01:00
|
|
|
}
|
|
|
|
return this.otrSession;
|
|
|
|
} catch (OtrException e) {
|
|
|
|
return null;
|
|
|
|
}
|
2014-02-16 16:32:15 +01:00
|
|
|
}
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-02-13 23:40:08 +01:00
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-13 23:40:08 +01:00
|
|
|
public SessionImpl getOtrSession() {
|
|
|
|
return this.otrSession;
|
|
|
|
}
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-02-13 23:40:08 +01:00
|
|
|
public void resetOtrSession() {
|
2014-06-30 10:51:46 +02:00
|
|
|
this.otrFingerprint = null;
|
2014-06-24 15:07:59 +02:00
|
|
|
this.otrSessionNeedsStarting = false;
|
2014-02-13 23:40:08 +01:00
|
|
|
this.otrSession = null;
|
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-06-24 15:07:59 +02:00
|
|
|
public void startOtrIfNeeded() {
|
|
|
|
if (this.otrSession != null && this.otrSessionNeedsStarting) {
|
|
|
|
try {
|
|
|
|
this.otrSession.startSession();
|
|
|
|
} catch (OtrException e) {
|
|
|
|
this.resetOtrSession();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-20 02:34:07 +02:00
|
|
|
|
2014-03-12 19:56:06 +01:00
|
|
|
public void endOtrIfNeeded() {
|
2014-03-14 22:40:56 +01:00
|
|
|
if (this.otrSession != null) {
|
2014-02-13 23:40:08 +01:00
|
|
|
if (this.otrSession.getSessionStatus() == SessionStatus.ENCRYPTED) {
|
2014-03-12 19:56:06 +01:00
|
|
|
try {
|
|
|
|
this.otrSession.endSession();
|
|
|
|
this.resetOtrSession();
|
|
|
|
} catch (OtrException e) {
|
|
|
|
this.resetOtrSession();
|
|
|
|
}
|
2014-06-11 21:53:25 +02:00
|
|
|
} else {
|
|
|
|
this.resetOtrSession();
|
2014-02-13 23:40:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-16 16:32:15 +01:00
|
|
|
public boolean hasValidOtrSession() {
|
2014-05-23 10:54:40 +02:00
|
|
|
return this.otrSession != null;
|
2014-02-16 16:32:15 +01:00
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-16 16:32:15 +01:00
|
|
|
public String getOtrFingerprint() {
|
|
|
|
if (this.otrFingerprint == null) {
|
|
|
|
try {
|
2014-08-31 16:28:21 +02:00
|
|
|
if (getOtrSession() == null) {
|
2014-07-20 12:36:57 +02:00
|
|
|
return "";
|
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
DSAPublicKey remotePubKey = (DSAPublicKey) getOtrSession()
|
|
|
|
.getRemotePublicKey();
|
|
|
|
StringBuilder builder = new StringBuilder(
|
|
|
|
new OtrCryptoEngineImpl().getFingerprint(remotePubKey));
|
2014-02-16 16:32:15 +01:00
|
|
|
builder.insert(8, " ");
|
|
|
|
builder.insert(17, " ");
|
|
|
|
builder.insert(26, " ");
|
|
|
|
builder.insert(35, " ");
|
|
|
|
this.otrFingerprint = builder.toString();
|
|
|
|
} catch (OtrCryptoException e) {
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-16 16:32:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return this.otrFingerprint;
|
2014-02-13 23:40:08 +01:00
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-03-27 02:02:59 +01:00
|
|
|
public synchronized MucOptions getMucOptions() {
|
2014-02-28 18:46:01 +01:00
|
|
|
if (this.mucOptions == null) {
|
2014-05-22 15:36:41 +02:00
|
|
|
this.mucOptions = new MucOptions(this.getAccount());
|
2014-02-28 18:46:01 +01:00
|
|
|
}
|
2014-03-03 05:01:02 +01:00
|
|
|
this.mucOptions.setConversation(this);
|
2014-03-14 22:40:56 +01:00
|
|
|
return this.mucOptions;
|
2014-02-28 18:46:01 +01:00
|
|
|
}
|
2014-03-14 22:40:56 +01:00
|
|
|
|
2014-02-28 18:46:01 +01:00
|
|
|
public void resetMucOptions() {
|
|
|
|
this.mucOptions = null;
|
|
|
|
}
|
2014-03-03 05:01:02 +01:00
|
|
|
|
|
|
|
public void setContactJid(String jid) {
|
|
|
|
this.contactJid = jid;
|
|
|
|
}
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-04-10 14:12:08 +02:00
|
|
|
public void setNextPresence(String presence) {
|
|
|
|
this.nextPresence = presence;
|
|
|
|
}
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-04-10 14:12:08 +02:00
|
|
|
public String getNextPresence() {
|
|
|
|
return this.nextPresence;
|
|
|
|
}
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-05-07 12:33:55 +02:00
|
|
|
public int getLatestEncryption() {
|
|
|
|
int latestEncryption = this.getLatestMessage().getEncryption();
|
2014-06-04 18:44:15 +02:00
|
|
|
if ((latestEncryption == Message.ENCRYPTION_DECRYPTED)
|
|
|
|
|| (latestEncryption == Message.ENCRYPTION_DECRYPTION_FAILED)) {
|
2014-05-07 12:33:55 +02:00
|
|
|
return Message.ENCRYPTION_PGP;
|
|
|
|
} else {
|
|
|
|
return latestEncryption;
|
|
|
|
}
|
|
|
|
}
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-09-08 13:37:22 +02:00
|
|
|
public int getNextEncryption(boolean force) {
|
2014-09-27 18:16:31 +02:00
|
|
|
int next = this.getIntAttribute(ATTRIBUTE_NEXT_ENCRYPTION, -1);
|
|
|
|
if (next == -1) {
|
2014-09-08 13:37:22 +02:00
|
|
|
int latest = this.getLatestEncryption();
|
|
|
|
if (latest == Message.ENCRYPTION_NONE) {
|
|
|
|
if (force && getMode() == MODE_SINGLE) {
|
|
|
|
return Message.ENCRYPTION_OTR;
|
|
|
|
} else if (getContact().getPresences().size() == 1) {
|
|
|
|
if (getContact().getOtrFingerprints().size() >= 1) {
|
|
|
|
return Message.ENCRYPTION_OTR;
|
|
|
|
} else {
|
|
|
|
return latest;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return latest;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return latest;
|
|
|
|
}
|
2014-05-07 13:09:40 +02:00
|
|
|
}
|
2014-09-27 18:16:31 +02:00
|
|
|
if (next == Message.ENCRYPTION_NONE && force
|
2014-09-08 14:29:35 +02:00
|
|
|
&& getMode() == MODE_SINGLE) {
|
|
|
|
return Message.ENCRYPTION_OTR;
|
|
|
|
} else {
|
2014-09-27 18:16:31 +02:00
|
|
|
return next;
|
2014-09-08 14:29:35 +02:00
|
|
|
}
|
2014-05-07 12:33:55 +02:00
|
|
|
}
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-05-07 12:33:55 +02:00
|
|
|
public void setNextEncryption(int encryption) {
|
2014-09-27 18:16:31 +02:00
|
|
|
this.setAttribute(ATTRIBUTE_NEXT_ENCRYPTION, String.valueOf(encryption));
|
2014-05-07 12:33:55 +02:00
|
|
|
}
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-05-07 12:59:15 +02:00
|
|
|
public String getNextMessage() {
|
2014-06-04 18:44:15 +02:00
|
|
|
if (this.nextMessage == null) {
|
2014-05-16 12:07:58 +02:00
|
|
|
return "";
|
|
|
|
} else {
|
|
|
|
return this.nextMessage;
|
|
|
|
}
|
2014-05-07 12:59:15 +02:00
|
|
|
}
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-05-07 12:59:15 +02:00
|
|
|
public void setNextMessage(String message) {
|
|
|
|
this.nextMessage = message;
|
|
|
|
}
|
2014-06-04 18:44:15 +02:00
|
|
|
|
2014-06-20 17:30:19 +02:00
|
|
|
public void setSymmetricKey(byte[] key) {
|
|
|
|
this.symmetricKey = key;
|
|
|
|
}
|
2014-07-20 02:34:07 +02:00
|
|
|
|
2014-06-20 17:30:19 +02:00
|
|
|
public byte[] getSymmetricKey() {
|
|
|
|
return this.symmetricKey;
|
|
|
|
}
|
2014-07-14 11:47:42 +02:00
|
|
|
|
|
|
|
public void setBookmark(Bookmark bookmark) {
|
|
|
|
this.bookmark = bookmark;
|
2014-07-14 17:13:59 +02:00
|
|
|
this.bookmark.setConversation(this);
|
|
|
|
}
|
2014-07-20 02:34:07 +02:00
|
|
|
|
2014-07-14 17:13:59 +02:00
|
|
|
public void deregisterWithBookmark() {
|
|
|
|
if (this.bookmark != null) {
|
|
|
|
this.bookmark.setConversation(null);
|
|
|
|
}
|
2014-07-14 11:47:42 +02:00
|
|
|
}
|
2014-07-15 14:32:19 +02:00
|
|
|
|
|
|
|
public Bookmark getBookmark() {
|
|
|
|
return this.bookmark;
|
|
|
|
}
|
2014-08-05 22:58:46 +02:00
|
|
|
|
|
|
|
public Bitmap getImage(Context context, int size) {
|
2014-08-31 16:28:21 +02:00
|
|
|
if (mode == MODE_SINGLE) {
|
2014-08-05 22:58:46 +02:00
|
|
|
return getContact().getImage(size, context);
|
|
|
|
} else {
|
|
|
|
return UIHelper.getContactPicture(this, size, context, false);
|
|
|
|
}
|
|
|
|
}
|
2014-08-31 16:28:21 +02:00
|
|
|
|
2014-08-23 15:57:39 +02:00
|
|
|
public boolean hasDuplicateMessage(Message message) {
|
2014-08-31 16:28:21 +02:00
|
|
|
for (int i = this.getMessages().size() - 1; i >= 0; --i) {
|
2014-08-23 15:57:39 +02:00
|
|
|
if (this.messages.get(i).equals(message)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-09-03 12:36:54 +02:00
|
|
|
|
2014-10-07 15:18:09 +02:00
|
|
|
public void setMutedTill(long value) {
|
|
|
|
this.setAttribute(ATTRIBUTE_MUTED_TILL, String.valueOf(value));
|
2014-09-03 12:36:54 +02:00
|
|
|
}
|
2014-09-06 18:21:31 +02:00
|
|
|
|
2014-09-03 12:36:54 +02:00
|
|
|
public boolean isMuted() {
|
2014-10-07 15:18:09 +02:00
|
|
|
return SystemClock.elapsedRealtime() < this.getLongAttribute(
|
|
|
|
ATTRIBUTE_MUTED_TILL, 0);
|
2014-09-03 12:36:54 +02:00
|
|
|
}
|
2014-09-28 15:21:56 +02:00
|
|
|
|
2014-09-27 18:16:31 +02:00
|
|
|
public boolean setAttribute(String key, String value) {
|
|
|
|
try {
|
|
|
|
this.attributes.put(key, value);
|
|
|
|
return true;
|
|
|
|
} catch (JSONException e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-09-28 15:21:56 +02:00
|
|
|
|
2014-09-27 18:16:31 +02:00
|
|
|
public String getAttribute(String key) {
|
|
|
|
try {
|
|
|
|
return this.attributes.getString(key);
|
|
|
|
} catch (JSONException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2014-09-28 15:21:56 +02:00
|
|
|
|
2014-09-27 18:16:31 +02:00
|
|
|
public int getIntAttribute(String key, int defaultValue) {
|
|
|
|
String value = this.getAttribute(key);
|
2014-09-28 15:21:56 +02:00
|
|
|
if (value == null) {
|
2014-09-27 18:16:31 +02:00
|
|
|
return defaultValue;
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
return Integer.parseInt(value);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-07 15:18:09 +02:00
|
|
|
|
|
|
|
public long getLongAttribute(String key, long defaultValue) {
|
|
|
|
String value = this.getAttribute(key);
|
|
|
|
if (value == null) {
|
|
|
|
return defaultValue;
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
return Long.parseLong(value);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|