2014-02-19 21:06:54 -08:00
|
|
|
package org.thoughtcrime.securesms.mms;
|
|
|
|
|
|
|
|
import android.content.Context;
|
2014-11-12 11:15:05 -08:00
|
|
|
import android.text.TextUtils;
|
2014-02-19 21:06:54 -08:00
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
|
|
|
|
|
|
|
import ws.com.google.android.mms.pdu.PduBody;
|
|
|
|
|
|
|
|
public class OutgoingMediaMessage {
|
|
|
|
|
|
|
|
private final Recipients recipients;
|
|
|
|
protected final PduBody body;
|
|
|
|
private final int distributionType;
|
|
|
|
|
|
|
|
public OutgoingMediaMessage(Context context, Recipients recipients, PduBody body,
|
|
|
|
String message, int distributionType)
|
|
|
|
{
|
|
|
|
this.recipients = recipients;
|
|
|
|
this.body = body;
|
|
|
|
this.distributionType = distributionType;
|
|
|
|
|
2014-11-12 11:15:05 -08:00
|
|
|
if (!TextUtils.isEmpty(message)) {
|
2014-02-19 21:06:54 -08:00
|
|
|
this.body.addPart(new TextSlide(context, message).getPart());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public OutgoingMediaMessage(Context context, Recipients recipients, SlideDeck slideDeck,
|
|
|
|
String message, int distributionType)
|
|
|
|
{
|
|
|
|
this(context, recipients, slideDeck.toPduBody(), message, distributionType);
|
|
|
|
}
|
|
|
|
|
|
|
|
public OutgoingMediaMessage(OutgoingMediaMessage that) {
|
|
|
|
this.recipients = that.getRecipients();
|
|
|
|
this.body = that.body;
|
|
|
|
this.distributionType = that.distributionType;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Recipients getRecipients() {
|
|
|
|
return recipients;
|
|
|
|
}
|
|
|
|
|
|
|
|
public PduBody getPduBody() {
|
|
|
|
return body;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getDistributionType() {
|
|
|
|
return distributionType;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isSecure() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isGroup() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|