session-android/app/src/main/java/org/thoughtcrime/securesms/database/model/MediaMmsMessageRecord.java

92 lines
3.9 KiB
Java
Raw Normal View History

/**
* Copyright (C) 2012 Moxie Marlinspike
*
2011-12-20 19:20:44 +01:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
2011-12-20 19:20:44 +01:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.thoughtcrime.securesms.database.model;
2011-12-20 19:20:44 +01:00
import android.content.Context;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import android.text.SpannableString;
2011-12-20 19:20:44 +01:00
2019-07-24 04:30:23 +02:00
import network.loki.messenger.R;
2021-02-02 05:40:43 +01:00
import org.session.libsession.messaging.sending_receiving.sharecontacts.Contact;
2021-04-26 03:23:09 +02:00
import org.session.libsession.messaging.sending_receiving.link_preview.LinkPreview;
import org.thoughtcrime.securesms.database.MmsDatabase;
import org.thoughtcrime.securesms.database.SmsDatabase.Status;
2021-03-02 02:24:09 +01:00
import org.session.libsession.database.documents.IdentityKeyMismatch;
import org.session.libsession.database.documents.NetworkFailure;
2011-12-20 19:20:44 +01:00
import org.thoughtcrime.securesms.mms.SlideDeck;
2021-01-13 07:11:30 +01:00
import org.session.libsession.messaging.threads.recipients.Recipient;
2011-12-20 19:20:44 +01:00
import java.util.List;
2014-08-12 21:11:23 +02:00
/**
* Represents the message record model for MMS messages that contain
* media (ie: they've been downloaded).
*
* @author Moxie Marlinspike
*
*/
public class MediaMmsMessageRecord extends MmsMessageRecord {
2014-08-12 21:11:23 +02:00
private final static String TAG = MediaMmsMessageRecord.class.getSimpleName();
2011-12-20 19:20:44 +01:00
private final int partCount;
public MediaMmsMessageRecord(long id, Recipient conversationRecipient,
Recipient individualRecipient, int recipientDeviceId,
2017-09-16 07:38:53 +02:00
long dateSent, long dateReceived, int deliveryReceiptCount,
2018-02-02 03:29:09 +01:00
long threadId, String body,
@NonNull SlideDeck slideDeck,
int partCount, long mailbox,
List<IdentityKeyMismatch> mismatches,
List<NetworkFailure> failures, int subscriptionId,
2018-02-07 23:01:37 +01:00
long expiresIn, long expireStarted, int readReceiptCount,
@Nullable Quote quote, @NonNull List<Contact> contacts,
@NonNull List<LinkPreview> linkPreviews, boolean unidentified)
{
super(id, body, conversationRecipient, individualRecipient, recipientDeviceId, dateSent,
2017-09-16 07:38:53 +02:00
dateReceived, threadId, Status.STATUS_NONE, deliveryReceiptCount, mailbox, mismatches, failures,
2019-01-15 09:41:05 +01:00
subscriptionId, expiresIn, expireStarted, slideDeck, readReceiptCount, quote, contacts,
linkPreviews, unidentified);
this.partCount = partCount;
}
2014-08-12 21:11:23 +02:00
public int getPartCount() {
return partCount;
}
@Override
public boolean isMmsNotification() {
return false;
}
@Override
public SpannableString getDisplayBody(@NonNull Context context) {
2018-01-31 02:45:12 +01:00
if (MmsDatabase.Types.isFailedDecryptType(type)) {
return emphasisAdded(context.getString(R.string.MmsMessageRecord_bad_encrypted_mms_message));
2014-03-19 20:37:46 +01:00
} else if (MmsDatabase.Types.isDuplicateMessageType(type)) {
return emphasisAdded(context.getString(R.string.SmsMessageRecord_duplicate_message));
} else if (MmsDatabase.Types.isNoRemoteSessionType(type)) {
return emphasisAdded(context.getString(R.string.MmsMessageRecord_mms_message_encrypted_for_non_existing_session));
} else if (isLegacyMessage()) {
return emphasisAdded(context.getString(R.string.MessageRecord_message_encrypted_with_a_legacy_protocol_version_that_is_no_longer_supported));
2011-12-20 19:20:44 +01:00
}
return super.getDisplayBody(context);
2011-12-20 19:20:44 +01:00
}
}