2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.entities;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-05-09 18:46:43 +00:00
|
|
|
import eu.siacs.conversations.R;
|
2014-04-22 16:46:40 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jingle.JingleConnection;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.content.ContentValues;
|
2014-05-09 18:46:43 +00:00
|
|
|
import android.content.Context;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.database.Cursor;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
public class Message extends AbstractEntity {
|
2014-01-26 02:27:55 +00:00
|
|
|
|
|
|
|
public static final String TABLENAME = "messages";
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-06-29 11:44:59 +00:00
|
|
|
public static final int STATUS_RECEPTION_FAILED = -3;
|
2014-04-22 16:46:40 +00:00
|
|
|
public static final int STATUS_RECEIVED_OFFER = -2;
|
2014-04-13 09:32:45 +00:00
|
|
|
public static final int STATUS_RECIEVING = -1;
|
2014-01-25 18:33:12 +00:00
|
|
|
public static final int STATUS_RECIEVED = 0;
|
|
|
|
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;
|
|
|
|
public static final int STATUS_SEND_REJECTED = 4;
|
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;
|
2014-04-06 13:34:08 +00:00
|
|
|
|
|
|
|
public static final int TYPE_TEXT = 0;
|
|
|
|
public static final int TYPE_IMAGE = 1;
|
2014-05-18 15:32:20 +00:00
|
|
|
public static final int TYPE_AUDIO = 2;
|
2014-06-04 19:40:17 +00:00
|
|
|
public static final int TYPE_STATUS = 3;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public static String CONVERSATION = "conversationUuid";
|
|
|
|
public static String COUNTERPART = "counterpart";
|
2014-07-29 12:42:17 +00:00
|
|
|
public static String TRUE_COUNTERPART = "trueCounterpart";
|
2014-01-25 18:33:12 +00:00
|
|
|
public static String BODY = "body";
|
|
|
|
public static String TIME_SENT = "timeSent";
|
|
|
|
public static String ENCRYPTION = "encryption";
|
|
|
|
public static String STATUS = "status";
|
2014-04-06 13:34:08 +00:00
|
|
|
public static String TYPE = "type";
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
protected String conversationUuid;
|
|
|
|
protected String counterpart;
|
2014-07-29 12:42:17 +00:00
|
|
|
protected String 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-02-10 21:45:59 +00:00
|
|
|
protected boolean read = true;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
protected transient Conversation conversation = null;
|
2014-04-22 16:46:40 +00:00
|
|
|
|
|
|
|
protected transient JingleConnection jingleConnection = null;
|
2014-06-04 19:40:17 +00:00
|
|
|
|
|
|
|
private Message() {
|
|
|
|
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public Message(Conversation conversation, String body, int encryption) {
|
|
|
|
this(java.util.UUID.randomUUID().toString(), conversation.getUuid(),
|
2014-07-29 12:42:17 +00:00
|
|
|
conversation.getContactJid(), null, body, System.currentTimeMillis(), encryption,
|
2014-04-06 13:34:08 +00:00
|
|
|
Message.STATUS_UNSEND,TYPE_TEXT);
|
2014-01-27 19:40:42 +00:00
|
|
|
this.conversation = conversation;
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
2014-02-01 14:07:20 +00:00
|
|
|
|
|
|
|
public Message(Conversation conversation, String counterpart, String body, int encryption, int status) {
|
2014-07-29 12:42:17 +00:00
|
|
|
this(java.util.UUID.randomUUID().toString(), conversation.getUuid(),counterpart, null, body, System.currentTimeMillis(), encryption,status,TYPE_TEXT);
|
2014-02-01 14:07:20 +00:00
|
|
|
this.conversation = conversation;
|
|
|
|
}
|
|
|
|
|
2014-07-29 12:42:17 +00:00
|
|
|
public Message(String uuid, String conversationUUid, String counterpart, String trueCounterpart,
|
2014-04-06 13:34:08 +00:00
|
|
|
String body, long timeSent, int encryption, int status, int type) {
|
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-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);
|
|
|
|
values.put(COUNTERPART, counterpart);
|
2014-07-29 12:42:17 +00:00
|
|
|
values.put(TRUE_COUNTERPART,trueCounterpart);
|
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-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-01-27 19:40:42 +00:00
|
|
|
|
|
|
|
public Conversation getConversation() {
|
|
|
|
return this.conversation;
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public String getCounterpart() {
|
|
|
|
return 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 {
|
|
|
|
Account account = this.conversation.getAccount();
|
|
|
|
Contact contact = account.getRoster().getContact(this.trueCounterpart);
|
|
|
|
if (contact.showInRoster()) {
|
|
|
|
return contact;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public String getBody() {
|
|
|
|
return body;
|
|
|
|
}
|
2014-05-09 18:46:43 +00:00
|
|
|
|
|
|
|
public String getReadableBody(Context context) {
|
|
|
|
if ((encryption == ENCRYPTION_PGP)&&(type == TYPE_TEXT)) {
|
|
|
|
return ""+context.getText(R.string.encrypted_message_received);
|
|
|
|
} else if ((encryption == ENCRYPTION_OTR)&&(type == TYPE_IMAGE)) {
|
|
|
|
return ""+context.getText(R.string.encrypted_image_received);
|
|
|
|
} else if (encryption == ENCRYPTION_DECRYPTION_FAILED) {
|
|
|
|
return ""+context.getText(R.string.decryption_failed);
|
|
|
|
} else if (type == TYPE_IMAGE) {
|
|
|
|
return ""+context.getText(R.string.image_file);
|
|
|
|
} else {
|
|
|
|
return body.trim();
|
|
|
|
}
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public long getTimeSent() {
|
|
|
|
return timeSent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getEncryption() {
|
|
|
|
return encryption;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getStatus() {
|
|
|
|
return status;
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
public static Message fromCursor(Cursor cursor) {
|
|
|
|
return new Message(cursor.getString(cursor.getColumnIndex(UUID)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(CONVERSATION)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(COUNTERPART)),
|
2014-07-29 12:42:17 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(TRUE_COUNTERPART)),
|
2014-01-25 18:33:12 +00:00
|
|
|
cursor.getString(cursor.getColumnIndex(BODY)),
|
|
|
|
cursor.getLong(cursor.getColumnIndex(TIME_SENT)),
|
|
|
|
cursor.getInt(cursor.getColumnIndex(ENCRYPTION)),
|
2014-04-06 13:34:08 +00:00
|
|
|
cursor.getInt(cursor.getColumnIndex(STATUS)),
|
|
|
|
cursor.getInt(cursor.getColumnIndex(TYPE)));
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
public void setConversation(Conversation conv) {
|
|
|
|
this.conversation = conv;
|
|
|
|
}
|
|
|
|
|
2014-02-02 15:05:15 +00:00
|
|
|
public void setStatus(int status) {
|
|
|
|
this.status = status;
|
|
|
|
}
|
|
|
|
|
2014-02-10 21:45:59 +00:00
|
|
|
public boolean isRead() {
|
|
|
|
return this.read;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void markRead() {
|
|
|
|
this.read = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
public void setEncryption(int encryption) {
|
|
|
|
this.encryption = encryption;
|
|
|
|
}
|
2014-02-27 23:22:56 +00:00
|
|
|
|
|
|
|
public void setBody(String body) {
|
|
|
|
this.body = body;
|
|
|
|
}
|
2014-04-03 15:39:57 +00:00
|
|
|
|
|
|
|
public String getEncryptedBody() {
|
|
|
|
return this.encryptedBody;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEncryptedBody(String body) {
|
|
|
|
this.encryptedBody = body;
|
|
|
|
}
|
2014-04-06 13:34:08 +00:00
|
|
|
|
|
|
|
public void setType(int type) {
|
|
|
|
this.type = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getType() {
|
|
|
|
return this.type;
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
|
|
|
public void setPresence(String presence) {
|
2014-06-12 21:04:28 +00:00
|
|
|
if (presence == null) {
|
|
|
|
this.counterpart = this.counterpart.split("/")[0];
|
|
|
|
} else {
|
|
|
|
this.counterpart = this.counterpart.split("/")[0] + "/" + presence;
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
}
|
2014-04-22 16:46:40 +00:00
|
|
|
|
2014-07-29 12:42:17 +00:00
|
|
|
public void setTrueCounterpart(String trueCounterpart) {
|
|
|
|
this.trueCounterpart = trueCounterpart;
|
|
|
|
}
|
|
|
|
|
2014-06-06 09:39:17 +00:00
|
|
|
public String getPresence() {
|
|
|
|
String[] counterparts = this.counterpart.split("/");
|
|
|
|
if (counterparts.length == 2) {
|
|
|
|
return counterparts[1];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-22 16:46:40 +00:00
|
|
|
public void setJingleConnection(JingleConnection connection) {
|
|
|
|
this.jingleConnection = connection;
|
|
|
|
}
|
|
|
|
|
|
|
|
public JingleConnection getJingleConnection() {
|
|
|
|
return this.jingleConnection;
|
|
|
|
}
|
2014-06-04 19:40:17 +00:00
|
|
|
|
|
|
|
public static Message createStatusMessage(Conversation conversation) {
|
|
|
|
Message message = new Message();
|
|
|
|
message.setType(Message.TYPE_STATUS);
|
|
|
|
message.setConversation(conversation);
|
|
|
|
return message;
|
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|