2013-07-18 17:42:45 -07:00
|
|
|
package org.whispersystems.textsecure.push;
|
|
|
|
|
2013-08-29 17:01:30 -07:00
|
|
|
import org.whispersystems.textsecure.push.PushMessageProtos.IncomingPushMessageSignal;
|
|
|
|
import org.whispersystems.textsecure.push.PushMessageProtos.IncomingPushMessageSignal.AttachmentPointer;
|
|
|
|
import org.whispersystems.textsecure.util.Base64;
|
|
|
|
|
2013-07-18 17:42:45 -07:00
|
|
|
import android.os.Parcel;
|
|
|
|
import android.os.Parcelable;
|
|
|
|
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
|
|
|
|
2013-08-29 17:01:30 -07:00
|
|
|
public class IncomingPushMessage implements PushMessage, Parcelable {
|
2013-07-18 17:42:45 -07:00
|
|
|
|
|
|
|
public static final Parcelable.Creator<IncomingPushMessage> CREATOR = new Parcelable.Creator<IncomingPushMessage>() {
|
|
|
|
@Override
|
|
|
|
public IncomingPushMessage createFromParcel(Parcel in) {
|
|
|
|
return new IncomingPushMessage(in);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IncomingPushMessage[] newArray(int size) {
|
|
|
|
return new IncomingPushMessage[size];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-08-21 17:25:19 -07:00
|
|
|
private int type;
|
2013-07-18 17:42:45 -07:00
|
|
|
private String source;
|
|
|
|
private List<String> destinations;
|
2013-08-29 17:01:30 -07:00
|
|
|
private byte[] message;
|
2013-07-18 17:42:45 -07:00
|
|
|
private List<PushAttachmentPointer> attachments;
|
|
|
|
private long timestamp;
|
|
|
|
|
2013-08-29 17:01:30 -07:00
|
|
|
public IncomingPushMessage(IncomingPushMessageSignal signal) {
|
|
|
|
this.type = signal.getType();
|
|
|
|
this.source = signal.getSource();
|
|
|
|
this.destinations = signal.getDestinationsList();
|
|
|
|
this.message = signal.getMessage().toByteArray();
|
|
|
|
this.timestamp = signal.getTimestamp();
|
|
|
|
this.attachments = new LinkedList<PushAttachmentPointer>();
|
|
|
|
|
|
|
|
List<AttachmentPointer> attachmentPointers = signal.getAttachmentsList();
|
|
|
|
|
|
|
|
for (AttachmentPointer pointer : attachmentPointers) {
|
|
|
|
this.attachments.add(new PushAttachmentPointer(pointer.getContentType(), pointer.getKey()));
|
|
|
|
}
|
2013-07-18 17:42:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public IncomingPushMessage(Parcel in) {
|
|
|
|
this.destinations = new LinkedList<String>();
|
|
|
|
this.attachments = new LinkedList<PushAttachmentPointer>();
|
|
|
|
|
|
|
|
this.source = in.readString();
|
|
|
|
in.readStringList(destinations);
|
2013-08-29 17:01:30 -07:00
|
|
|
this.message = new byte[in.readInt()];
|
|
|
|
in.readByteArray(this.message);
|
2013-07-18 17:42:45 -07:00
|
|
|
in.readList(attachments, PushAttachmentPointer.class.getClassLoader());
|
|
|
|
this.timestamp = in.readLong();
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getTimestampMillis() {
|
|
|
|
return timestamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSource() {
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<PushAttachmentPointer> getAttachments() {
|
|
|
|
return attachments;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getMessageText() {
|
2013-08-29 17:01:30 -07:00
|
|
|
if (type == TYPE_MESSAGE_CIPHERTEXT ||
|
|
|
|
type == TYPE_MESSAGE_KEY_EXCHANGE ||
|
|
|
|
type == TYPE_MESSAGE_PREKEY_BUNDLE)
|
|
|
|
{
|
|
|
|
return Base64.encodeBytesWithoutPadding(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new String(message);
|
2013-07-18 17:42:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public List<String> getDestinations() {
|
|
|
|
return destinations;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasAttachments() {
|
|
|
|
return getAttachments() != null && !getAttachments().isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int describeContents() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeToParcel(Parcel dest, int flags) {
|
|
|
|
dest.writeString(source);
|
|
|
|
dest.writeStringList(destinations);
|
2013-08-29 17:01:30 -07:00
|
|
|
dest.writeInt(message.length);
|
|
|
|
dest.writeByteArray(message);
|
2013-07-18 17:42:45 -07:00
|
|
|
dest.writeList(attachments);
|
|
|
|
dest.writeLong(timestamp);
|
|
|
|
}
|
2013-08-21 17:25:19 -07:00
|
|
|
|
|
|
|
public int getType() {
|
|
|
|
return type;
|
|
|
|
}
|
2013-07-18 17:42:45 -07:00
|
|
|
}
|