mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 18:45:19 +00:00
a4e18c515c
Closes #2647 // FREEBIE
210 lines
6.4 KiB
Java
210 lines
6.4 KiB
Java
package org.thoughtcrime.securesms.sms;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import android.telephony.SmsMessage;
|
|
|
|
import org.thoughtcrime.securesms.util.GroupUtil;
|
|
import org.whispersystems.libaxolotl.util.guava.Optional;
|
|
import org.whispersystems.textsecure.api.messages.TextSecureGroup;
|
|
import org.whispersystems.textsecure.api.push.TextSecureAddress;
|
|
|
|
import java.util.List;
|
|
|
|
public class IncomingTextMessage implements Parcelable {
|
|
|
|
public static final Parcelable.Creator<IncomingTextMessage> CREATOR = new Parcelable.Creator<IncomingTextMessage>() {
|
|
@Override
|
|
public IncomingTextMessage createFromParcel(Parcel in) {
|
|
return new IncomingTextMessage(in);
|
|
}
|
|
|
|
@Override
|
|
public IncomingTextMessage[] newArray(int size) {
|
|
return new IncomingTextMessage[size];
|
|
}
|
|
};
|
|
|
|
private final String message;
|
|
private final String sender;
|
|
private final int senderDeviceId;
|
|
private final int protocol;
|
|
private final String serviceCenterAddress;
|
|
private final boolean replyPathPresent;
|
|
private final String pseudoSubject;
|
|
private final long sentTimestampMillis;
|
|
private final String groupId;
|
|
private final boolean push;
|
|
|
|
public IncomingTextMessage(SmsMessage message) {
|
|
this.message = message.getDisplayMessageBody();
|
|
this.sender = message.getDisplayOriginatingAddress();
|
|
this.senderDeviceId = TextSecureAddress.DEFAULT_DEVICE_ID;
|
|
this.protocol = message.getProtocolIdentifier();
|
|
this.serviceCenterAddress = message.getServiceCenterAddress();
|
|
this.replyPathPresent = message.isReplyPathPresent();
|
|
this.pseudoSubject = message.getPseudoSubject();
|
|
this.sentTimestampMillis = message.getTimestampMillis();
|
|
this.groupId = null;
|
|
this.push = false;
|
|
}
|
|
|
|
public IncomingTextMessage(String sender, int senderDeviceId, long sentTimestampMillis,
|
|
String encodedBody, Optional<TextSecureGroup> group)
|
|
{
|
|
this.message = encodedBody;
|
|
this.sender = sender;
|
|
this.senderDeviceId = senderDeviceId;
|
|
this.protocol = 31337;
|
|
this.serviceCenterAddress = "GCM";
|
|
this.replyPathPresent = true;
|
|
this.pseudoSubject = "";
|
|
this.sentTimestampMillis = sentTimestampMillis;
|
|
this.push = true;
|
|
|
|
if (group.isPresent()) {
|
|
this.groupId = GroupUtil.getEncodedId(group.get().getGroupId());
|
|
} else {
|
|
this.groupId = null;
|
|
}
|
|
}
|
|
|
|
public IncomingTextMessage(Parcel in) {
|
|
this.message = in.readString();
|
|
this.sender = in.readString();
|
|
this.senderDeviceId = in.readInt();
|
|
this.protocol = in.readInt();
|
|
this.serviceCenterAddress = in.readString();
|
|
this.replyPathPresent = (in.readInt() == 1);
|
|
this.pseudoSubject = in.readString();
|
|
this.sentTimestampMillis = in.readLong();
|
|
this.groupId = in.readString();
|
|
this.push = (in.readInt() == 1);
|
|
}
|
|
|
|
public IncomingTextMessage(IncomingTextMessage base, String newBody) {
|
|
this.message = newBody;
|
|
this.sender = base.getSender();
|
|
this.senderDeviceId = base.getSenderDeviceId();
|
|
this.protocol = base.getProtocol();
|
|
this.serviceCenterAddress = base.getServiceCenterAddress();
|
|
this.replyPathPresent = base.isReplyPathPresent();
|
|
this.pseudoSubject = base.getPseudoSubject();
|
|
this.sentTimestampMillis = base.getSentTimestampMillis();
|
|
this.groupId = base.getGroupId();
|
|
this.push = base.isPush();
|
|
}
|
|
|
|
public IncomingTextMessage(List<IncomingTextMessage> fragments) {
|
|
StringBuilder body = new StringBuilder();
|
|
|
|
for (IncomingTextMessage message : fragments) {
|
|
body.append(message.getMessageBody());
|
|
}
|
|
|
|
this.message = body.toString();
|
|
this.sender = fragments.get(0).getSender();
|
|
this.senderDeviceId = fragments.get(0).getSenderDeviceId();
|
|
this.protocol = fragments.get(0).getProtocol();
|
|
this.serviceCenterAddress = fragments.get(0).getServiceCenterAddress();
|
|
this.replyPathPresent = fragments.get(0).isReplyPathPresent();
|
|
this.pseudoSubject = fragments.get(0).getPseudoSubject();
|
|
this.sentTimestampMillis = fragments.get(0).getSentTimestampMillis();
|
|
this.groupId = fragments.get(0).getGroupId();
|
|
this.push = fragments.get(0).isPush();
|
|
}
|
|
|
|
protected IncomingTextMessage(String sender, String groupId)
|
|
{
|
|
this.message = "";
|
|
this.sender = sender;
|
|
this.senderDeviceId = TextSecureAddress.DEFAULT_DEVICE_ID;
|
|
this.protocol = 31338;
|
|
this.serviceCenterAddress = "Outgoing";
|
|
this.replyPathPresent = true;
|
|
this.pseudoSubject = "";
|
|
this.sentTimestampMillis = System.currentTimeMillis();
|
|
this.groupId = groupId;
|
|
this.push = true;
|
|
}
|
|
|
|
public long getSentTimestampMillis() {
|
|
return sentTimestampMillis;
|
|
}
|
|
|
|
public String getPseudoSubject() {
|
|
return pseudoSubject;
|
|
}
|
|
|
|
public String getMessageBody() {
|
|
return message;
|
|
}
|
|
|
|
public IncomingTextMessage withMessageBody(String message) {
|
|
return new IncomingTextMessage(this, message);
|
|
}
|
|
|
|
public String getSender() {
|
|
return sender;
|
|
}
|
|
|
|
public int getSenderDeviceId() {
|
|
return senderDeviceId;
|
|
}
|
|
|
|
public int getProtocol() {
|
|
return protocol;
|
|
}
|
|
|
|
public String getServiceCenterAddress() {
|
|
return serviceCenterAddress;
|
|
}
|
|
|
|
public boolean isReplyPathPresent() {
|
|
return replyPathPresent;
|
|
}
|
|
|
|
public boolean isSecureMessage() {
|
|
return false;
|
|
}
|
|
|
|
public boolean isPreKeyBundle() {
|
|
return false;
|
|
}
|
|
|
|
public boolean isEndSession() {
|
|
return false;
|
|
}
|
|
|
|
public boolean isPush() {
|
|
return push;
|
|
}
|
|
|
|
public String getGroupId() {
|
|
return groupId;
|
|
}
|
|
|
|
public boolean isGroup() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public void writeToParcel(Parcel out, int flags) {
|
|
out.writeString(message);
|
|
out.writeString(sender);
|
|
out.writeInt(senderDeviceId);
|
|
out.writeInt(protocol);
|
|
out.writeString(serviceCenterAddress);
|
|
out.writeInt(replyPathPresent ? 1 : 0);
|
|
out.writeString(pseudoSubject);
|
|
out.writeLong(sentTimestampMillis);
|
|
out.writeString(groupId);
|
|
out.writeInt(push ? 1 : 0);
|
|
}
|
|
}
|