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;
|
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
|
|
|
|
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;
|
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-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-08-10 13:27:44 +00:00
|
|
|
public static final int TYPE_PRIVATE = 4;
|
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-08-21 10:32:50 +00:00
|
|
|
public static String REMOTE_MSG_ID = "remoteMsgId";
|
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-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-08-21 10:32:50 +00:00
|
|
|
protected String remoteMsgId = null;
|
2014-10-07 14:02:52 +00:00
|
|
|
protected Conversation conversation = null;
|
|
|
|
protected Downloadable downloadable = null;
|
2014-10-20 15:01:37 +00:00
|
|
|
private Message mNextMessage = null;
|
|
|
|
private Message mPreviousMessage = null;
|
|
|
|
|
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-10 00:24:35 +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-08-31 12:29:12 +00:00
|
|
|
this(java.util.UUID.randomUUID().toString(), conversation.getUuid(),
|
2014-11-10 00:24:35 +00:00
|
|
|
conversation.getContactJid().toBareJid(), null, body, System
|
|
|
|
.currentTimeMillis(), encryption,
|
|
|
|
status, TYPE_TEXT, null);
|
2014-02-01 14:07:20 +00:00
|
|
|
this.conversation = conversation;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public Message(final String uuid, final String conversationUUid, final Jid counterpart,
|
2014-11-09 16:46:00 +00:00
|
|
|
final String trueCounterpart, final String body, final long timeSent,
|
|
|
|
final int encryption, final int status, final int type, final String remoteMsgId) {
|
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-01-25 18:33:12 +00:00
|
|
|
}
|
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
public static Message fromCursor(Cursor cursor) {
|
|
|
|
Jid jid;
|
|
|
|
try {
|
|
|
|
jid = Jid.fromString(cursor.getString(cursor.getColumnIndex(COUNTERPART)));
|
|
|
|
} catch (InvalidJidException e) {
|
|
|
|
jid = null;
|
|
|
|
}
|
|
|
|
return new Message(cursor.getString(cursor.getColumnIndex(UUID)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(CONVERSATION)),
|
|
|
|
jid,
|
|
|
|
cursor.getString(cursor.getColumnIndex(TRUE_COUNTERPART)),
|
|
|
|
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)));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Message createStatusMessage(Conversation conversation) {
|
|
|
|
Message message = new Message();
|
|
|
|
message.setType(Message.TYPE_STATUS);
|
|
|
|
message.setConversation(conversation);
|
|
|
|
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-08-31 12:29:12 +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-08-31 12:29:12 +00:00
|
|
|
values.put(REMOTE_MSG_ID, remoteMsgId);
|
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()
|
|
|
|
.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-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-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-09 16:46:00 +00:00
|
|
|
public void setTrueCounterpart(String trueCounterpart) {
|
|
|
|
this.trueCounterpart = trueCounterpart;
|
2014-04-22 16:46:40 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-09-08 18:09:44 +00:00
|
|
|
public Downloadable getDownloadable() {
|
|
|
|
return this.downloadable;
|
2014-04-22 16:46:40 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-11-09 16:46:00 +00:00
|
|
|
public void setDownloadable(Downloadable downloadable) {
|
|
|
|
this.downloadable = downloadable;
|
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-08-31 12:29:12 +00:00
|
|
|
if ((this.remoteMsgId != null) && (this.body != null)
|
|
|
|
&& (this.counterpart != null)) {
|
|
|
|
return this.remoteMsgId.equals(message.getRemoteMsgId())
|
|
|
|
&& this.body.equals(message.getBody())
|
|
|
|
&& this.counterpart.equals(message.getCounterpart());
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Message next() {
|
2014-10-20 15:01:37 +00:00
|
|
|
if (this.mNextMessage == null) {
|
|
|
|
synchronized (this.conversation.messages) {
|
|
|
|
int index = this.conversation.messages.indexOf(this);
|
|
|
|
if (index < 0
|
|
|
|
|| index >= this.conversation.getMessages().size() - 1) {
|
|
|
|
this.mNextMessage = null;
|
|
|
|
} else {
|
|
|
|
this.mNextMessage = this.conversation.messages
|
|
|
|
.get(index + 1);
|
|
|
|
}
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
2014-10-20 15:01:37 +00:00
|
|
|
return this.mNextMessage;
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Message prev() {
|
2014-10-20 15:01:37 +00:00
|
|
|
if (this.mPreviousMessage == null) {
|
|
|
|
synchronized (this.conversation.messages) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
2014-10-20 15:01:37 +00:00
|
|
|
return this.mPreviousMessage;
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
2014-11-01 13:33:34 +00:00
|
|
|
public boolean mergeable(Message message) {
|
2014-08-31 12:29:12 +00:00
|
|
|
if (message == null) {
|
2014-08-23 13:57:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-08-31 13:54:53 +00:00
|
|
|
return (message.getType() == Message.TYPE_TEXT
|
2014-10-15 17:32:12 +00:00
|
|
|
&& this.getDownloadable() == null
|
|
|
|
&& message.getDownloadable() == null
|
2014-08-31 13:54:53 +00:00
|
|
|
&& message.getEncryption() != Message.ENCRYPTION_PGP
|
2014-08-31 12:29:12 +00:00
|
|
|
&& this.getType() == message.getType()
|
2014-08-31 13:54:53 +00:00
|
|
|
&& this.getEncryption() == message.getEncryption()
|
2014-11-09 15:47:31 +00:00
|
|
|
&& this.getCounterpart() != null
|
2014-08-31 12:29:12 +00:00
|
|
|
&& this.getCounterpart().equals(message.getCounterpart())
|
2014-09-21 20:58:19 +00:00
|
|
|
&& (message.getTimeSent() - this.getTimeSent()) <= (Config.MESSAGE_MERGE_WINDOW * 1000) && ((this
|
|
|
|
.getStatus() == message.getStatus() || ((this.getStatus() == Message.STATUS_SEND || this
|
|
|
|
.getStatus() == Message.STATUS_SEND_RECEIVED) && (message
|
|
|
|
.getStatus() == Message.STATUS_UNSEND
|
|
|
|
|| message.getStatus() == Message.STATUS_SEND || message
|
2014-11-09 16:46:00 +00:00
|
|
|
.getStatus() == Message.STATUS_SEND_DISPLAYED))))
|
2014-10-24 21:18:19 +00:00
|
|
|
&& !message.bodyContainsDownloadable()
|
|
|
|
&& !this.bodyContainsDownloadable());
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getMergedBody() {
|
|
|
|
Message next = this.next();
|
2014-11-01 13:33:34 +00:00
|
|
|
if (this.mergeable(next)) {
|
2014-08-31 12:29:12 +00:00
|
|
|
return body.trim() + '\n' + next.getMergedBody();
|
|
|
|
}
|
|
|
|
return body.trim();
|
|
|
|
}
|
2014-09-08 21:58:37 +00:00
|
|
|
|
2014-08-31 16:55:15 +00:00
|
|
|
public int getMergedStatus() {
|
|
|
|
Message next = this.next();
|
2014-11-01 13:33:34 +00:00
|
|
|
if (this.mergeable(next)) {
|
2014-08-31 16:55:15 +00:00
|
|
|
return next.getMergedStatus();
|
|
|
|
} else {
|
|
|
|
return getStatus();
|
|
|
|
}
|
|
|
|
}
|
2014-09-08 21:58:37 +00:00
|
|
|
|
2014-08-31 16:55:15 +00:00
|
|
|
public long getMergedTimeSent() {
|
|
|
|
Message next = this.next();
|
2014-11-01 13:33:34 +00:00
|
|
|
if (this.mergeable(next)) {
|
2014-08-31 16:55:15 +00:00
|
|
|
return next.getMergedTimeSent();
|
|
|
|
} else {
|
|
|
|
return getTimeSent();
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
2014-10-13 23:06:45 +00:00
|
|
|
public boolean bodyContainsDownloadable() {
|
|
|
|
try {
|
|
|
|
URL url = new URL(this.getBody());
|
2014-10-15 17:32:12 +00:00
|
|
|
if (!url.getProtocol().equalsIgnoreCase("http")
|
|
|
|
&& !url.getProtocol().equalsIgnoreCase("https")) {
|
2014-10-13 23:06:45 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
if (url.getPath() == null) {
|
2014-10-13 23:06:45 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
String[] pathParts = url.getPath().split("/");
|
2014-10-27 20:47:17 +00:00
|
|
|
String filename;
|
|
|
|
if (pathParts.length > 0) {
|
|
|
|
filename = pathParts[pathParts.length - 1];
|
|
|
|
} else {
|
2014-11-01 13:33:34 +00:00
|
|
|
return false;
|
2014-10-27 20:47:17 +00:00
|
|
|
}
|
2014-10-13 23:06:45 +00:00
|
|
|
String[] extensionParts = filename.split("\\.");
|
2014-10-15 17:32:12 +00:00
|
|
|
if (extensionParts.length == 2
|
|
|
|
&& Arrays.asList(Downloadable.VALID_EXTENSIONS).contains(
|
2014-11-09 16:46:00 +00:00
|
|
|
extensionParts[extensionParts.length - 1])) {
|
2014-10-13 23:06:45 +00:00
|
|
|
return true;
|
2014-10-15 17:32:12 +00:00
|
|
|
} else if (extensionParts.length == 3
|
2014-10-22 11:06:46 +00:00
|
|
|
&& Arrays
|
2014-11-09 16:46:00 +00:00
|
|
|
.asList(Downloadable.VALID_CRYPTO_EXTENSIONS)
|
|
|
|
.contains(extensionParts[extensionParts.length - 1])
|
2014-10-15 17:32:12 +00:00
|
|
|
&& Arrays.asList(Downloadable.VALID_EXTENSIONS).contains(
|
2014-11-09 16:46:00 +00:00
|
|
|
extensionParts[extensionParts.length - 2])) {
|
2014-10-13 23:06:45 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} catch (MalformedURLException e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
|
2014-10-14 16:16:03 +00:00
|
|
|
public ImageParams getImageParams() {
|
2014-10-26 19:18:57 +00:00
|
|
|
ImageParams params = getLegacyImageParams();
|
2014-11-09 16:46:00 +00:00
|
|
|
if (params != null) {
|
2014-10-26 19:18:57 +00:00
|
|
|
return params;
|
|
|
|
}
|
|
|
|
params = new ImageParams();
|
2014-10-15 17:32:12 +00:00
|
|
|
if (this.downloadable != null) {
|
|
|
|
params.size = this.downloadable.getFileSize();
|
|
|
|
}
|
|
|
|
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("\\|");
|
2014-10-15 17:32:12 +00:00
|
|
|
if (parts.length == 1) {
|
2014-10-14 16:16:03 +00:00
|
|
|
try {
|
|
|
|
params.size = Long.parseLong(parts[0]);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
params.origin = parts[0];
|
2014-10-23 19:27:41 +00:00
|
|
|
try {
|
|
|
|
params.url = new URL(parts[0]);
|
|
|
|
} catch (MalformedURLException e1) {
|
|
|
|
params.url = null;
|
|
|
|
}
|
2014-10-14 16:16:03 +00:00
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
} else if (parts.length == 3) {
|
2014-10-14 16:16:03 +00:00
|
|
|
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];
|
2014-10-23 19:27:41 +00:00
|
|
|
try {
|
|
|
|
params.url = new URL(parts[0]);
|
|
|
|
} catch (MalformedURLException e1) {
|
|
|
|
params.url = null;
|
|
|
|
}
|
2014-10-14 16:16:03 +00:00
|
|
|
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;
|
|
|
|
}
|
2014-11-09 16:46:00 +00:00
|
|
|
|
2014-10-26 19:18:57 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
|
2014-10-14 16:16:03 +00:00
|
|
|
public class ImageParams {
|
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;
|
|
|
|
public String origin;
|
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|