2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.entities;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
import android.content.ContentValues;
|
|
|
|
import android.database.Cursor;
|
|
|
|
|
2014-10-13 23:06:45 +00:00
|
|
|
import java.net.MalformedURLException;
|
|
|
|
import java.net.URL;
|
|
|
|
import java.util.Arrays;
|
|
|
|
|
2014-08-31 16:21:46 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2015-06-25 14:56:34 +00:00
|
|
|
import eu.siacs.conversations.crypto.axolotl.AxolotlService;
|
2015-03-07 13:15:38 +00:00
|
|
|
import eu.siacs.conversations.utils.GeoHelper;
|
2015-07-01 14:01:18 +00:00
|
|
|
import eu.siacs.conversations.utils.MimeUtils;
|
2015-05-10 01:12:44 +00:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
2014-11-05 20:55:47 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
|
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
public class Message extends AbstractEntity {
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-01-26 02:27:55 +00:00
|
|
|
public static final String TABLENAME = "messages";
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2015-06-10 01:30:17 +00:00
|
|
|
public static final String MERGE_SEPARATOR = " \u200B\n\n";
|
2015-05-11 12:18:30 +00:00
|
|
|
|
2014-08-28 09:01:24 +00:00
|
|
|
public static final int STATUS_RECEIVED = 0;
|
2014-01-25 18:33:12 +00:00
|
|
|
public static final int STATUS_UNSEND = 1;
|
|
|
|
public static final int STATUS_SEND = 2;
|
2014-04-11 07:13:56 +00:00
|
|
|
public static final int STATUS_SEND_FAILED = 3;
|
2014-06-12 21:04:28 +00:00
|
|
|
public static final int STATUS_WAITING = 5;
|
2014-04-22 16:46:40 +00:00
|
|
|
public static final int STATUS_OFFERED = 6;
|
2014-06-04 16:44:15 +00:00
|
|
|
public static final int STATUS_SEND_RECEIVED = 7;
|
|
|
|
public static final int STATUS_SEND_DISPLAYED = 8;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public static final int ENCRYPTION_NONE = 0;
|
|
|
|
public static final int ENCRYPTION_PGP = 1;
|
|
|
|
public static final int ENCRYPTION_OTR = 2;
|
2014-02-27 23:22:56 +00:00
|
|
|
public static final int ENCRYPTION_DECRYPTED = 3;
|
2014-05-01 20:33:49 +00:00
|
|
|
public static final int ENCRYPTION_DECRYPTION_FAILED = 4;
|
2015-06-25 14:56:34 +00:00
|
|
|
public static final int ENCRYPTION_AXOLOTL = 5;
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-04-06 13:34:08 +00:00
|
|
|
public static final int TYPE_TEXT = 0;
|
|
|
|
public static final int TYPE_IMAGE = 1;
|
2014-11-13 20:04:05 +00:00
|
|
|
public static final int TYPE_FILE = 2;
|
2014-06-04 19:40:17 +00:00
|
|
|
public static final int TYPE_STATUS = 3;
|
2014-08-10 13:27:44 +00:00
|
|
|
public static final int TYPE_PRIVATE = 4;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2015-01-11 15:22:29 +00:00
|
|
|
public static final String CONVERSATION = "conversationUuid";
|
|
|
|
public static final String COUNTERPART = "counterpart";
|
|
|
|
public static final String TRUE_COUNTERPART = "trueCounterpart";
|
|
|
|
public static final String BODY = "body";
|
|
|
|
public static final String TIME_SENT = "timeSent";
|
|
|
|
public static final String ENCRYPTION = "encryption";
|
|
|
|
public static final String STATUS = "status";
|
|
|
|
public static final String TYPE = "type";
|
|
|
|
public static final String REMOTE_MSG_ID = "remoteMsgId";
|
|
|
|
public static final String SERVER_MSG_ID = "serverMsgId";
|
|
|
|
public static final String RELATIVE_FILE_PATH = "relativeFilePath";
|
2015-07-09 12:23:17 +00:00
|
|
|
public static final String FINGERPRINT = "axolotl_fingerprint";
|
2015-01-25 15:29:26 +00:00
|
|
|
public static final String ME_COMMAND = "/me ";
|
2015-01-11 15:22:29 +00:00
|
|
|
|
2015-03-07 13:15:38 +00:00
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
public boolean markable = false;
|
2014-01-25 18:33:12 +00:00
|
|
|
protected String conversationUuid;
|
2014-11-05 20:55:47 +00:00
|
|
|
protected Jid counterpart;
|
2014-11-17 19:02:46 +00:00
|
|
|
protected Jid trueCounterpart;
|
2014-01-25 18:33:12 +00:00
|
|
|
protected String body;
|
2014-04-03 15:39:57 +00:00
|
|
|
protected String encryptedBody;
|
2014-01-25 18:33:12 +00:00
|
|
|
protected long timeSent;
|
|
|
|
protected int encryption;
|
|
|
|
protected int status;
|
2014-04-06 13:34:08 +00:00
|
|
|
protected int type;
|
2014-11-13 20:04:05 +00:00
|
|
|
protected String relativeFilePath;
|
2014-02-10 21:45:59 +00:00
|
|
|
protected boolean read = true;
|
2014-08-21 10:32:50 +00:00
|
|
|
protected String remoteMsgId = null;
|
2014-12-09 20:41:49 +00:00
|
|
|
protected String serverMsgId = null;
|
2014-10-07 14:02:52 +00:00
|
|
|
protected Conversation conversation = null;
|
2015-07-10 13:11:03 +00:00
|
|
|
protected Transferable transferable = null;
|
2014-10-20 15:01:37 +00:00
|
|
|
private Message mNextMessage = null;
|
|
|
|
private Message mPreviousMessage = null;
|
2015-07-09 12:23:17 +00:00
|
|
|
private String axolotlFingerprint = null;
|
2014-10-20 15:01:37 +00:00
|
|
|
|
2014-06-04 19:40:17 +00:00
|
|
|
private Message() {
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-06-04 19:40:17 +00:00
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public Message(Conversation conversation, String body, int encryption) {
|
2014-11-18 13:49:49 +00:00
|
|
|
this(conversation, body, encryption, STATUS_UNSEND);
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-11-10 00:24:35 +00:00
|
|
|
public Message(Conversation conversation, String body, int encryption, int status) {
|
2014-12-01 09:58:06 +00:00
|
|
|
this(java.util.UUID.randomUUID().toString(),
|
|
|
|
conversation.getUuid(),
|
2014-12-21 20:43:58 +00:00
|
|
|
conversation.getJid() == null ? null : conversation.getJid().toBareJid(),
|
2014-12-01 09:58:06 +00:00
|
|
|
null,
|
|
|
|
body,
|
|
|
|
System.currentTimeMillis(),
|
|
|
|
encryption,
|
|
|
|
status,
|
|
|
|
TYPE_TEXT,
|
|
|
|
null,
|
2014-12-09 20:41:49 +00:00
|
|
|
null,
|
2015-07-09 12:23:17 +00:00
|
|
|
null,
|
2014-12-01 09:58:06 +00:00
|
|
|
null);
|
2014-02-01 14:07:20 +00:00
|
|
|
this.conversation = conversation;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-12-01 09:58:06 +00:00
|
|
|
private Message(final String uuid, final String conversationUUid, final Jid counterpart,
|
2015-05-10 01:12:44 +00:00
|
|
|
final Jid trueCounterpart, final String body, final long timeSent,
|
|
|
|
final int encryption, final int status, final int type, final String remoteMsgId,
|
2015-07-09 12:23:17 +00:00
|
|
|
final String relativeFilePath, final String serverMsgId, final String fingerprint) {
|
2014-01-25 18:33:12 +00:00
|
|
|
this.uuid = uuid;
|
|
|
|
this.conversationUuid = conversationUUid;
|
|
|
|
this.counterpart = counterpart;
|
2014-07-29 12:42:17 +00:00
|
|
|
this.trueCounterpart = trueCounterpart;
|
2014-01-25 18:33:12 +00:00
|
|
|
this.body = body;
|
|
|
|
this.timeSent = timeSent;
|
|
|
|
this.encryption = encryption;
|
|
|
|
this.status = status;
|
2014-04-06 13:34:08 +00:00
|
|
|
this.type = type;
|
2014-08-21 10:32:50 +00:00
|
|
|
this.remoteMsgId = remoteMsgId;
|
2014-11-13 20:04:05 +00:00
|
|
|
this.relativeFilePath = relativeFilePath;
|
2014-12-09 20:41:49 +00:00
|
|
|
this.serverMsgId = serverMsgId;
|
2015-07-09 12:23:17 +00:00
|
|
|
this.axolotlFingerprint = fingerprint;
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
public static Message fromCursor(Cursor cursor) {
|
|
|
|
Jid jid;
|
|
|
|
try {
|
2014-11-14 18:49:44 +00:00
|
|
|
String value = cursor.getString(cursor.getColumnIndex(COUNTERPART));
|
2014-11-18 13:49:49 +00:00
|
|
|
if (value != null) {
|
2015-03-05 21:11:59 +00:00
|
|
|
jid = Jid.fromString(value, true);
|
2014-11-14 18:49:44 +00:00
|
|
|
} else {
|
|
|
|
jid = null;
|
|
|
|
}
|
2014-11-09 16:46:00 +00:00
|
|
|
} catch (InvalidJidException e) {
|
|
|
|
jid = null;
|
|
|
|
}
|
2014-11-17 19:02:46 +00:00
|
|
|
Jid trueCounterpart;
|
|
|
|
try {
|
|
|
|
String value = cursor.getString(cursor.getColumnIndex(TRUE_COUNTERPART));
|
2014-11-18 13:49:49 +00:00
|
|
|
if (value != null) {
|
2015-03-05 21:11:59 +00:00
|
|
|
trueCounterpart = Jid.fromString(value, true);
|
2014-11-17 19:02:46 +00:00
|
|
|
} else {
|
|
|
|
trueCounterpart = null;
|
|
|
|
}
|
|
|
|
} catch (InvalidJidException e) {
|
|
|
|
trueCounterpart = null;
|
|
|
|
}
|
2014-11-09 16:46:00 +00:00
|
|
|
return new Message(cursor.getString(cursor.getColumnIndex(UUID)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(CONVERSATION)),
|
|
|
|
jid,
|
2014-11-17 19:02:46 +00:00
|
|
|
trueCounterpart,
|
2014-11-09 16:46:00 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(BODY)),
|
|
|
|
cursor.getLong(cursor.getColumnIndex(TIME_SENT)),
|
|
|
|
cursor.getInt(cursor.getColumnIndex(ENCRYPTION)),
|
|
|
|
cursor.getInt(cursor.getColumnIndex(STATUS)),
|
|
|
|
cursor.getInt(cursor.getColumnIndex(TYPE)),
|
2014-11-13 20:04:05 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(REMOTE_MSG_ID)),
|
2014-12-09 20:41:49 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(RELATIVE_FILE_PATH)),
|
2015-07-09 12:23:17 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(SERVER_MSG_ID)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(FINGERPRINT)));
|
2014-11-09 16:46:00 +00:00
|
|
|
}
|
|
|
|
|
2015-02-21 10:06:52 +00:00
|
|
|
public static Message createStatusMessage(Conversation conversation, String body) {
|
2014-11-09 16:46:00 +00:00
|
|
|
Message message = new Message();
|
|
|
|
message.setType(Message.TYPE_STATUS);
|
|
|
|
message.setConversation(conversation);
|
2015-02-21 10:06:52 +00:00
|
|
|
message.setBody(body);
|
2014-11-09 16:46:00 +00:00
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
@Override
|
|
|
|
public ContentValues getContentValues() {
|
|
|
|
ContentValues values = new ContentValues();
|
2014-01-28 18:21:54 +00:00
|
|
|
values.put(UUID, uuid);
|
2014-01-25 18:33:12 +00:00
|
|
|
values.put(CONVERSATION, conversationUuid);
|
2014-11-09 16:46:00 +00:00
|
|
|
if (counterpart == null) {
|
|
|
|
values.putNull(COUNTERPART);
|
|
|
|
} else {
|
|
|
|
values.put(COUNTERPART, counterpart.toString());
|
|
|
|
}
|
2014-11-18 13:49:49 +00:00
|
|
|
if (trueCounterpart == null) {
|
2014-11-17 19:02:46 +00:00
|
|
|
values.putNull(TRUE_COUNTERPART);
|
|
|
|
} else {
|
|
|
|
values.put(TRUE_COUNTERPART, trueCounterpart.toString());
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
values.put(BODY, body);
|
|
|
|
values.put(TIME_SENT, timeSent);
|
|
|
|
values.put(ENCRYPTION, encryption);
|
|
|
|
values.put(STATUS, status);
|
2014-04-06 13:34:08 +00:00
|
|
|
values.put(TYPE, type);
|
2014-08-31 12:29:12 +00:00
|
|
|
values.put(REMOTE_MSG_ID, remoteMsgId);
|
2014-11-13 20:04:05 +00:00
|
|
|
values.put(RELATIVE_FILE_PATH, relativeFilePath);
|
2015-05-10 01:12:44 +00:00
|
|
|
values.put(SERVER_MSG_ID, serverMsgId);
|
2015-07-09 12:23:17 +00:00
|
|
|
values.put(FINGERPRINT, axolotlFingerprint);
|
2014-01-25 18:33:12 +00:00
|
|
|
return values;
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public String getConversationUuid() {
|
|
|
|
return conversationUuid;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
public Conversation getConversation() {
|
|
|
|
return this.conversation;
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
public void setConversation(Conversation conv) {
|
|
|
|
this.conversation = conv;
|
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public Jid getCounterpart() {
|
2014-01-25 18:33:12 +00:00
|
|
|
return counterpart;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
public void setCounterpart(final Jid counterpart) {
|
|
|
|
this.counterpart = counterpart;
|
|
|
|
}
|
|
|
|
|
2014-07-29 12:42:17 +00:00
|
|
|
public Contact getContact() {
|
|
|
|
if (this.conversation.getMode() == Conversation.MODE_SINGLE) {
|
|
|
|
return this.conversation.getContact();
|
|
|
|
} else {
|
|
|
|
if (this.trueCounterpart == null) {
|
|
|
|
return null;
|
|
|
|
} else {
|
2014-10-15 17:32:12 +00:00
|
|
|
return this.conversation.getAccount().getRoster()
|
2015-05-10 01:12:44 +00:00
|
|
|
.getContactFromRoster(this.trueCounterpart);
|
2014-07-29 12:42:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
public String getBody() {
|
|
|
|
return body;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
public void setBody(String body) {
|
|
|
|
this.body = body;
|
|
|
|
}
|
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
public long getTimeSent() {
|
|
|
|
return timeSent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getEncryption() {
|
|
|
|
return encryption;
|
|
|
|
}
|
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
public void setEncryption(int encryption) {
|
|
|
|
this.encryption = encryption;
|
|
|
|
}
|
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
public int getStatus() {
|
|
|
|
return status;
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
public void setStatus(int status) {
|
|
|
|
this.status = status;
|
|
|
|
}
|
|
|
|
|
2014-11-18 13:49:49 +00:00
|
|
|
public String getRelativeFilePath() {
|
|
|
|
return this.relativeFilePath;
|
2014-11-13 20:04:05 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 13:49:49 +00:00
|
|
|
public void setRelativeFilePath(String path) {
|
|
|
|
this.relativeFilePath = path;
|
2014-11-13 20:04:05 +00:00
|
|
|
}
|
|
|
|
|
2014-08-21 10:32:50 +00:00
|
|
|
public String getRemoteMsgId() {
|
|
|
|
return this.remoteMsgId;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-08-21 10:32:50 +00:00
|
|
|
public void setRemoteMsgId(String id) {
|
|
|
|
this.remoteMsgId = id;
|
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-12-09 20:41:49 +00:00
|
|
|
public String getServerMsgId() {
|
|
|
|
return this.serverMsgId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setServerMsgId(String id) {
|
|
|
|
this.serverMsgId = id;
|
|
|
|
}
|
|
|
|
|
2014-02-10 21:45:59 +00:00
|
|
|
public boolean isRead() {
|
|
|
|
return this.read;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-02-10 21:45:59 +00:00
|
|
|
public void markRead() {
|
|
|
|
this.read = true;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-02-10 21:45:59 +00:00
|
|
|
public void markUnread() {
|
|
|
|
this.read = false;
|
|
|
|
}
|
2014-02-11 14:34:24 +00:00
|
|
|
|
|
|
|
public void setTime(long time) {
|
|
|
|
this.timeSent = time;
|
|
|
|
}
|
2014-02-16 15:32:15 +00:00
|
|
|
|
2014-04-03 15:39:57 +00:00
|
|
|
public String getEncryptedBody() {
|
|
|
|
return this.encryptedBody;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-04-03 15:39:57 +00:00
|
|
|
public void setEncryptedBody(String body) {
|
|
|
|
this.encryptedBody = body;
|
|
|
|
}
|
2014-04-06 13:34:08 +00:00
|
|
|
|
|
|
|
public int getType() {
|
|
|
|
return this.type;
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
public void setType(int type) {
|
|
|
|
this.type = type;
|
2014-07-29 12:42:17 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-11-17 19:02:46 +00:00
|
|
|
public void setTrueCounterpart(Jid trueCounterpart) {
|
2014-11-09 16:46:00 +00:00
|
|
|
this.trueCounterpart = trueCounterpart;
|
2014-04-22 16:46:40 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2015-07-10 13:11:03 +00:00
|
|
|
public Transferable getTransferable() {
|
|
|
|
return this.transferable;
|
2014-04-22 16:46:40 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2015-07-10 13:11:03 +00:00
|
|
|
public void setTransferable(Transferable transferable) {
|
|
|
|
this.transferable = transferable;
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-08-23 13:57:39 +00:00
|
|
|
public boolean equals(Message message) {
|
2014-12-09 20:41:49 +00:00
|
|
|
if (this.serverMsgId != null && message.getServerMsgId() != null) {
|
|
|
|
return this.serverMsgId.equals(message.getServerMsgId());
|
2015-01-20 21:54:58 +00:00
|
|
|
} else if (this.body == null || this.counterpart == null) {
|
|
|
|
return false;
|
2014-12-09 20:41:49 +00:00
|
|
|
} else {
|
2015-07-17 22:01:34 +00:00
|
|
|
String body, otherBody;
|
|
|
|
if (this.hasFileOnRemoteHost()) {
|
|
|
|
body = getFileParams().url.toString();
|
|
|
|
otherBody = message.body == null ? null : message.body.trim();
|
|
|
|
} else {
|
|
|
|
body = this.body;
|
|
|
|
otherBody = message.body;
|
|
|
|
}
|
|
|
|
if (message.getRemoteMsgId() != null) {
|
|
|
|
return (message.getRemoteMsgId().equals(this.remoteMsgId) || message.getRemoteMsgId().equals(this.uuid))
|
|
|
|
&& this.counterpart.equals(message.getCounterpart())
|
|
|
|
&& body.equals(otherBody);
|
|
|
|
} else {
|
|
|
|
return this.remoteMsgId == null
|
|
|
|
&& this.counterpart.equals(message.getCounterpart())
|
|
|
|
&& body.equals(otherBody)
|
|
|
|
&& Math.abs(this.getTimeSent() - message.getTimeSent()) < Config.MESSAGE_MERGE_WINDOW * 1000;
|
|
|
|
}
|
2014-12-09 20:41:49 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Message next() {
|
2014-12-13 14:32:11 +00:00
|
|
|
synchronized (this.conversation.messages) {
|
|
|
|
if (this.mNextMessage == null) {
|
2014-10-20 15:01:37 +00:00
|
|
|
int index = this.conversation.messages.indexOf(this);
|
2014-12-14 17:10:46 +00:00
|
|
|
if (index < 0 || index >= this.conversation.messages.size() - 1) {
|
2014-10-20 15:01:37 +00:00
|
|
|
this.mNextMessage = null;
|
|
|
|
} else {
|
2014-12-14 17:10:46 +00:00
|
|
|
this.mNextMessage = this.conversation.messages.get(index + 1);
|
2014-10-20 15:01:37 +00:00
|
|
|
}
|
|
|
|
}
|
2014-12-13 14:32:11 +00:00
|
|
|
return this.mNextMessage;
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Message prev() {
|
2014-12-13 14:32:11 +00:00
|
|
|
synchronized (this.conversation.messages) {
|
|
|
|
if (this.mPreviousMessage == null) {
|
2014-10-20 15:01:37 +00:00
|
|
|
int index = this.conversation.messages.indexOf(this);
|
|
|
|
if (index <= 0 || index > this.conversation.messages.size()) {
|
|
|
|
this.mPreviousMessage = null;
|
|
|
|
} else {
|
2014-12-14 17:10:46 +00:00
|
|
|
this.mPreviousMessage = this.conversation.messages.get(index - 1);
|
2014-10-20 15:01:37 +00:00
|
|
|
}
|
|
|
|
}
|
2014-12-13 14:32:11 +00:00
|
|
|
return this.mPreviousMessage;
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-18 13:49:49 +00:00
|
|
|
public boolean mergeable(final Message message) {
|
2015-01-11 15:22:29 +00:00
|
|
|
return message != null &&
|
2015-05-10 01:12:44 +00:00
|
|
|
(message.getType() == Message.TYPE_TEXT &&
|
2015-07-10 13:11:03 +00:00
|
|
|
this.getTransferable() == null &&
|
|
|
|
message.getTransferable() == null &&
|
2015-05-10 01:12:44 +00:00
|
|
|
message.getEncryption() != Message.ENCRYPTION_PGP &&
|
|
|
|
this.getType() == message.getType() &&
|
|
|
|
//this.getStatus() == message.getStatus() &&
|
|
|
|
isStatusMergeable(this.getStatus(), message.getStatus()) &&
|
|
|
|
this.getEncryption() == message.getEncryption() &&
|
|
|
|
this.getCounterpart() != null &&
|
|
|
|
this.getCounterpart().equals(message.getCounterpart()) &&
|
|
|
|
(message.getTimeSent() - this.getTimeSent()) <= (Config.MESSAGE_MERGE_WINDOW * 1000) &&
|
|
|
|
!GeoHelper.isGeoUri(message.getBody()) &&
|
|
|
|
!GeoHelper.isGeoUri(this.body) &&
|
2015-07-01 14:01:18 +00:00
|
|
|
message.treatAsDownloadable() == Decision.NEVER &&
|
|
|
|
this.treatAsDownloadable() == Decision.NEVER &&
|
2015-05-10 01:12:44 +00:00
|
|
|
!message.getBody().startsWith(ME_COMMAND) &&
|
|
|
|
!this.getBody().startsWith(ME_COMMAND) &&
|
|
|
|
!this.bodyIsHeart() &&
|
2015-07-15 13:45:12 +00:00
|
|
|
!message.bodyIsHeart() &&
|
|
|
|
this.isTrusted() == message.isTrusted()
|
2015-05-10 01:12:44 +00:00
|
|
|
);
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
2015-03-01 11:05:54 +00:00
|
|
|
private static boolean isStatusMergeable(int a, int b) {
|
|
|
|
return a == b || (
|
2015-05-10 01:12:44 +00:00
|
|
|
(a == Message.STATUS_SEND_RECEIVED && b == Message.STATUS_UNSEND)
|
|
|
|
|| (a == Message.STATUS_SEND_RECEIVED && b == Message.STATUS_SEND)
|
|
|
|
|| (a == Message.STATUS_UNSEND && b == Message.STATUS_SEND)
|
|
|
|
|| (a == Message.STATUS_UNSEND && b == Message.STATUS_SEND_RECEIVED)
|
|
|
|
|| (a == Message.STATUS_SEND && b == Message.STATUS_UNSEND)
|
|
|
|
|| (a == Message.STATUS_SEND && b == Message.STATUS_SEND_RECEIVED)
|
2015-03-01 11:05:54 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-08-31 12:29:12 +00:00
|
|
|
public String getMergedBody() {
|
2015-07-28 21:00:30 +00:00
|
|
|
StringBuilder body = new StringBuilder(this.body.trim());
|
|
|
|
Message current = this;
|
|
|
|
while(current.mergeable(current.next())) {
|
|
|
|
current = current.next();
|
|
|
|
body.append(MERGE_SEPARATOR);
|
|
|
|
body.append(current.getBody().trim());
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
2015-07-28 21:00:30 +00:00
|
|
|
return body.toString();
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
2015-01-11 15:22:29 +00:00
|
|
|
|
|
|
|
public boolean hasMeCommand() {
|
2015-01-25 15:29:26 +00:00
|
|
|
return getMergedBody().startsWith(ME_COMMAND);
|
2015-01-11 15:22:29 +00:00
|
|
|
}
|
2014-09-08 21:58:37 +00:00
|
|
|
|
2014-08-31 16:55:15 +00:00
|
|
|
public int getMergedStatus() {
|
2015-07-28 21:00:30 +00:00
|
|
|
int status = this.status;
|
|
|
|
Message current = this;
|
|
|
|
while(current.mergeable(current.next())) {
|
|
|
|
current = current.next();
|
|
|
|
status = current.status;
|
2015-03-01 11:05:54 +00:00
|
|
|
}
|
2015-07-28 21:00:30 +00:00
|
|
|
return status;
|
2014-08-31 16:55:15 +00:00
|
|
|
}
|
2014-09-08 21:58:37 +00:00
|
|
|
|
2014-08-31 16:55:15 +00:00
|
|
|
public long getMergedTimeSent() {
|
2015-07-28 21:00:30 +00:00
|
|
|
long time = this.timeSent;
|
|
|
|
Message current = this;
|
|
|
|
while(current.mergeable(current.next())) {
|
|
|
|
current = current.next();
|
|
|
|
time = current.timeSent;
|
2014-08-31 16:55:15 +00:00
|
|
|
}
|
2015-07-28 21:00:30 +00:00
|
|
|
return time;
|
2014-08-31 16:55:15 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
|
|
|
public boolean wasMergedIntoPrevious() {
|
|
|
|
Message prev = this.prev();
|
2014-11-09 16:46:00 +00:00
|
|
|
return prev != null && prev.mergeable(this);
|
2014-08-23 13:57:39 +00:00
|
|
|
}
|
2014-11-09 16:46:00 +00:00
|
|
|
|
2014-10-27 10:00:03 +00:00
|
|
|
public boolean trusted() {
|
|
|
|
Contact contact = this.getContact();
|
|
|
|
return (status > STATUS_RECEIVED || (contact != null && contact.trusted()));
|
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
|
2015-07-05 09:59:38 +00:00
|
|
|
public boolean fixCounterpart() {
|
|
|
|
Presences presences = conversation.getContact().getPresences();
|
|
|
|
if (counterpart != null && presences.has(counterpart.getResourcepart())) {
|
|
|
|
return true;
|
|
|
|
} else if (presences.size() >= 1) {
|
|
|
|
try {
|
|
|
|
counterpart = Jid.fromParts(conversation.getJid().getLocalpart(),
|
|
|
|
conversation.getJid().getDomainpart(),
|
|
|
|
presences.asStringArray()[0]);
|
|
|
|
return true;
|
|
|
|
} catch (InvalidJidException e) {
|
|
|
|
counterpart = null;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
counterpart = null;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-30 11:52:53 +00:00
|
|
|
public enum Decision {
|
2015-07-01 14:01:18 +00:00
|
|
|
MUST,
|
|
|
|
SHOULD,
|
|
|
|
NEVER,
|
|
|
|
}
|
|
|
|
|
|
|
|
private static String extractRelevantExtension(URL url) {
|
|
|
|
String path = url.getPath();
|
|
|
|
if (path == null || path.isEmpty()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
String filename = path.substring(path.lastIndexOf('/') + 1).toLowerCase();
|
|
|
|
String[] extensionParts = filename.split("\\.");
|
|
|
|
if (extensionParts.length == 2) {
|
|
|
|
return extensionParts[extensionParts.length - 1];
|
|
|
|
} else if (extensionParts.length == 3 && Arrays
|
2015-07-10 13:11:03 +00:00
|
|
|
.asList(Transferable.VALID_CRYPTO_EXTENSIONS)
|
2015-07-01 14:01:18 +00:00
|
|
|
.contains(extensionParts[extensionParts.length - 1])) {
|
|
|
|
return extensionParts[extensionParts.length -2];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getMimeType() {
|
|
|
|
if (relativeFilePath != null) {
|
|
|
|
int start = relativeFilePath.lastIndexOf('.') + 1;
|
|
|
|
if (start < relativeFilePath.length()) {
|
|
|
|
return MimeUtils.guessMimeTypeFromExtension(relativeFilePath.substring(start));
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
try {
|
2015-07-02 21:13:00 +00:00
|
|
|
return MimeUtils.guessMimeTypeFromExtension(extractRelevantExtension(new URL(body.trim())));
|
2015-07-01 14:01:18 +00:00
|
|
|
} catch (MalformedURLException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2015-06-30 11:52:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Decision treatAsDownloadable() {
|
2015-05-16 10:49:04 +00:00
|
|
|
if (body.trim().contains(" ")) {
|
2015-07-01 14:01:18 +00:00
|
|
|
return Decision.NEVER;
|
2015-04-13 08:57:30 +00:00
|
|
|
}
|
2014-10-13 23:06:45 +00:00
|
|
|
try {
|
2015-04-13 08:57:30 +00:00
|
|
|
URL url = new URL(body);
|
2015-06-30 11:52:53 +00:00
|
|
|
if (!url.getProtocol().equalsIgnoreCase("http") && !url.getProtocol().equalsIgnoreCase("https")) {
|
2015-07-01 14:01:18 +00:00
|
|
|
return Decision.NEVER;
|
2015-05-10 01:12:44 +00:00
|
|
|
}
|
2015-07-01 14:01:18 +00:00
|
|
|
String extension = extractRelevantExtension(url);
|
|
|
|
if (extension == null) {
|
|
|
|
return Decision.NEVER;
|
2014-10-27 20:47:17 +00:00
|
|
|
}
|
2015-06-30 11:52:53 +00:00
|
|
|
String ref = url.getRef();
|
2015-07-01 14:01:18 +00:00
|
|
|
boolean encrypted = ref != null && ref.matches("([A-Fa-f0-9]{2}){48}");
|
2015-06-30 11:52:53 +00:00
|
|
|
|
2015-07-01 14:01:18 +00:00
|
|
|
if (encrypted) {
|
|
|
|
if (MimeUtils.guessMimeTypeFromExtension(extension) != null) {
|
|
|
|
return Decision.MUST;
|
|
|
|
} else {
|
|
|
|
return Decision.NEVER;
|
|
|
|
}
|
2015-07-10 13:11:03 +00:00
|
|
|
} else if (Arrays.asList(Transferable.VALID_IMAGE_EXTENSIONS).contains(extension)
|
|
|
|
|| Arrays.asList(Transferable.WELL_KNOWN_EXTENSIONS).contains(extension)) {
|
2015-07-01 14:01:18 +00:00
|
|
|
return Decision.SHOULD;
|
2015-06-30 11:52:53 +00:00
|
|
|
} else {
|
2015-07-01 14:01:18 +00:00
|
|
|
return Decision.NEVER;
|
2015-06-30 11:52:53 +00:00
|
|
|
}
|
|
|
|
|
2014-10-13 23:06:45 +00:00
|
|
|
} catch (MalformedURLException e) {
|
2015-07-01 14:01:18 +00:00
|
|
|
return Decision.NEVER;
|
2014-10-13 23:06:45 +00:00
|
|
|
}
|
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
|
2015-05-10 01:12:44 +00:00
|
|
|
public boolean bodyIsHeart() {
|
2015-05-10 10:04:11 +00:00
|
|
|
return body != null && UIHelper.HEARTS.contains(body.trim());
|
2015-05-10 01:12:44 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 15:15:02 +00:00
|
|
|
public FileParams getFileParams() {
|
|
|
|
FileParams params = getLegacyFileParams();
|
2014-11-09 16:46:00 +00:00
|
|
|
if (params != null) {
|
2014-10-26 19:18:57 +00:00
|
|
|
return params;
|
|
|
|
}
|
2015-06-30 15:15:02 +00:00
|
|
|
params = new FileParams();
|
2015-07-10 13:11:03 +00:00
|
|
|
if (this.transferable != null) {
|
|
|
|
params.size = this.transferable.getFileSize();
|
2014-10-15 17:32:12 +00:00
|
|
|
}
|
|
|
|
if (body == null) {
|
2014-10-14 16:16:03 +00:00
|
|
|
return params;
|
|
|
|
}
|
2014-10-26 19:18:57 +00:00
|
|
|
String parts[] = body.split("\\|");
|
2015-06-30 15:15:02 +00:00
|
|
|
switch (parts.length) {
|
|
|
|
case 1:
|
|
|
|
try {
|
|
|
|
params.size = Long.parseLong(parts[0]);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
try {
|
|
|
|
params.url = new URL(parts[0]);
|
|
|
|
} catch (MalformedURLException e1) {
|
|
|
|
params.url = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
case 4:
|
2014-10-23 19:27:41 +00:00
|
|
|
try {
|
|
|
|
params.url = new URL(parts[0]);
|
|
|
|
} catch (MalformedURLException e1) {
|
|
|
|
params.url = null;
|
|
|
|
}
|
2015-06-30 15:15:02 +00:00
|
|
|
try {
|
|
|
|
params.size = Long.parseLong(parts[1]);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
params.size = 0;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
params.width = Integer.parseInt(parts[2]);
|
|
|
|
} catch (NumberFormatException | ArrayIndexOutOfBoundsException e) {
|
|
|
|
params.width = 0;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
params.height = Integer.parseInt(parts[3]);
|
|
|
|
} catch (NumberFormatException | ArrayIndexOutOfBoundsException e) {
|
|
|
|
params.height = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
try {
|
|
|
|
params.size = Long.parseLong(parts[0]);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
params.size = 0;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
params.width = Integer.parseInt(parts[1]);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
params.width = 0;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
params.height = Integer.parseInt(parts[2]);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
params.height = 0;
|
|
|
|
}
|
|
|
|
break;
|
2014-10-14 16:16:03 +00:00
|
|
|
}
|
|
|
|
return params;
|
|
|
|
}
|
2014-11-09 16:46:00 +00:00
|
|
|
|
2015-06-30 15:15:02 +00:00
|
|
|
public FileParams getLegacyFileParams() {
|
|
|
|
FileParams params = new FileParams();
|
2014-10-26 19:18:57 +00:00
|
|
|
if (body == null) {
|
|
|
|
return params;
|
|
|
|
}
|
|
|
|
String parts[] = body.split(",");
|
|
|
|
if (parts.length == 3) {
|
|
|
|
try {
|
|
|
|
params.size = Long.parseLong(parts[0]);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
params.width = Integer.parseInt(parts[1]);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
params.height = Integer.parseInt(parts[2]);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return params;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
|
2014-12-08 20:59:14 +00:00
|
|
|
public void untie() {
|
|
|
|
this.mNextMessage = null;
|
|
|
|
this.mPreviousMessage = null;
|
|
|
|
}
|
|
|
|
|
2015-01-02 13:27:49 +00:00
|
|
|
public boolean isFileOrImage() {
|
|
|
|
return type == TYPE_FILE || type == TYPE_IMAGE;
|
|
|
|
}
|
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
public boolean hasFileOnRemoteHost() {
|
2015-06-30 15:15:02 +00:00
|
|
|
return isFileOrImage() && getFileParams().url != null;
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean needsUploading() {
|
2015-06-30 15:15:02 +00:00
|
|
|
return isFileOrImage() && getFileParams().url == null;
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 15:15:02 +00:00
|
|
|
public class FileParams {
|
2014-10-23 19:27:41 +00:00
|
|
|
public URL url;
|
2014-10-14 16:16:03 +00:00
|
|
|
public long size = 0;
|
|
|
|
public int width = 0;
|
|
|
|
public int height = 0;
|
|
|
|
}
|
2015-05-29 09:17:26 +00:00
|
|
|
|
2015-07-09 12:23:17 +00:00
|
|
|
public void setAxolotlFingerprint(String fingerprint) {
|
|
|
|
this.axolotlFingerprint = fingerprint;
|
2015-06-29 12:25:23 +00:00
|
|
|
}
|
2015-07-10 01:00:40 +00:00
|
|
|
|
|
|
|
public String getAxolotlFingerprint() {
|
|
|
|
return axolotlFingerprint;
|
|
|
|
}
|
2015-07-15 13:45:12 +00:00
|
|
|
|
|
|
|
public boolean isTrusted() {
|
|
|
|
return conversation.getAccount().getAxolotlService().getFingerprintTrust(axolotlFingerprint)
|
|
|
|
== AxolotlService.SQLiteAxolotlStore.Trust.TRUSTED;
|
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|