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;
|
2019-01-25 09:07:02 +00:00
|
|
|
import android.graphics.Color;
|
2016-10-19 21:53:13 +00:00
|
|
|
import android.text.SpannableStringBuilder;
|
2018-12-01 14:52:44 +00:00
|
|
|
import android.util.Log;
|
|
|
|
|
2020-06-13 20:53:24 +00:00
|
|
|
import com.google.common.base.Strings;
|
2020-06-14 17:09:55 +00:00
|
|
|
import com.google.common.collect.ImmutableSet;
|
2020-06-13 20:53:24 +00:00
|
|
|
|
2018-12-01 14:52:44 +00:00
|
|
|
import org.json.JSONException;
|
2014-11-09 16:46:00 +00:00
|
|
|
|
2018-04-12 07:50:33 +00:00
|
|
|
import java.lang.ref.WeakReference;
|
2014-10-13 23:06:45 +00:00
|
|
|
import java.net.MalformedURLException;
|
|
|
|
import java.net.URL;
|
2018-12-01 14:52:44 +00:00
|
|
|
import java.util.ArrayList;
|
2017-11-19 00:53:04 +00:00
|
|
|
import java.util.HashSet;
|
2017-11-23 17:19:05 +00:00
|
|
|
import java.util.Iterator;
|
2017-11-19 00:53:04 +00:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.Set;
|
2014-10-13 23:06:45 +00:00
|
|
|
|
2014-08-31 16:21:46 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2016-11-14 21:27:41 +00:00
|
|
|
import eu.siacs.conversations.crypto.axolotl.FingerprintStatus;
|
2019-01-25 09:07:02 +00:00
|
|
|
import eu.siacs.conversations.services.AvatarService;
|
2020-06-13 20:53:24 +00:00
|
|
|
import eu.siacs.conversations.ui.util.PresenceSelector;
|
2016-07-28 20:58:37 +00:00
|
|
|
import eu.siacs.conversations.utils.CryptoHelper;
|
2017-09-29 20:56:17 +00:00
|
|
|
import eu.siacs.conversations.utils.Emoticons;
|
2015-03-07 13:15:38 +00:00
|
|
|
import eu.siacs.conversations.utils.GeoHelper;
|
2018-05-02 10:14:24 +00:00
|
|
|
import eu.siacs.conversations.utils.MessageUtils;
|
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;
|
2020-05-15 15:06:16 +00:00
|
|
|
import eu.siacs.conversations.xmpp.Jid;
|
2014-11-05 20:55:47 +00:00
|
|
|
|
2019-01-25 09:07:02 +00:00
|
|
|
public class Message extends AbstractEntity implements AvatarService.Avatarable {
|
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
|
|
|
|
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;
|
2018-04-04 16:21:22 +00:00
|
|
|
public static final int ENCRYPTION_AXOLOTL_NOT_FOR_THIS_DEVICE = 6;
|
2018-12-02 13:41:25 +00:00
|
|
|
public static final int ENCRYPTION_AXOLOTL_FAILED = 7;
|
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;
|
2019-04-27 09:46:43 +00:00
|
|
|
public static final int TYPE_PRIVATE_FILE = 5;
|
2020-04-12 15:12:59 +00:00
|
|
|
public static final int TYPE_RTP_SESSION = 6;
|
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";
|
2019-09-12 08:12:47 +00:00
|
|
|
public static final String BODY_LANGUAGE = "bodyLanguage";
|
2015-01-11 15:22:29 +00:00
|
|
|
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";
|
2015-07-29 14:41:58 +00:00
|
|
|
public static final String CARBON = "carbon";
|
2016-03-04 19:09:21 +00:00
|
|
|
public static final String OOB = "oob";
|
2016-02-15 22:15:04 +00:00
|
|
|
public static final String EDITED = "edited";
|
2015-01-11 15:22:29 +00:00
|
|
|
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-10-14 19:18:34 +00:00
|
|
|
public static final String READ = "read";
|
2016-10-26 10:26:04 +00:00
|
|
|
public static final String ERROR_MESSAGE = "errorMsg";
|
2017-11-19 00:53:04 +00:00
|
|
|
public static final String READ_BY_MARKERS = "readByMarkers";
|
2017-11-25 19:55:43 +00:00
|
|
|
public static final String MARKABLE = "markable";
|
2019-01-10 13:52:27 +00:00
|
|
|
public static final String DELETED = "deleted";
|
2015-01-25 15:29:26 +00:00
|
|
|
public static final String ME_COMMAND = "/me ";
|
2015-01-11 15:22:29 +00:00
|
|
|
|
2018-10-07 12:59:08 +00:00
|
|
|
public static final String ERROR_MESSAGE_CANCELLED = "eu.siacs.conversations.cancelled";
|
|
|
|
|
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;
|
2019-01-10 13:52:27 +00:00
|
|
|
protected boolean deleted = false;
|
2015-07-29 14:41:58 +00:00
|
|
|
protected boolean carbon = false;
|
2016-03-04 19:09:21 +00:00
|
|
|
protected boolean oob = false;
|
2019-12-04 18:15:30 +00:00
|
|
|
protected List<Edit> edits = new ArrayList<>();
|
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;
|
2019-09-12 08:12:47 +00:00
|
|
|
private String bodyLanguage = null;
|
2014-12-09 20:41:49 +00:00
|
|
|
protected String serverMsgId = null;
|
2018-04-26 11:22:31 +00:00
|
|
|
private final Conversational conversation;
|
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;
|
2016-10-26 10:26:04 +00:00
|
|
|
private String errorMessage = null;
|
2017-11-25 19:55:43 +00:00
|
|
|
private Set<ReadByMarker> readByMarkers = new HashSet<>();
|
2014-10-20 15:01:37 +00:00
|
|
|
|
2017-08-03 11:24:41 +00:00
|
|
|
private Boolean isGeoUri = null;
|
|
|
|
private Boolean isEmojisOnly = null;
|
|
|
|
private Boolean treatAsDownloadable = null;
|
|
|
|
private FileParams fileParams = null;
|
2017-11-19 00:53:04 +00:00
|
|
|
private List<MucOptions.User> counterparts;
|
2018-04-12 07:50:33 +00:00
|
|
|
private WeakReference<MucOptions.User> user;
|
2017-08-03 11:24:41 +00:00
|
|
|
|
2018-04-28 14:32:23 +00:00
|
|
|
protected Message(Conversational conversation) {
|
2017-04-26 10:43:52 +00:00
|
|
|
this.conversation = conversation;
|
2014-06-04 19:40:17 +00:00
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2018-04-26 11:22:31 +00:00
|
|
|
public Message(Conversational 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
|
|
|
}
|
2015-07-29 14:41:58 +00:00
|
|
|
|
2018-04-26 11:22:31 +00:00
|
|
|
public Message(Conversational conversation, String body, int encryption, int status) {
|
2017-04-26 10:43:52 +00:00
|
|
|
this(conversation, java.util.UUID.randomUUID().toString(),
|
2014-12-01 09:58:06 +00:00
|
|
|
conversation.getUuid(),
|
2018-03-05 17:30:40 +00:00
|
|
|
conversation.getJid() == null ? null : conversation.getJid().asBareJid(),
|
2014-12-01 09:58:06 +00:00
|
|
|
null,
|
|
|
|
body,
|
|
|
|
System.currentTimeMillis(),
|
|
|
|
encryption,
|
|
|
|
status,
|
|
|
|
TYPE_TEXT,
|
2015-07-29 14:41:58 +00:00
|
|
|
false,
|
2014-12-01 09:58:06 +00:00
|
|
|
null,
|
2014-12-09 20:41:49 +00:00
|
|
|
null,
|
2015-07-09 12:23:17 +00:00
|
|
|
null,
|
2015-10-14 19:18:34 +00:00
|
|
|
null,
|
2016-02-15 22:15:04 +00:00
|
|
|
true,
|
2016-03-04 19:09:21 +00:00
|
|
|
null,
|
2016-10-26 10:26:04 +00:00
|
|
|
false,
|
2017-11-19 00:53:04 +00:00
|
|
|
null,
|
2017-11-25 19:55:43 +00:00
|
|
|
null,
|
2019-01-10 13:52:27 +00:00
|
|
|
false,
|
2019-09-12 08:12:47 +00:00
|
|
|
false,
|
|
|
|
null);
|
2014-02-01 14:07:20 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2020-04-12 15:12:59 +00:00
|
|
|
public Message(Conversation conversation, int status, int type, final String remoteMsgId) {
|
|
|
|
this(conversation, java.util.UUID.randomUUID().toString(),
|
|
|
|
conversation.getUuid(),
|
|
|
|
conversation.getJid() == null ? null : conversation.getJid().asBareJid(),
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
System.currentTimeMillis(),
|
|
|
|
Message.ENCRYPTION_NONE,
|
|
|
|
status,
|
|
|
|
type,
|
|
|
|
false,
|
|
|
|
remoteMsgId,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
true,
|
|
|
|
null,
|
|
|
|
false,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
null);
|
|
|
|
}
|
|
|
|
|
2018-04-26 11:22:31 +00:00
|
|
|
protected Message(final Conversational conversation, 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 boolean carbon,
|
|
|
|
final String remoteMsgId, final String relativeFilePath,
|
|
|
|
final String serverMsgId, final String fingerprint, final boolean read,
|
|
|
|
final String edited, final boolean oob, final String errorMessage, final Set<ReadByMarker> readByMarkers,
|
2019-09-12 08:12:47 +00:00
|
|
|
final boolean markable, final boolean deleted, final String bodyLanguage) {
|
2017-04-26 10:43:52 +00:00
|
|
|
this.conversation = conversation;
|
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;
|
2016-09-18 20:15:02 +00:00
|
|
|
this.body = body == null ? "" : body;
|
2014-01-25 18:33:12 +00:00
|
|
|
this.timeSent = timeSent;
|
|
|
|
this.encryption = encryption;
|
|
|
|
this.status = status;
|
2014-04-06 13:34:08 +00:00
|
|
|
this.type = type;
|
2015-07-29 14:41:58 +00:00
|
|
|
this.carbon = carbon;
|
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;
|
2015-10-14 19:18:34 +00:00
|
|
|
this.read = read;
|
2019-12-04 18:15:30 +00:00
|
|
|
this.edits = Edit.fromJson(edited);
|
2016-03-04 19:09:21 +00:00
|
|
|
this.oob = oob;
|
2016-10-26 10:26:04 +00:00
|
|
|
this.errorMessage = errorMessage;
|
2018-12-01 14:52:44 +00:00
|
|
|
this.readByMarkers = readByMarkers == null ? new HashSet<>() : readByMarkers;
|
2017-11-25 19:55:43 +00:00
|
|
|
this.markable = markable;
|
2019-01-10 13:52:27 +00:00
|
|
|
this.deleted = deleted;
|
2019-09-12 08:12:47 +00:00
|
|
|
this.bodyLanguage = bodyLanguage;
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
|
|
|
|
2017-04-26 10:43:52 +00:00
|
|
|
public static Message fromCursor(Cursor cursor, Conversation conversation) {
|
|
|
|
return new Message(conversation,
|
|
|
|
cursor.getString(cursor.getColumnIndex(UUID)),
|
2014-11-09 16:46:00 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(CONVERSATION)),
|
2019-04-30 08:45:25 +00:00
|
|
|
fromString(cursor.getString(cursor.getColumnIndex(COUNTERPART))),
|
|
|
|
fromString(cursor.getString(cursor.getColumnIndex(TRUE_COUNTERPART))),
|
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)),
|
2016-02-15 22:15:04 +00:00
|
|
|
cursor.getInt(cursor.getColumnIndex(CARBON)) > 0,
|
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)),
|
2015-10-14 19:18:34 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(FINGERPRINT)),
|
2016-02-15 22:15:04 +00:00
|
|
|
cursor.getInt(cursor.getColumnIndex(READ)) > 0,
|
2016-03-04 19:09:21 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(EDITED)),
|
2016-10-26 10:26:04 +00:00
|
|
|
cursor.getInt(cursor.getColumnIndex(OOB)) > 0,
|
2017-11-19 00:53:04 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(ERROR_MESSAGE)),
|
2017-11-25 19:55:43 +00:00
|
|
|
ReadByMarker.fromJsonString(cursor.getString(cursor.getColumnIndex(READ_BY_MARKERS))),
|
2019-01-10 13:52:27 +00:00
|
|
|
cursor.getInt(cursor.getColumnIndex(MARKABLE)) > 0,
|
2019-09-12 08:12:47 +00:00
|
|
|
cursor.getInt(cursor.getColumnIndex(DELETED)) > 0,
|
|
|
|
cursor.getString(cursor.getColumnIndex(BODY_LANGUAGE))
|
|
|
|
);
|
2014-11-09 16:46:00 +00:00
|
|
|
}
|
|
|
|
|
2019-04-30 08:45:25 +00:00
|
|
|
private static Jid fromString(String value) {
|
|
|
|
try {
|
|
|
|
if (value != null) {
|
|
|
|
return Jid.of(value);
|
|
|
|
}
|
|
|
|
} catch (IllegalArgumentException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-02-21 10:06:52 +00:00
|
|
|
public static Message createStatusMessage(Conversation conversation, String body) {
|
2017-04-26 10:43:52 +00:00
|
|
|
final Message message = new Message(conversation);
|
2014-11-09 16:46:00 +00:00
|
|
|
message.setType(Message.TYPE_STATUS);
|
2017-08-21 14:19:35 +00:00
|
|
|
message.setStatus(Message.STATUS_RECEIVED);
|
2017-08-03 11:24:41 +00:00
|
|
|
message.body = body;
|
2014-11-09 16:46:00 +00:00
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2016-02-04 13:39:16 +00:00
|
|
|
public static Message createLoadMoreMessage(Conversation conversation) {
|
2017-04-26 10:43:52 +00:00
|
|
|
final Message message = new Message(conversation);
|
2016-02-04 13:39:16 +00:00
|
|
|
message.setType(Message.TYPE_STATUS);
|
2017-08-03 11:24:41 +00:00
|
|
|
message.body = "LOAD_MORE";
|
2016-02-04 13:39:16 +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 {
|
2018-03-05 17:30:40 +00:00
|
|
|
values.put(COUNTERPART, counterpart.toString());
|
2014-11-09 16:46:00 +00:00
|
|
|
}
|
2014-11-18 13:49:49 +00:00
|
|
|
if (trueCounterpart == null) {
|
2014-11-17 19:02:46 +00:00
|
|
|
values.putNull(TRUE_COUNTERPART);
|
|
|
|
} else {
|
2018-03-05 17:30:40 +00:00
|
|
|
values.put(TRUE_COUNTERPART, trueCounterpart.toString());
|
2014-11-17 19:02:46 +00:00
|
|
|
}
|
2018-04-26 11:22:31 +00:00
|
|
|
values.put(BODY, body.length() > Config.MAX_STORAGE_MESSAGE_CHARS ? body.substring(0, Config.MAX_STORAGE_MESSAGE_CHARS) : body);
|
2014-01-25 18:33:12 +00:00
|
|
|
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);
|
2015-07-29 14:41:58 +00:00
|
|
|
values.put(CARBON, carbon ? 1 : 0);
|
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);
|
2018-04-26 11:22:31 +00:00
|
|
|
values.put(READ, read ? 1 : 0);
|
2018-12-01 14:52:44 +00:00
|
|
|
try {
|
2019-12-04 18:15:30 +00:00
|
|
|
values.put(EDITED, Edit.toJson(edits));
|
2018-12-01 14:52:44 +00:00
|
|
|
} catch (JSONException e) {
|
|
|
|
Log.e(Config.LOGTAG,"error persisting json for edits",e);
|
|
|
|
}
|
2016-03-04 19:09:21 +00:00
|
|
|
values.put(OOB, oob ? 1 : 0);
|
2018-04-26 11:22:31 +00:00
|
|
|
values.put(ERROR_MESSAGE, errorMessage);
|
|
|
|
values.put(READ_BY_MARKERS, ReadByMarker.toJson(readByMarkers).toString());
|
2017-11-25 19:55:43 +00:00
|
|
|
values.put(MARKABLE, markable ? 1 : 0);
|
2019-01-10 13:52:27 +00:00
|
|
|
values.put(DELETED, deleted ? 1 : 0);
|
2019-09-12 08:12:47 +00:00
|
|
|
values.put(BODY_LANGUAGE, bodyLanguage);
|
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
|
|
|
|
2018-04-26 11:22:31 +00:00
|
|
|
public Conversational getConversation() {
|
2014-01-27 19:40:42 +00:00
|
|
|
return this.conversation;
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
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()
|
2018-11-03 15:32:08 +00:00
|
|
|
.getContactFromContactList(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
|
|
|
|
2017-08-03 11:24:41 +00:00
|
|
|
public synchronized void setBody(String body) {
|
2016-09-18 20:15:02 +00:00
|
|
|
if (body == null) {
|
|
|
|
throw new Error("You should not set the message body to null");
|
|
|
|
}
|
2014-11-09 16:46:00 +00:00
|
|
|
this.body = body;
|
2017-08-03 11:24:41 +00:00
|
|
|
this.isGeoUri = null;
|
|
|
|
this.isEmojisOnly = null;
|
|
|
|
this.treatAsDownloadable = null;
|
|
|
|
this.fileParams = null;
|
2014-11-09 16:46:00 +00:00
|
|
|
}
|
|
|
|
|
2018-04-12 07:50:33 +00:00
|
|
|
public void setMucUser(MucOptions.User user) {
|
|
|
|
this.user = new WeakReference<>(user);
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean sameMucUser(Message otherMessage) {
|
|
|
|
final MucOptions.User thisUser = this.user == null ? null : this.user.get();
|
|
|
|
final MucOptions.User otherUser = otherMessage.user == null ? null : otherMessage.user.get();
|
|
|
|
return thisUser != null && thisUser == otherUser;
|
|
|
|
}
|
|
|
|
|
2016-10-26 10:26:04 +00:00
|
|
|
public String getErrorMessage() {
|
|
|
|
return errorMessage;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean setErrorMessage(String message) {
|
|
|
|
boolean changed = (message != null && !message.equals(errorMessage))
|
|
|
|
|| (message == null && errorMessage != null);
|
|
|
|
this.errorMessage = message;
|
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2019-01-10 13:52:27 +00:00
|
|
|
public boolean isDeleted() {
|
|
|
|
return this.deleted;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDeleted(boolean deleted) {
|
|
|
|
this.deleted = deleted;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2015-07-29 14:41:58 +00:00
|
|
|
public boolean isCarbon() {
|
|
|
|
return carbon;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCarbon(boolean carbon) {
|
|
|
|
this.carbon = carbon;
|
|
|
|
}
|
|
|
|
|
2018-12-01 14:52:44 +00:00
|
|
|
public void putEdited(String edited, String serverMsgId) {
|
2019-12-04 18:15:30 +00:00
|
|
|
final Edit edit = new Edit(edited, serverMsgId);
|
|
|
|
if (this.edits.size() < 128 && !this.edits.contains(edit)) {
|
|
|
|
this.edits.add(edit);
|
|
|
|
}
|
2016-02-15 22:15:04 +00:00
|
|
|
}
|
|
|
|
|
2019-12-04 18:15:30 +00:00
|
|
|
boolean remoteMsgIdMatchInEdit(String id) {
|
|
|
|
for(Edit edit : this.edits) {
|
2019-09-13 14:38:15 +00:00
|
|
|
if (id.equals(edit.getEditedId())) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-09-12 08:12:47 +00:00
|
|
|
public String getBodyLanguage() {
|
|
|
|
return this.bodyLanguage;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBodyLanguage(String language) {
|
|
|
|
this.bodyLanguage = language;
|
|
|
|
}
|
|
|
|
|
2016-02-15 22:15:04 +00:00
|
|
|
public boolean edited() {
|
2018-12-01 14:52:44 +00:00
|
|
|
return this.edits.size() > 0;
|
2016-02-15 22:15:04 +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
|
|
|
|
2016-02-15 22:15:04 +00:00
|
|
|
public Jid getTrueCounterpart() {
|
|
|
|
return this.trueCounterpart;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-08-03 11:24:41 +00:00
|
|
|
public synchronized void setTransferable(Transferable transferable) {
|
|
|
|
this.fileParams = null;
|
2015-07-10 13:11:03 +00:00
|
|
|
this.transferable = transferable;
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2017-11-19 00:53:04 +00:00
|
|
|
public boolean addReadByMarker(ReadByMarker readByMarker) {
|
|
|
|
if (readByMarker.getRealJid() != null) {
|
2018-03-05 17:30:40 +00:00
|
|
|
if (readByMarker.getRealJid().asBareJid().equals(trueCounterpart)) {
|
2017-11-19 00:53:04 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if (readByMarker.getFullJid() != null) {
|
|
|
|
if (readByMarker.getFullJid().equals(counterpart)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2017-11-23 17:19:05 +00:00
|
|
|
if (this.readByMarkers.add(readByMarker)) {
|
|
|
|
if (readByMarker.getRealJid() != null && readByMarker.getFullJid() != null) {
|
|
|
|
Iterator<ReadByMarker> iterator = this.readByMarkers.iterator();
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
ReadByMarker marker = iterator.next();
|
|
|
|
if (marker.getRealJid() == null && readByMarker.getFullJid().equals(marker.getFullJid())) {
|
|
|
|
iterator.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2017-11-19 00:53:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Set<ReadByMarker> getReadByMarkers() {
|
2020-06-14 17:09:55 +00:00
|
|
|
return ImmutableSet.copyOf(this.readByMarkers);
|
2017-11-19 00:53:04 +00:00
|
|
|
}
|
|
|
|
|
2019-01-21 10:55:52 +00:00
|
|
|
boolean similar(Message message) {
|
2019-04-27 09:46:43 +00:00
|
|
|
if (!isPrivateMessage() && this.serverMsgId != null && message.getServerMsgId() != null) {
|
2019-12-04 18:15:30 +00:00
|
|
|
return this.serverMsgId.equals(message.getServerMsgId()) || Edit.wasPreviouslyEditedServerMsgId(edits, message.getServerMsgId());
|
|
|
|
} else if (Edit.wasPreviouslyEditedServerMsgId(edits, message.getServerMsgId())) {
|
2018-12-01 14:52:44 +00:00
|
|
|
return true;
|
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;
|
|
|
|
}
|
2016-12-26 14:13:38 +00:00
|
|
|
final boolean matchingCounterpart = this.counterpart.equals(message.getCounterpart());
|
2015-07-17 22:01:34 +00:00
|
|
|
if (message.getRemoteMsgId() != null) {
|
2016-12-26 14:13:38 +00:00
|
|
|
final boolean hasUuid = CryptoHelper.UUID_PATTERN.matcher(message.getRemoteMsgId()).matches();
|
2019-12-04 18:15:30 +00:00
|
|
|
if (hasUuid && matchingCounterpart && Edit.wasPreviouslyEditedRemoteMsgId(edits, message.getRemoteMsgId())) {
|
2016-12-26 14:13:38 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-07-17 22:01:34 +00:00
|
|
|
return (message.getRemoteMsgId().equals(this.remoteMsgId) || message.getRemoteMsgId().equals(this.uuid))
|
2016-12-26 14:13:38 +00:00
|
|
|
&& matchingCounterpart
|
2018-04-26 11:22:31 +00:00
|
|
|
&& (body.equals(otherBody) || (message.getEncryption() == Message.ENCRYPTION_PGP && hasUuid));
|
2015-07-17 22:01:34 +00:00
|
|
|
} else {
|
|
|
|
return this.remoteMsgId == null
|
2016-12-26 14:13:38 +00:00
|
|
|
&& matchingCounterpart
|
2015-07-17 22:01:34 +00:00
|
|
|
&& 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() {
|
2018-04-26 11:22:31 +00:00
|
|
|
if (this.conversation instanceof Conversation) {
|
|
|
|
final Conversation conversation = (Conversation) this.conversation;
|
|
|
|
synchronized (conversation.messages) {
|
|
|
|
if (this.mNextMessage == null) {
|
|
|
|
int index = conversation.messages.indexOf(this);
|
|
|
|
if (index < 0 || index >= conversation.messages.size() - 1) {
|
|
|
|
this.mNextMessage = null;
|
|
|
|
} else {
|
|
|
|
this.mNextMessage = conversation.messages.get(index + 1);
|
|
|
|
}
|
2014-10-20 15:01:37 +00:00
|
|
|
}
|
2018-04-26 11:22:31 +00:00
|
|
|
return this.mNextMessage;
|
2014-10-20 15:01:37 +00:00
|
|
|
}
|
2018-04-26 11:22:31 +00:00
|
|
|
} else {
|
|
|
|
throw new AssertionError("Calling next should be disabled for stubs");
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Message prev() {
|
2018-04-26 11:22:31 +00:00
|
|
|
if (this.conversation instanceof Conversation) {
|
|
|
|
final Conversation conversation = (Conversation) this.conversation;
|
|
|
|
synchronized (conversation.messages) {
|
|
|
|
if (this.mPreviousMessage == null) {
|
|
|
|
int index = conversation.messages.indexOf(this);
|
|
|
|
if (index <= 0 || index > conversation.messages.size()) {
|
|
|
|
this.mPreviousMessage = null;
|
|
|
|
} else {
|
|
|
|
this.mPreviousMessage = conversation.messages.get(index - 1);
|
|
|
|
}
|
2014-10-20 15:01:37 +00:00
|
|
|
}
|
|
|
|
}
|
2014-12-13 14:32:11 +00:00
|
|
|
return this.mPreviousMessage;
|
2018-04-26 11:22:31 +00:00
|
|
|
} else {
|
|
|
|
throw new AssertionError("Calling prev should be disabled for stubs");
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-17 15:51:36 +00:00
|
|
|
public boolean isLastCorrectableMessage() {
|
|
|
|
Message next = next();
|
2018-04-26 11:22:31 +00:00
|
|
|
while (next != null) {
|
2020-07-12 07:45:27 +00:00
|
|
|
if (next.isEditable()) {
|
2016-02-17 15:51:36 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
next = next.next();
|
|
|
|
}
|
2020-07-12 07:45:27 +00:00
|
|
|
return isEditable();
|
2016-02-17 15:51:36 +00:00
|
|
|
}
|
|
|
|
|
2020-07-12 07:45:27 +00:00
|
|
|
public boolean isEditable() {
|
2016-02-17 15:51:36 +00:00
|
|
|
return getStatus() != STATUS_RECEIVED && !isCarbon();
|
|
|
|
}
|
|
|
|
|
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 &&
|
2016-02-23 14:30:41 +00:00
|
|
|
message.getEncryption() != Message.ENCRYPTION_DECRYPTION_FAILED &&
|
2015-05-10 01:12:44 +00:00
|
|
|
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()) &&
|
2016-02-15 22:15:04 +00:00
|
|
|
this.edited() == message.edited() &&
|
2015-05-10 01:12:44 +00:00
|
|
|
(message.getTimeSent() - this.getTimeSent()) <= (Config.MESSAGE_MERGE_WINDOW * 1000) &&
|
2016-05-29 08:32:07 +00:00
|
|
|
this.getBody().length() + message.getBody().length() <= Config.MAX_DISPLAY_MESSAGE_CHARS &&
|
2018-04-26 11:22:31 +00:00
|
|
|
!message.isGeoUri() &&
|
2017-08-03 11:24:41 +00:00
|
|
|
!this.isGeoUri() &&
|
2020-03-02 10:10:38 +00:00
|
|
|
!message.isOOb() &&
|
|
|
|
!this.isOOb() &&
|
2017-04-05 20:32:02 +00:00
|
|
|
!message.treatAsDownloadable() &&
|
|
|
|
!this.treatAsDownloadable() &&
|
2020-05-24 08:52:34 +00:00
|
|
|
!message.hasMeCommand() &&
|
|
|
|
!this.hasMeCommand() &&
|
2017-07-30 20:04:58 +00:00
|
|
|
!this.bodyIsOnlyEmojis() &&
|
|
|
|
!message.bodyIsOnlyEmojis() &&
|
2017-07-04 09:01:20 +00:00
|
|
|
((this.axolotlFingerprint == null && message.axolotlFingerprint == null) || this.axolotlFingerprint.equals(message.getFingerprint())) &&
|
2018-04-26 11:22:31 +00:00
|
|
|
UIHelper.sameDay(message.getTimeSent(), this.getTimeSent()) &&
|
2018-02-25 13:28:14 +00:00
|
|
|
this.getReadByMarkers().equals(message.getReadByMarkers()) &&
|
2018-03-07 19:21:13 +00:00
|
|
|
!this.conversation.getJid().asBareJid().equals(Config.BUG_REPORTS)
|
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)
|
2017-04-12 20:24:29 +00:00
|
|
|
|| (a == Message.STATUS_SEND_RECEIVED && b == Message.STATUS_WAITING)
|
2015-05-10 01:12:44 +00:00
|
|
|
|| (a == Message.STATUS_SEND && b == Message.STATUS_UNSEND)
|
2017-04-12 20:24:29 +00:00
|
|
|
|| (a == Message.STATUS_SEND && b == Message.STATUS_WAITING)
|
2015-03-01 11:05:54 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-11-19 00:53:04 +00:00
|
|
|
public void setCounterparts(List<MucOptions.User> counterparts) {
|
|
|
|
this.counterparts = counterparts;
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<MucOptions.User> getCounterparts() {
|
|
|
|
return this.counterparts;
|
|
|
|
}
|
|
|
|
|
2019-01-25 09:07:02 +00:00
|
|
|
@Override
|
|
|
|
public int getAvatarBackgroundColor() {
|
|
|
|
if (type == Message.TYPE_STATUS && getCounterparts() != null && getCounterparts().size() > 1) {
|
|
|
|
return Color.TRANSPARENT;
|
|
|
|
} else {
|
|
|
|
return UIHelper.getColorForName(UIHelper.getMessageDisplayName(this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-26 17:58:54 +00:00
|
|
|
public boolean isOOb() {
|
|
|
|
return oob;
|
|
|
|
}
|
|
|
|
|
2018-04-26 11:22:31 +00:00
|
|
|
public static class MergeSeparator {
|
|
|
|
}
|
2016-10-19 21:53:13 +00:00
|
|
|
|
|
|
|
public SpannableStringBuilder getMergedBody() {
|
2018-05-04 08:11:24 +00:00
|
|
|
SpannableStringBuilder body = new SpannableStringBuilder(MessageUtils.filterLtrRtl(this.body).trim());
|
2015-07-28 21:00:30 +00:00
|
|
|
Message current = this;
|
2016-10-19 21:53:13 +00:00
|
|
|
while (current.mergeable(current.next())) {
|
2015-07-28 21:00:30 +00:00
|
|
|
current = current.next();
|
2016-05-19 08:40:03 +00:00
|
|
|
if (current == null) {
|
|
|
|
break;
|
|
|
|
}
|
2016-10-19 21:53:13 +00:00
|
|
|
body.append("\n\n");
|
|
|
|
body.setSpan(new MergeSeparator(), body.length() - 2, body.length(),
|
|
|
|
SpannableStringBuilder.SPAN_EXCLUSIVE_EXCLUSIVE);
|
2018-05-04 08:11:24 +00:00
|
|
|
body.append(MessageUtils.filterLtrRtl(current.getBody()).trim());
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
2016-10-19 21:53:13 +00:00
|
|
|
return body;
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
2015-01-11 15:22:29 +00:00
|
|
|
|
|
|
|
public boolean hasMeCommand() {
|
2016-10-19 21:53:13 +00:00
|
|
|
return this.body.trim().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;
|
2018-04-26 11:22:31 +00:00
|
|
|
while (current.mergeable(current.next())) {
|
2015-07-28 21:00:30 +00:00
|
|
|
current = current.next();
|
2016-05-19 08:40:03 +00:00
|
|
|
if (current == null) {
|
|
|
|
break;
|
|
|
|
}
|
2015-07-28 21:00:30 +00:00
|
|
|
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;
|
2018-04-26 11:22:31 +00:00
|
|
|
while (current.mergeable(current.next())) {
|
2015-07-28 21:00:30 +00:00
|
|
|
current = current.next();
|
2016-05-19 08:40:03 +00:00
|
|
|
if (current == null) {
|
|
|
|
break;
|
|
|
|
}
|
2015-07-28 21:00:30 +00:00
|
|
|
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();
|
2018-10-31 09:52:14 +00:00
|
|
|
return status > STATUS_RECEIVED || (contact != null && (contact.showInContactList() || contact.isSelf()));
|
2014-10-27 10:00:03 +00:00
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
|
2015-07-05 09:59:38 +00:00
|
|
|
public boolean fixCounterpart() {
|
2020-06-13 20:53:24 +00:00
|
|
|
final Presences presences = conversation.getContact().getPresences();
|
|
|
|
if (counterpart != null && presences.has(Strings.nullToEmpty(counterpart.getResource()))) {
|
2015-07-05 09:59:38 +00:00
|
|
|
return true;
|
|
|
|
} else if (presences.size() >= 1) {
|
2020-06-13 20:53:24 +00:00
|
|
|
counterpart = PresenceSelector.getNextCounterpart(getContact(),presences.toResourceArray()[0]);
|
|
|
|
return true;
|
2015-07-05 09:59:38 +00:00
|
|
|
} else {
|
|
|
|
counterpart = null;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 22:15:04 +00:00
|
|
|
public void setUuid(String uuid) {
|
|
|
|
this.uuid = uuid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getEditedId() {
|
2018-12-01 14:52:44 +00:00
|
|
|
if (edits.size() > 0) {
|
|
|
|
return edits.get(edits.size() - 1).getEditedId();
|
2019-09-13 14:38:15 +00:00
|
|
|
} else {
|
|
|
|
throw new IllegalStateException("Attempting to store unedited message");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getEditedIdWireFormat() {
|
|
|
|
if (edits.size() > 0) {
|
|
|
|
return edits.get(Config.USE_LMC_VERSION_1_1 ? 0 : edits.size() - 1).getEditedId();
|
2018-12-01 14:52:44 +00:00
|
|
|
} else {
|
|
|
|
throw new IllegalStateException("Attempting to store unedited message");
|
|
|
|
}
|
2016-02-15 22:15:04 +00:00
|
|
|
}
|
|
|
|
|
2016-03-04 19:09:21 +00:00
|
|
|
public void setOob(boolean isOob) {
|
|
|
|
this.oob = isOob;
|
|
|
|
}
|
|
|
|
|
2015-07-01 14:01:18 +00:00
|
|
|
public String getMimeType() {
|
2018-01-29 00:40:02 +00:00
|
|
|
String extension;
|
2015-07-01 14:01:18 +00:00
|
|
|
if (relativeFilePath != null) {
|
2018-01-29 00:40:02 +00:00
|
|
|
extension = MimeUtils.extractRelevantExtension(relativeFilePath);
|
2015-07-01 14:01:18 +00:00
|
|
|
} else {
|
|
|
|
try {
|
2018-01-29 00:40:02 +00:00
|
|
|
final URL url = new URL(body.split("\n")[0]);
|
|
|
|
extension = MimeUtils.extractRelevantExtension(url);
|
2015-07-01 14:01:18 +00:00
|
|
|
} catch (MalformedURLException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 00:40:02 +00:00
|
|
|
return MimeUtils.guessMimeTypeFromExtension(extension);
|
2015-06-30 11:52:53 +00:00
|
|
|
}
|
|
|
|
|
2017-08-03 11:24:41 +00:00
|
|
|
public synchronized boolean treatAsDownloadable() {
|
|
|
|
if (treatAsDownloadable == null) {
|
2018-05-02 10:14:24 +00:00
|
|
|
treatAsDownloadable = MessageUtils.treatAsDownloadable(this.body, this.oob);
|
2014-10-13 23:06:45 +00:00
|
|
|
}
|
2017-08-03 11:24:41 +00:00
|
|
|
return treatAsDownloadable;
|
2014-10-13 23:06:45 +00:00
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
|
2017-08-03 11:24:41 +00:00
|
|
|
public synchronized boolean bodyIsOnlyEmojis() {
|
|
|
|
if (isEmojisOnly == null) {
|
2018-04-26 11:22:31 +00:00
|
|
|
isEmojisOnly = Emoticons.isOnlyEmoji(body.replaceAll("\\s", ""));
|
2017-08-03 11:24:41 +00:00
|
|
|
}
|
|
|
|
return isEmojisOnly;
|
2015-05-10 01:12:44 +00:00
|
|
|
}
|
|
|
|
|
2017-08-03 11:24:41 +00:00
|
|
|
public synchronized boolean isGeoUri() {
|
|
|
|
if (isGeoUri == null) {
|
|
|
|
isGeoUri = GeoHelper.GEO_URI.matcher(body).matches();
|
2014-10-15 17:32:12 +00:00
|
|
|
}
|
2017-08-03 11:24:41 +00:00
|
|
|
return isGeoUri;
|
|
|
|
}
|
|
|
|
|
2017-08-04 09:58:12 +00:00
|
|
|
public synchronized void resetFileParams() {
|
|
|
|
this.fileParams = null;
|
|
|
|
}
|
|
|
|
|
2017-08-03 11:24:41 +00:00
|
|
|
public synchronized FileParams getFileParams() {
|
|
|
|
if (fileParams == null) {
|
|
|
|
fileParams = new FileParams();
|
|
|
|
if (this.transferable != null) {
|
|
|
|
fileParams.size = this.transferable.getFileSize();
|
|
|
|
}
|
2019-12-26 16:36:16 +00:00
|
|
|
final String[] parts = body == null ? new String[0] : body.split("\\|");
|
2017-08-03 11:24:41 +00:00
|
|
|
switch (parts.length) {
|
|
|
|
case 1:
|
2015-06-30 15:15:02 +00:00
|
|
|
try {
|
2017-08-03 11:24:41 +00:00
|
|
|
fileParams.size = Long.parseLong(parts[0]);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
fileParams.url = parseUrl(parts[0]);
|
2015-06-30 15:15:02 +00:00
|
|
|
}
|
2017-08-03 11:24:41 +00:00
|
|
|
break;
|
2017-09-19 20:42:22 +00:00
|
|
|
case 5:
|
|
|
|
fileParams.runtime = parseInt(parts[4]);
|
2017-08-03 11:24:41 +00:00
|
|
|
case 4:
|
|
|
|
fileParams.width = parseInt(parts[2]);
|
|
|
|
fileParams.height = parseInt(parts[3]);
|
|
|
|
case 2:
|
|
|
|
fileParams.url = parseUrl(parts[0]);
|
|
|
|
fileParams.size = parseLong(parts[1]);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
fileParams.size = parseLong(parts[0]);
|
|
|
|
fileParams.width = parseInt(parts[1]);
|
|
|
|
fileParams.height = parseInt(parts[2]);
|
|
|
|
break;
|
|
|
|
}
|
2014-10-14 16:16:03 +00:00
|
|
|
}
|
2017-08-03 11:24:41 +00:00
|
|
|
return fileParams;
|
2014-10-14 16:16:03 +00:00
|
|
|
}
|
2014-11-09 16:46:00 +00:00
|
|
|
|
2017-08-03 11:24:41 +00:00
|
|
|
private static long parseLong(String value) {
|
|
|
|
try {
|
|
|
|
return Long.parseLong(value);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return 0;
|
2014-10-26 19:18:57 +00:00
|
|
|
}
|
2017-08-03 11:24:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static int parseInt(String value) {
|
|
|
|
try {
|
|
|
|
return Integer.parseInt(value);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static URL parseUrl(String value) {
|
|
|
|
try {
|
|
|
|
return new URL(value);
|
|
|
|
} catch (MalformedURLException e) {
|
2014-10-26 19:18:57 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-04-27 09:46:43 +00:00
|
|
|
public boolean isPrivateMessage() {
|
|
|
|
return type == TYPE_PRIVATE || type == TYPE_PRIVATE_FILE;
|
|
|
|
}
|
|
|
|
|
2015-01-02 13:27:49 +00:00
|
|
|
public boolean isFileOrImage() {
|
2019-04-27 09:46:43 +00:00
|
|
|
return type == TYPE_FILE || type == TYPE_IMAGE || type == TYPE_PRIVATE_FILE;
|
2015-01-02 13:27:49 +00:00
|
|
|
}
|
|
|
|
|
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;
|
2017-09-19 20:42:22 +00:00
|
|
|
public int runtime = 0;
|
2014-10-14 16:16:03 +00:00
|
|
|
}
|
2015-05-29 09:17:26 +00:00
|
|
|
|
2016-03-31 19:15:49 +00:00
|
|
|
public void setFingerprint(String fingerprint) {
|
2015-07-09 12:23:17 +00:00
|
|
|
this.axolotlFingerprint = fingerprint;
|
2015-06-29 12:25:23 +00:00
|
|
|
}
|
2015-07-10 01:00:40 +00:00
|
|
|
|
2016-03-31 19:15:49 +00:00
|
|
|
public String getFingerprint() {
|
2015-07-10 01:00:40 +00:00
|
|
|
return axolotlFingerprint;
|
|
|
|
}
|
2015-07-15 13:45:12 +00:00
|
|
|
|
|
|
|
public boolean isTrusted() {
|
2016-11-14 21:27:41 +00:00
|
|
|
FingerprintStatus s = conversation.getAccount().getAxolotlService().getFingerprintTrust(axolotlFingerprint);
|
2016-11-24 10:29:26 +00:00
|
|
|
return s != null && s.isTrusted();
|
2015-07-15 13:45:12 +00:00
|
|
|
}
|
2015-07-30 17:16:58 +00:00
|
|
|
|
2018-04-26 11:22:31 +00:00
|
|
|
private int getPreviousEncryption() {
|
|
|
|
for (Message iterator = this.prev(); iterator != null; iterator = iterator.prev()) {
|
|
|
|
if (iterator.isCarbon() || iterator.getStatus() == STATUS_RECEIVED) {
|
2015-07-30 17:16:58 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return iterator.getEncryption();
|
|
|
|
}
|
|
|
|
return ENCRYPTION_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
private int getNextEncryption() {
|
2018-04-26 11:22:31 +00:00
|
|
|
if (this.conversation instanceof Conversation) {
|
|
|
|
Conversation conversation = (Conversation) this.conversation;
|
|
|
|
for (Message iterator = this.next(); iterator != null; iterator = iterator.next()) {
|
|
|
|
if (iterator.isCarbon() || iterator.getStatus() == STATUS_RECEIVED) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return iterator.getEncryption();
|
2015-07-30 17:16:58 +00:00
|
|
|
}
|
2018-04-26 11:22:31 +00:00
|
|
|
return conversation.getNextEncryption();
|
|
|
|
} else {
|
|
|
|
throw new AssertionError("This should never be called since isInValidSession should be disabled for stubs");
|
2015-07-30 17:16:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isValidInSession() {
|
2016-01-29 11:09:31 +00:00
|
|
|
int pastEncryption = getCleanedEncryption(this.getPreviousEncryption());
|
|
|
|
int futureEncryption = getCleanedEncryption(this.getNextEncryption());
|
2015-07-30 17:16:58 +00:00
|
|
|
|
|
|
|
boolean inUnencryptedSession = pastEncryption == ENCRYPTION_NONE
|
|
|
|
|| futureEncryption == ENCRYPTION_NONE
|
|
|
|
|| pastEncryption != futureEncryption;
|
|
|
|
|
2016-01-29 11:09:31 +00:00
|
|
|
return inUnencryptedSession || getCleanedEncryption(this.getEncryption()) == pastEncryption;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static int getCleanedEncryption(int encryption) {
|
|
|
|
if (encryption == ENCRYPTION_DECRYPTED || encryption == ENCRYPTION_DECRYPTION_FAILED) {
|
|
|
|
return ENCRYPTION_PGP;
|
|
|
|
}
|
2018-12-02 13:41:25 +00:00
|
|
|
if (encryption == ENCRYPTION_AXOLOTL_NOT_FOR_THIS_DEVICE || encryption == ENCRYPTION_AXOLOTL_FAILED) {
|
2018-04-04 16:21:22 +00:00
|
|
|
return ENCRYPTION_AXOLOTL;
|
|
|
|
}
|
2016-01-29 11:09:31 +00:00
|
|
|
return encryption;
|
2015-07-30 17:16:58 +00:00
|
|
|
}
|
2019-04-27 09:46:43 +00:00
|
|
|
|
|
|
|
public static boolean configurePrivateMessage(final Message message) {
|
|
|
|
return configurePrivateMessage(message, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean configurePrivateFileMessage(final Message message) {
|
|
|
|
return configurePrivateMessage(message, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean configurePrivateMessage(final Message message, final boolean isFile) {
|
|
|
|
final Conversation conversation;
|
|
|
|
if (message.conversation instanceof Conversation) {
|
|
|
|
conversation = (Conversation) message.conversation;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
|
|
|
final Jid nextCounterpart = conversation.getNextCounterpart();
|
|
|
|
if (nextCounterpart != null) {
|
|
|
|
message.setCounterpart(nextCounterpart);
|
|
|
|
message.setTrueCounterpart(conversation.getMucOptions().getTrueCounterpart(nextCounterpart));
|
|
|
|
message.setType(isFile ? Message.TYPE_PRIVATE_FILE : Message.TYPE_PRIVATE);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|