2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.entities;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
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-01-25 18:33:12 +00:00
|
|
|
import android.content.ContentValues;
|
|
|
|
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-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;
|
|
|
|
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-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-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-08-21 10:32:50 +00:00
|
|
|
protected String remoteMsgId = null;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-10-07 14:02:52 +00:00
|
|
|
protected Conversation conversation = null;
|
|
|
|
protected Downloadable downloadable = null;
|
|
|
|
public boolean markable = false;
|
2014-08-31 12:29:12 +00:00
|
|
|
|
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) {
|
|
|
|
this(java.util.UUID.randomUUID().toString(), conversation.getUuid(),
|
2014-08-31 12:29:12 +00:00
|
|
|
conversation.getContactJid(), null, body, System
|
|
|
|
.currentTimeMillis(), encryption,
|
|
|
|
Message.STATUS_UNSEND, TYPE_TEXT, null);
|
2014-01-27 19:40:42 +00:00
|
|
|
this.conversation = conversation;
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
|
|
|
public Message(Conversation conversation, String counterpart, String body,
|
|
|
|
int encryption, int status) {
|
|
|
|
this(java.util.UUID.randomUUID().toString(), conversation.getUuid(),
|
|
|
|
counterpart, 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
|
|
|
|
|
|
|
public Message(String uuid, String conversationUUid, String counterpart,
|
|
|
|
String trueCounterpart, String body, long timeSent, int encryption,
|
|
|
|
int status, int type, 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
|
|
|
}
|
|
|
|
|
|
|
|
@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-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
|
|
|
|
|
|
|
public String getCounterpart() {
|
|
|
|
return counterpart;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
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-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-08-31 12:29:12 +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-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)),
|
2014-08-21 10:32:50 +00:00
|
|
|
cursor.getInt(cursor.getColumnIndex(TYPE)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(REMOTE_MSG_ID)));
|
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;
|
|
|
|
}
|
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
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
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 void setType(int type) {
|
|
|
|
this.type = type;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-04-06 13:34:08 +00:00
|
|
|
public int getType() {
|
|
|
|
return this.type;
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
|
|
|
public void setPresence(String presence) {
|
2014-09-04 17:56:37 +00:00
|
|
|
if (presence == null) {
|
2014-09-21 20:58:19 +00:00
|
|
|
this.counterpart = this.counterpart.split("/", 2)[0];
|
2014-06-12 21:04:28 +00:00
|
|
|
} else {
|
2014-09-21 20:58:19 +00:00
|
|
|
this.counterpart = this.counterpart.split("/", 2)[0] + "/"
|
|
|
|
+ presence;
|
2014-06-12 21:04:28 +00:00
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-07-29 12:42:17 +00:00
|
|
|
public void setTrueCounterpart(String trueCounterpart) {
|
|
|
|
this.trueCounterpart = trueCounterpart;
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-06-06 09:39:17 +00:00
|
|
|
public String getPresence() {
|
2014-09-21 20:58:19 +00:00
|
|
|
String[] counterparts = this.counterpart.split("/", 2);
|
2014-06-06 09:39:17 +00:00
|
|
|
if (counterparts.length == 2) {
|
|
|
|
return counterparts[1];
|
|
|
|
} else {
|
2014-09-04 17:56:37 +00:00
|
|
|
if (this.counterpart.contains("/")) {
|
|
|
|
return "";
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
2014-09-08 18:09:44 +00:00
|
|
|
public void setDownloadable(Downloadable downloadable) {
|
|
|
|
this.downloadable = downloadable;
|
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-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-08-10 13:27:44 +00:00
|
|
|
|
|
|
|
public void setCounterpart(String counterpart) {
|
|
|
|
this.counterpart = counterpart;
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
|
|
|
public boolean mergable(Message message) {
|
|
|
|
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-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-10-24 21:18:19 +00:00
|
|
|
.getStatus() == Message.STATUS_SEND_DISPLAYED))))
|
|
|
|
&& !message.bodyContainsDownloadable()
|
|
|
|
&& !this.bodyContainsDownloadable());
|
2014-08-31 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getMergedBody() {
|
|
|
|
Message next = this.next();
|
|
|
|
if (this.mergable(next)) {
|
|
|
|
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();
|
|
|
|
if (this.mergable(next)) {
|
|
|
|
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();
|
|
|
|
if (this.mergable(next)) {
|
|
|
|
return next.getMergedTimeSent();
|
|
|
|
} else {
|
|
|
|
return getTimeSent();
|
|
|
|
}
|
|
|
|
}
|
2014-08-31 12:29:12 +00:00
|
|
|
|
|
|
|
public boolean wasMergedIntoPrevious() {
|
|
|
|
Message prev = this.prev();
|
|
|
|
if (prev == null) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return prev.mergable(this);
|
|
|
|
}
|
2014-08-23 13:57:39 +00:00
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
|
2014-10-13 23:06:45 +00:00
|
|
|
public boolean bodyContainsDownloadable() {
|
|
|
|
Contact contact = this.getContact();
|
2014-10-15 17:32:12 +00:00
|
|
|
if (status <= STATUS_RECEIVED
|
|
|
|
&& (contact == null || !contact.trusted())) {
|
2014-10-13 23:06:45 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
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("/");
|
|
|
|
String filename = pathParts[pathParts.length - 1];
|
|
|
|
String[] extensionParts = filename.split("\\.");
|
2014-10-15 17:32:12 +00:00
|
|
|
if (extensionParts.length == 2
|
|
|
|
&& Arrays.asList(Downloadable.VALID_EXTENSIONS).contains(
|
|
|
|
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
|
|
|
|
.asList(Downloadable.VALID_CRYPTO_EXTENSIONS)
|
|
|
|
.contains(extensionParts[extensionParts.length - 1])
|
2014-10-15 17:32:12 +00:00
|
|
|
&& Arrays.asList(Downloadable.VALID_EXTENSIONS).contains(
|
|
|
|
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() {
|
|
|
|
ImageParams 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;
|
|
|
|
}
|
|
|
|
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-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
|
|
|
}
|