af7a64491f
Fixes #791 Squash of commits: 534f25d7dae3ce6852243e28fdd0a69ac01e9463 808fdf5147f27a912a60bee39aa4bf1ddd4f43b4 1eaf8a8330710ad35ba7c368e04f909af623ae4c 31585242c2359efdcd0eeddb9745077f54dbc9eb 2e69bd0bd0286ed1e98a42f4c3421ba4d8cf524b e904fb5015bf3a1904ab941a1957edf3b1e7abd2 eebbadf3b3816bbf8fcccb763e419fed252d266f 7c5b87724ce494e5a6e8026557ed50a8fd9f23e8 b0eaaf446937794fe19cbdb4f8309c3ff83d4e42 8c652f9e8bb3512958d9ad8c6f1326505f2d98c8 ad0ea1ad948ff6f8fde7b0b10f5163dc8852032f f5d49897e0dba691ef53a0eddb9ed34d129ad442 a08fa64c505bd895b7c626cfad182380373be20b de67079113e08394a276048c31f6b21baa300829 9069f342173ba30c2b20c67529c7ff497a6a257d 0169fa79d161ee898c4b6762e207087682a952d8 8585a5bd75a5d56927fed8317729bd15fffe4dcc 0053528a078369e0b65dcf71bda251072a1299c7 e901a9c3554bd7cca193e92919b463991eadfea7 c5c78257434813c69ab9b7558bcc8f7cbe858433 e905af348d46d77bc46b5f7211527684acc02fab 13a0f9a10c7892b0f90f5fabd2f2615701b0fd66 2cfba1e24b0139839e4453b92be7e20634d150cf 58e074fb5bb44b05a8104250fccd7c024c808c1a 0d6cf98fc8eab212d798ac79b336f9b70a14f06d e23620f56b85bcab9f3b5d9ce1c01524cd9674dc d72cd2fcc8d54176c3ff53411a69b9bb4642eff3 195143dff8836623a37094a6b8fa6aa01ef31580 5f5f3caf3a1e480a99d27ee5c34ba516419c52e4 1dee3d5861c9f9c710da4cbda3688d94c622ca93 23949b8aa32c78b27bab49bb3c4f3ff588925ce1 9bf97f8ae522796e0dacb7f6fe7a7f90f86a93a1
529 lines
14 KiB
Java
529 lines
14 KiB
Java
package eu.siacs.conversations.entities;
|
|
|
|
import android.content.ContentValues;
|
|
import android.database.Cursor;
|
|
|
|
import java.net.MalformedURLException;
|
|
import java.net.URL;
|
|
import java.util.Arrays;
|
|
|
|
import eu.siacs.conversations.Config;
|
|
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
|
|
|
public class Message extends AbstractEntity {
|
|
|
|
public static final String TABLENAME = "messages";
|
|
|
|
public static final int STATUS_RECEIVED = 0;
|
|
public static final int STATUS_UNSEND = 1;
|
|
public static final int STATUS_SEND = 2;
|
|
public static final int STATUS_SEND_FAILED = 3;
|
|
public static final int STATUS_WAITING = 5;
|
|
public static final int STATUS_OFFERED = 6;
|
|
public static final int STATUS_SEND_RECEIVED = 7;
|
|
public static final int STATUS_SEND_DISPLAYED = 8;
|
|
|
|
public static final int ENCRYPTION_NONE = 0;
|
|
public static final int ENCRYPTION_PGP = 1;
|
|
public static final int ENCRYPTION_OTR = 2;
|
|
public static final int ENCRYPTION_DECRYPTED = 3;
|
|
public static final int ENCRYPTION_DECRYPTION_FAILED = 4;
|
|
|
|
public static final int TYPE_TEXT = 0;
|
|
public static final int TYPE_IMAGE = 1;
|
|
public static final int TYPE_FILE = 2;
|
|
public static final int TYPE_STATUS = 3;
|
|
public static final int TYPE_PRIVATE = 4;
|
|
|
|
public static String CONVERSATION = "conversationUuid";
|
|
public static String COUNTERPART = "counterpart";
|
|
public static String TRUE_COUNTERPART = "trueCounterpart";
|
|
public static String BODY = "body";
|
|
public static String TIME_SENT = "timeSent";
|
|
public static String ENCRYPTION = "encryption";
|
|
public static String STATUS = "status";
|
|
public static String TYPE = "type";
|
|
public static String REMOTE_MSG_ID = "remoteMsgId";
|
|
public static String SERVER_MSG_ID = "serverMsgId";
|
|
public static String RELATIVE_FILE_PATH = "relativeFilePath";
|
|
public boolean markable = false;
|
|
protected String conversationUuid;
|
|
protected Jid counterpart;
|
|
protected Jid trueCounterpart;
|
|
protected String body;
|
|
protected String encryptedBody;
|
|
protected long timeSent;
|
|
protected int encryption;
|
|
protected int status;
|
|
protected int type;
|
|
protected String relativeFilePath;
|
|
protected boolean read = true;
|
|
protected String remoteMsgId = null;
|
|
protected String serverMsgId = null;
|
|
protected Conversation conversation = null;
|
|
protected Downloadable downloadable = null;
|
|
private Message mNextMessage = null;
|
|
private Message mPreviousMessage = null;
|
|
|
|
private Message() {
|
|
|
|
}
|
|
|
|
public Message(Conversation conversation, String body, int encryption) {
|
|
this(conversation, body, encryption, STATUS_UNSEND);
|
|
}
|
|
|
|
public Message(Conversation conversation, String body, int encryption, int status) {
|
|
this(java.util.UUID.randomUUID().toString(),
|
|
conversation.getUuid(),
|
|
conversation.getJid() == null ? null : conversation.getJid().toBareJid(),
|
|
null,
|
|
body,
|
|
System.currentTimeMillis(),
|
|
encryption,
|
|
status,
|
|
TYPE_TEXT,
|
|
null,
|
|
null,
|
|
null);
|
|
this.conversation = conversation;
|
|
}
|
|
|
|
private Message(final String uuid, final String conversationUUid, final Jid counterpart,
|
|
final Jid trueCounterpart, final String body, final long timeSent,
|
|
final int encryption, final int status, final int type, final String remoteMsgId,
|
|
final String relativeFilePath, final String serverMsgId) {
|
|
this.uuid = uuid;
|
|
this.conversationUuid = conversationUUid;
|
|
this.counterpart = counterpart;
|
|
this.trueCounterpart = trueCounterpart;
|
|
this.body = body;
|
|
this.timeSent = timeSent;
|
|
this.encryption = encryption;
|
|
this.status = status;
|
|
this.type = type;
|
|
this.remoteMsgId = remoteMsgId;
|
|
this.relativeFilePath = relativeFilePath;
|
|
this.serverMsgId = serverMsgId;
|
|
}
|
|
|
|
public static Message fromCursor(Cursor cursor) {
|
|
Jid jid;
|
|
try {
|
|
String value = cursor.getString(cursor.getColumnIndex(COUNTERPART));
|
|
if (value != null) {
|
|
jid = Jid.fromString(value);
|
|
} else {
|
|
jid = null;
|
|
}
|
|
} catch (InvalidJidException e) {
|
|
jid = null;
|
|
}
|
|
Jid trueCounterpart;
|
|
try {
|
|
String value = cursor.getString(cursor.getColumnIndex(TRUE_COUNTERPART));
|
|
if (value != null) {
|
|
trueCounterpart = Jid.fromString(value);
|
|
} else {
|
|
trueCounterpart = null;
|
|
}
|
|
} catch (InvalidJidException e) {
|
|
trueCounterpart = null;
|
|
}
|
|
return new Message(cursor.getString(cursor.getColumnIndex(UUID)),
|
|
cursor.getString(cursor.getColumnIndex(CONVERSATION)),
|
|
jid,
|
|
trueCounterpart,
|
|
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)),
|
|
cursor.getString(cursor.getColumnIndex(REMOTE_MSG_ID)),
|
|
cursor.getString(cursor.getColumnIndex(RELATIVE_FILE_PATH)),
|
|
cursor.getString(cursor.getColumnIndex(SERVER_MSG_ID)));
|
|
}
|
|
|
|
public static Message createStatusMessage(Conversation conversation) {
|
|
Message message = new Message();
|
|
message.setType(Message.TYPE_STATUS);
|
|
message.setConversation(conversation);
|
|
return message;
|
|
}
|
|
|
|
@Override
|
|
public ContentValues getContentValues() {
|
|
ContentValues values = new ContentValues();
|
|
values.put(UUID, uuid);
|
|
values.put(CONVERSATION, conversationUuid);
|
|
if (counterpart == null) {
|
|
values.putNull(COUNTERPART);
|
|
} else {
|
|
values.put(COUNTERPART, counterpart.toString());
|
|
}
|
|
if (trueCounterpart == null) {
|
|
values.putNull(TRUE_COUNTERPART);
|
|
} else {
|
|
values.put(TRUE_COUNTERPART, trueCounterpart.toString());
|
|
}
|
|
values.put(BODY, body);
|
|
values.put(TIME_SENT, timeSent);
|
|
values.put(ENCRYPTION, encryption);
|
|
values.put(STATUS, status);
|
|
values.put(TYPE, type);
|
|
values.put(REMOTE_MSG_ID, remoteMsgId);
|
|
values.put(RELATIVE_FILE_PATH, relativeFilePath);
|
|
values.put(SERVER_MSG_ID,serverMsgId);
|
|
return values;
|
|
}
|
|
|
|
public String getConversationUuid() {
|
|
return conversationUuid;
|
|
}
|
|
|
|
public Conversation getConversation() {
|
|
return this.conversation;
|
|
}
|
|
|
|
public void setConversation(Conversation conv) {
|
|
this.conversation = conv;
|
|
}
|
|
|
|
public Jid getCounterpart() {
|
|
return counterpart;
|
|
}
|
|
|
|
public void setCounterpart(final Jid counterpart) {
|
|
this.counterpart = counterpart;
|
|
}
|
|
|
|
public Contact getContact() {
|
|
if (this.conversation.getMode() == Conversation.MODE_SINGLE) {
|
|
return this.conversation.getContact();
|
|
} else {
|
|
if (this.trueCounterpart == null) {
|
|
return null;
|
|
} else {
|
|
return this.conversation.getAccount().getRoster()
|
|
.getContactFromRoster(this.trueCounterpart);
|
|
}
|
|
}
|
|
}
|
|
|
|
public String getBody() {
|
|
return body;
|
|
}
|
|
|
|
public void setBody(String body) {
|
|
this.body = body;
|
|
}
|
|
|
|
public long getTimeSent() {
|
|
return timeSent;
|
|
}
|
|
|
|
public int getEncryption() {
|
|
return encryption;
|
|
}
|
|
|
|
public void setEncryption(int encryption) {
|
|
this.encryption = encryption;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(int status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public String getRelativeFilePath() {
|
|
return this.relativeFilePath;
|
|
}
|
|
|
|
public void setRelativeFilePath(String path) {
|
|
this.relativeFilePath = path;
|
|
}
|
|
|
|
public String getRemoteMsgId() {
|
|
return this.remoteMsgId;
|
|
}
|
|
|
|
public void setRemoteMsgId(String id) {
|
|
this.remoteMsgId = id;
|
|
}
|
|
|
|
public String getServerMsgId() {
|
|
return this.serverMsgId;
|
|
}
|
|
|
|
public void setServerMsgId(String id) {
|
|
this.serverMsgId = id;
|
|
}
|
|
|
|
public boolean isRead() {
|
|
return this.read;
|
|
}
|
|
|
|
public void markRead() {
|
|
this.read = true;
|
|
}
|
|
|
|
public void markUnread() {
|
|
this.read = false;
|
|
}
|
|
|
|
public void setTime(long time) {
|
|
this.timeSent = time;
|
|
}
|
|
|
|
public String getEncryptedBody() {
|
|
return this.encryptedBody;
|
|
}
|
|
|
|
public void setEncryptedBody(String body) {
|
|
this.encryptedBody = body;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public void setType(int type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public void setTrueCounterpart(Jid trueCounterpart) {
|
|
this.trueCounterpart = trueCounterpart;
|
|
}
|
|
|
|
public Downloadable getDownloadable() {
|
|
return this.downloadable;
|
|
}
|
|
|
|
public void setDownloadable(Downloadable downloadable) {
|
|
this.downloadable = downloadable;
|
|
}
|
|
|
|
public boolean equals(Message message) {
|
|
if (this.serverMsgId != null && message.getServerMsgId() != null) {
|
|
return this.serverMsgId.equals(message.getServerMsgId());
|
|
} else {
|
|
return this.body != null
|
|
&& this.counterpart != null
|
|
&& ((this.remoteMsgId != null && this.remoteMsgId.equals(message.getRemoteMsgId()))
|
|
|| this.uuid.equals(message.getRemoteMsgId())) && this.body.equals(message.getBody())
|
|
&& this.counterpart.equals(message.getCounterpart());
|
|
}
|
|
}
|
|
|
|
public Message next() {
|
|
synchronized (this.conversation.messages) {
|
|
if (this.mNextMessage == null) {
|
|
int index = this.conversation.messages.indexOf(this);
|
|
if (index < 0 || index >= this.conversation.messages.size() - 1) {
|
|
this.mNextMessage = null;
|
|
} else {
|
|
this.mNextMessage = this.conversation.messages.get(index + 1);
|
|
}
|
|
}
|
|
return this.mNextMessage;
|
|
}
|
|
}
|
|
|
|
public Message prev() {
|
|
synchronized (this.conversation.messages) {
|
|
if (this.mPreviousMessage == null) {
|
|
int index = this.conversation.messages.indexOf(this);
|
|
if (index <= 0 || index > this.conversation.messages.size()) {
|
|
this.mPreviousMessage = null;
|
|
} else {
|
|
this.mPreviousMessage = this.conversation.messages.get(index - 1);
|
|
}
|
|
}
|
|
return this.mPreviousMessage;
|
|
}
|
|
}
|
|
|
|
public boolean mergeable(final Message message) {
|
|
return message != null && (message.getType() == Message.TYPE_TEXT && this.getDownloadable() == null && message.getDownloadable() == null && message.getEncryption() != Message.ENCRYPTION_PGP && this.getType() == message.getType() && 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) && !message.bodyContainsDownloadable() && !this.bodyContainsDownloadable());
|
|
}
|
|
|
|
public String getMergedBody() {
|
|
Message next = this.next();
|
|
if (this.mergeable(next)) {
|
|
return body.trim() + '\n' + next.getMergedBody();
|
|
}
|
|
return body.trim();
|
|
}
|
|
|
|
public int getMergedStatus() {
|
|
return getStatus();
|
|
}
|
|
|
|
public long getMergedTimeSent() {
|
|
Message next = this.next();
|
|
if (this.mergeable(next)) {
|
|
return next.getMergedTimeSent();
|
|
} else {
|
|
return getTimeSent();
|
|
}
|
|
}
|
|
|
|
public boolean wasMergedIntoPrevious() {
|
|
Message prev = this.prev();
|
|
return prev != null && prev.mergeable(this);
|
|
}
|
|
|
|
public boolean trusted() {
|
|
Contact contact = this.getContact();
|
|
return (status > STATUS_RECEIVED || (contact != null && contact.trusted()));
|
|
}
|
|
|
|
public boolean bodyContainsDownloadable() {
|
|
try {
|
|
URL url = new URL(this.getBody());
|
|
if (!url.getProtocol().equalsIgnoreCase("http")
|
|
&& !url.getProtocol().equalsIgnoreCase("https")) {
|
|
return false;
|
|
}
|
|
if (url.getPath() == null) {
|
|
return false;
|
|
}
|
|
String[] pathParts = url.getPath().split("/");
|
|
String filename;
|
|
if (pathParts.length > 0) {
|
|
filename = pathParts[pathParts.length - 1];
|
|
} else {
|
|
return false;
|
|
}
|
|
String[] extensionParts = filename.split("\\.");
|
|
if (extensionParts.length == 2
|
|
&& Arrays.asList(Downloadable.VALID_IMAGE_EXTENSIONS).contains(
|
|
extensionParts[extensionParts.length - 1])) {
|
|
return true;
|
|
} else if (extensionParts.length == 3
|
|
&& Arrays
|
|
.asList(Downloadable.VALID_CRYPTO_EXTENSIONS)
|
|
.contains(extensionParts[extensionParts.length - 1])
|
|
&& Arrays.asList(Downloadable.VALID_IMAGE_EXTENSIONS).contains(
|
|
extensionParts[extensionParts.length - 2])) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
} catch (MalformedURLException e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public ImageParams getImageParams() {
|
|
ImageParams params = getLegacyImageParams();
|
|
if (params != null) {
|
|
return params;
|
|
}
|
|
params = new ImageParams();
|
|
if (this.downloadable != null) {
|
|
params.size = this.downloadable.getFileSize();
|
|
}
|
|
if (body == null) {
|
|
return params;
|
|
}
|
|
String parts[] = body.split("\\|");
|
|
if (parts.length == 1) {
|
|
try {
|
|
params.size = Long.parseLong(parts[0]);
|
|
} catch (NumberFormatException e) {
|
|
params.origin = parts[0];
|
|
try {
|
|
params.url = new URL(parts[0]);
|
|
} catch (MalformedURLException e1) {
|
|
params.url = null;
|
|
}
|
|
}
|
|
} else if (parts.length == 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;
|
|
}
|
|
} else if (parts.length == 4) {
|
|
params.origin = parts[0];
|
|
try {
|
|
params.url = new URL(parts[0]);
|
|
} catch (MalformedURLException e1) {
|
|
params.url = null;
|
|
}
|
|
try {
|
|
params.size = Long.parseLong(parts[1]);
|
|
} catch (NumberFormatException e) {
|
|
params.size = 0;
|
|
}
|
|
try {
|
|
params.width = Integer.parseInt(parts[2]);
|
|
} catch (NumberFormatException e) {
|
|
params.width = 0;
|
|
}
|
|
try {
|
|
params.height = Integer.parseInt(parts[3]);
|
|
} catch (NumberFormatException e) {
|
|
params.height = 0;
|
|
}
|
|
}
|
|
return params;
|
|
}
|
|
|
|
public ImageParams getLegacyImageParams() {
|
|
ImageParams params = new ImageParams();
|
|
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;
|
|
}
|
|
}
|
|
|
|
public void untie() {
|
|
this.mNextMessage = null;
|
|
this.mPreviousMessage = null;
|
|
}
|
|
|
|
public class ImageParams {
|
|
public URL url;
|
|
public long size = 0;
|
|
public int width = 0;
|
|
public int height = 0;
|
|
public String origin;
|
|
}
|
|
}
|