2013-07-19 00:42:45 +00:00
|
|
|
package org.thoughtcrime.securesms.mms;
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
import org.thoughtcrime.securesms.attachments.Attachment;
|
|
|
|
import org.thoughtcrime.securesms.attachments.PointerAttachment;
|
2015-07-07 00:36:49 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecretUnion;
|
2015-10-13 01:25:05 +00:00
|
|
|
import org.thoughtcrime.securesms.database.MmsAddresses;
|
2014-11-04 23:01:32 +00:00
|
|
|
import org.thoughtcrime.securesms.util.GroupUtil;
|
2016-03-23 17:34:41 +00:00
|
|
|
import org.whispersystems.libsignal.util.guava.Optional;
|
|
|
|
import org.whispersystems.signalservice.api.messages.SignalServiceAttachment;
|
|
|
|
import org.whispersystems.signalservice.api.messages.SignalServiceGroup;
|
2014-11-03 23:16:04 +00:00
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
import java.util.LinkedList;
|
2014-11-03 23:16:04 +00:00
|
|
|
import java.util.List;
|
2013-07-19 00:42:45 +00:00
|
|
|
|
|
|
|
public class IncomingMediaMessage {
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
private final String from;
|
|
|
|
private final String body;
|
|
|
|
private final String groupId;
|
|
|
|
private final boolean push;
|
|
|
|
private final long sentTimeMillis;
|
2016-02-06 00:10:33 +00:00
|
|
|
private final int subscriptionId;
|
2016-08-16 03:23:56 +00:00
|
|
|
private final long expiresIn;
|
|
|
|
private final boolean expirationUpdate;
|
2015-10-13 01:25:05 +00:00
|
|
|
|
|
|
|
private final List<String> to = new LinkedList<>();
|
|
|
|
private final List<String> cc = new LinkedList<>();
|
|
|
|
private final List<Attachment> attachments = new LinkedList<>();
|
2013-07-19 00:42:45 +00:00
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public IncomingMediaMessage(String from, List<String> to, List<String> cc,
|
|
|
|
String body, long sentTimeMillis,
|
2016-08-16 03:23:56 +00:00
|
|
|
List<Attachment> attachments, int subscriptionId,
|
|
|
|
long expiresIn, boolean expirationUpdate)
|
2015-10-13 01:25:05 +00:00
|
|
|
{
|
2016-08-16 03:23:56 +00:00
|
|
|
this.from = from;
|
|
|
|
this.sentTimeMillis = sentTimeMillis;
|
|
|
|
this.body = body;
|
|
|
|
this.groupId = null;
|
|
|
|
this.push = false;
|
|
|
|
this.subscriptionId = subscriptionId;
|
|
|
|
this.expiresIn = expiresIn;
|
|
|
|
this.expirationUpdate = expirationUpdate;
|
2015-10-13 01:25:05 +00:00
|
|
|
|
|
|
|
this.to.addAll(to);
|
|
|
|
this.cc.addAll(cc);
|
|
|
|
this.attachments.addAll(attachments);
|
2013-07-19 00:42:45 +00:00
|
|
|
}
|
|
|
|
|
2015-07-07 00:36:49 +00:00
|
|
|
public IncomingMediaMessage(MasterSecretUnion masterSecret,
|
2014-11-03 23:16:04 +00:00
|
|
|
String from,
|
|
|
|
String to,
|
|
|
|
long sentTimeMillis,
|
2016-02-06 00:10:33 +00:00
|
|
|
int subscriptionId,
|
2016-08-16 03:23:56 +00:00
|
|
|
long expiresIn,
|
|
|
|
boolean expirationUpdate,
|
2014-11-03 23:16:04 +00:00
|
|
|
Optional<String> relay,
|
|
|
|
Optional<String> body,
|
2016-03-23 17:34:41 +00:00
|
|
|
Optional<SignalServiceGroup> group,
|
|
|
|
Optional<List<SignalServiceAttachment>> attachments)
|
2013-07-19 00:42:45 +00:00
|
|
|
{
|
2016-08-16 03:23:56 +00:00
|
|
|
this.push = true;
|
|
|
|
this.from = from;
|
|
|
|
this.sentTimeMillis = sentTimeMillis;
|
|
|
|
this.body = body.orNull();
|
|
|
|
this.subscriptionId = subscriptionId;
|
|
|
|
this.expiresIn = expiresIn;
|
|
|
|
this.expirationUpdate = expirationUpdate;
|
2015-10-13 01:25:05 +00:00
|
|
|
|
|
|
|
if (group.isPresent()) this.groupId = GroupUtil.getEncodedId(group.get().getGroupId());
|
|
|
|
else this.groupId = null;
|
2013-07-19 00:42:45 +00:00
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
this.to.add(to);
|
|
|
|
this.attachments.addAll(PointerAttachment.forPointers(masterSecret, attachments));
|
2013-07-19 00:42:45 +00:00
|
|
|
}
|
|
|
|
|
2016-02-06 00:10:33 +00:00
|
|
|
public int getSubscriptionId() {
|
|
|
|
return subscriptionId;
|
|
|
|
}
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public String getBody() {
|
2013-07-19 00:42:45 +00:00
|
|
|
return body;
|
|
|
|
}
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public MmsAddresses getAddresses() {
|
|
|
|
return new MmsAddresses(from, to, cc, new LinkedList<String>());
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<Attachment> getAttachments() {
|
|
|
|
return attachments;
|
|
|
|
}
|
|
|
|
|
2014-01-14 08:26:43 +00:00
|
|
|
public String getGroupId() {
|
|
|
|
return groupId;
|
|
|
|
}
|
|
|
|
|
2014-02-21 07:00:38 +00:00
|
|
|
public boolean isPushMessage() {
|
|
|
|
return push;
|
|
|
|
}
|
|
|
|
|
2016-08-16 03:23:56 +00:00
|
|
|
public boolean isExpirationUpdate() {
|
|
|
|
return expirationUpdate;
|
|
|
|
}
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public long getSentTimeMillis() {
|
|
|
|
return sentTimeMillis;
|
|
|
|
}
|
|
|
|
|
2016-08-16 03:23:56 +00:00
|
|
|
public long getExpiresIn() {
|
|
|
|
return expiresIn;
|
|
|
|
}
|
|
|
|
|
2013-07-19 00:42:45 +00:00
|
|
|
public boolean isGroupMessage() {
|
2015-10-13 01:25:05 +00:00
|
|
|
return groupId != null || to.size() > 1 || cc.size() > 0;
|
2013-07-19 00:42:45 +00:00
|
|
|
}
|
|
|
|
}
|