375207f073
Eliminate the concept of 'Recipients' (plural). There is now just a 'Recipient', which contains an Address that is either an individual or a group ID. MMS groups now exist as part of the group database, just like push groups. // FREEBIE
113 lines
3.4 KiB
Java
113 lines
3.4 KiB
Java
package org.thoughtcrime.securesms.mms;
|
|
|
|
import org.thoughtcrime.securesms.attachments.Attachment;
|
|
import org.thoughtcrime.securesms.attachments.PointerAttachment;
|
|
import org.thoughtcrime.securesms.crypto.MasterSecretUnion;
|
|
import org.thoughtcrime.securesms.database.Address;
|
|
import org.thoughtcrime.securesms.util.GroupUtil;
|
|
import org.whispersystems.libsignal.util.guava.Optional;
|
|
import org.whispersystems.signalservice.api.messages.SignalServiceAttachment;
|
|
import org.whispersystems.signalservice.api.messages.SignalServiceGroup;
|
|
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
|
|
public class IncomingMediaMessage {
|
|
|
|
private final Address from;
|
|
private final Address groupId;
|
|
private final String body;
|
|
private final boolean push;
|
|
private final long sentTimeMillis;
|
|
private final int subscriptionId;
|
|
private final long expiresIn;
|
|
private final boolean expirationUpdate;
|
|
|
|
private final List<Attachment> attachments = new LinkedList<>();
|
|
|
|
public IncomingMediaMessage(Address from,
|
|
Optional<Address> groupId,
|
|
String body,
|
|
long sentTimeMillis,
|
|
List<Attachment> attachments,
|
|
int subscriptionId,
|
|
long expiresIn,
|
|
boolean expirationUpdate)
|
|
{
|
|
this.from = from;
|
|
this.groupId = groupId.orNull();
|
|
this.sentTimeMillis = sentTimeMillis;
|
|
this.body = body;
|
|
this.push = false;
|
|
this.subscriptionId = subscriptionId;
|
|
this.expiresIn = expiresIn;
|
|
this.expirationUpdate = expirationUpdate;
|
|
|
|
this.attachments.addAll(attachments);
|
|
}
|
|
|
|
public IncomingMediaMessage(MasterSecretUnion masterSecret,
|
|
Address from,
|
|
long sentTimeMillis,
|
|
int subscriptionId,
|
|
long expiresIn,
|
|
boolean expirationUpdate,
|
|
Optional<String> relay,
|
|
Optional<String> body,
|
|
Optional<SignalServiceGroup> group,
|
|
Optional<List<SignalServiceAttachment>> attachments)
|
|
{
|
|
this.push = true;
|
|
this.from = from;
|
|
this.sentTimeMillis = sentTimeMillis;
|
|
this.body = body.orNull();
|
|
this.subscriptionId = subscriptionId;
|
|
this.expiresIn = expiresIn;
|
|
this.expirationUpdate = expirationUpdate;
|
|
|
|
if (group.isPresent()) this.groupId = Address.fromSerialized(GroupUtil.getEncodedId(group.get().getGroupId(), false));
|
|
else this.groupId = null;
|
|
|
|
this.attachments.addAll(PointerAttachment.forPointers(masterSecret, attachments));
|
|
}
|
|
|
|
public int getSubscriptionId() {
|
|
return subscriptionId;
|
|
}
|
|
|
|
public String getBody() {
|
|
return body;
|
|
}
|
|
|
|
public List<Attachment> getAttachments() {
|
|
return attachments;
|
|
}
|
|
|
|
public Address getFrom() {
|
|
return from;
|
|
}
|
|
|
|
public Address getGroupId() {
|
|
return groupId;
|
|
}
|
|
|
|
public boolean isPushMessage() {
|
|
return push;
|
|
}
|
|
|
|
public boolean isExpirationUpdate() {
|
|
return expirationUpdate;
|
|
}
|
|
|
|
public long getSentTimeMillis() {
|
|
return sentTimeMillis;
|
|
}
|
|
|
|
public long getExpiresIn() {
|
|
return expiresIn;
|
|
}
|
|
|
|
public boolean isGroupMessage() {
|
|
return groupId != null;
|
|
}
|
|
}
|