mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 20:45:17 +00:00
56 lines
1.8 KiB
Java
56 lines
1.8 KiB
Java
|
package org.thoughtcrime.securesms.attachments;
|
||
|
|
||
|
import android.net.Uri;
|
||
|
import android.support.annotation.NonNull;
|
||
|
import android.support.annotation.Nullable;
|
||
|
|
||
|
import org.thoughtcrime.securesms.crypto.MasterSecretUnion;
|
||
|
import org.thoughtcrime.securesms.crypto.MediaKey;
|
||
|
import org.thoughtcrime.securesms.database.AttachmentDatabase;
|
||
|
import org.whispersystems.libaxolotl.util.guava.Optional;
|
||
|
import org.whispersystems.textsecure.api.messages.TextSecureAttachment;
|
||
|
|
||
|
import java.util.LinkedList;
|
||
|
import java.util.List;
|
||
|
|
||
|
public class PointerAttachment extends Attachment {
|
||
|
|
||
|
public PointerAttachment(@NonNull String contentType, int transferState, long size,
|
||
|
@NonNull String location, @NonNull String key, @NonNull String relay)
|
||
|
{
|
||
|
super(contentType, transferState, size, location, key, relay);
|
||
|
}
|
||
|
|
||
|
@Nullable
|
||
|
@Override
|
||
|
public Uri getDataUri() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
@Nullable
|
||
|
@Override
|
||
|
public Uri getThumbnailUri() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
|
||
|
public static List<Attachment> forPointers(@NonNull MasterSecretUnion masterSecret, Optional<List<TextSecureAttachment>> pointers) {
|
||
|
List<Attachment> results = new LinkedList<>();
|
||
|
|
||
|
if (pointers.isPresent()) {
|
||
|
for (TextSecureAttachment pointer : pointers.get()) {
|
||
|
if (pointer.isPointer()) {
|
||
|
String encryptedKey = MediaKey.getEncrypted(masterSecret, pointer.asPointer().getKey());
|
||
|
results.add(new PointerAttachment(pointer.getContentType(),
|
||
|
AttachmentDatabase.TRANSFER_PROGRESS_AUTO_PENDING,
|
||
|
pointer.asPointer().getSize().or(0),
|
||
|
String.valueOf(pointer.asPointer().getId()),
|
||
|
encryptedKey, pointer.asPointer().getRelay().orNull()));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return results;
|
||
|
}
|
||
|
}
|