mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 11:05:25 +00:00
153 lines
6.0 KiB
Java
153 lines
6.0 KiB
Java
package org.thoughtcrime.securesms.mms;
|
|
|
|
import android.content.ContentUris;
|
|
import android.content.Context;
|
|
import android.content.UriMatcher;
|
|
import android.net.Uri;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
|
|
import org.thoughtcrime.securesms.attachments.Attachment;
|
|
import org.thoughtcrime.securesms.attachments.AttachmentId;
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
import org.thoughtcrime.securesms.providers.BlobProvider;
|
|
import org.thoughtcrime.securesms.providers.DeprecatedPersistentBlobProvider;
|
|
import org.thoughtcrime.securesms.providers.PartProvider;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
|
|
public class PartAuthority {
|
|
|
|
private static final String PART_URI_STRING = "content://network.loki.provider.securesms/part";
|
|
private static final String THUMB_URI_STRING = "content://network.loki.provider.securesms/thumb";
|
|
private static final String STICKER_URI_STRING = "content://network.loki.provider.securesms/sticker";
|
|
private static final Uri PART_CONTENT_URI = Uri.parse(PART_URI_STRING);
|
|
private static final Uri THUMB_CONTENT_URI = Uri.parse(THUMB_URI_STRING);
|
|
private static final Uri STICKER_CONTENT_URI = Uri.parse(STICKER_URI_STRING);
|
|
|
|
private static final int PART_ROW = 1;
|
|
private static final int THUMB_ROW = 2;
|
|
private static final int PERSISTENT_ROW = 3;
|
|
private static final int BLOB_ROW = 4;
|
|
private static final int STICKER_ROW = 5;
|
|
|
|
private static final UriMatcher uriMatcher;
|
|
|
|
static {
|
|
uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
|
|
uriMatcher.addURI("org.thoughtcrime.securesms", "part/*/#", PART_ROW);
|
|
uriMatcher.addURI("org.thoughtcrime.securesms", "thumb/*/#", THUMB_ROW);
|
|
uriMatcher.addURI("org.thoughtcrime.securesms", "sticker/#", STICKER_ROW);
|
|
uriMatcher.addURI(DeprecatedPersistentBlobProvider.AUTHORITY, DeprecatedPersistentBlobProvider.EXPECTED_PATH_OLD, PERSISTENT_ROW);
|
|
uriMatcher.addURI(DeprecatedPersistentBlobProvider.AUTHORITY, DeprecatedPersistentBlobProvider.EXPECTED_PATH_NEW, PERSISTENT_ROW);
|
|
uriMatcher.addURI(BlobProvider.AUTHORITY, BlobProvider.PATH, BLOB_ROW);
|
|
}
|
|
|
|
public static InputStream getAttachmentStream(@NonNull Context context, @NonNull Uri uri)
|
|
throws IOException
|
|
{
|
|
int match = uriMatcher.match(uri);
|
|
try {
|
|
switch (match) {
|
|
case PART_ROW: return DatabaseFactory.getAttachmentDatabase(context).getAttachmentStream(new PartUriParser(uri).getPartId(), 0);
|
|
case THUMB_ROW: return DatabaseFactory.getAttachmentDatabase(context).getThumbnailStream(new PartUriParser(uri).getPartId());
|
|
case STICKER_ROW: return DatabaseFactory.getStickerDatabase(context).getStickerStream(ContentUris.parseId(uri));
|
|
case PERSISTENT_ROW: return DeprecatedPersistentBlobProvider.getInstance(context).getStream(context, ContentUris.parseId(uri));
|
|
case BLOB_ROW: return BlobProvider.getInstance().getStream(context, uri);
|
|
default: return context.getContentResolver().openInputStream(uri);
|
|
}
|
|
} catch (SecurityException se) {
|
|
throw new IOException(se);
|
|
}
|
|
}
|
|
|
|
public static @Nullable String getAttachmentFileName(@NonNull Context context, @NonNull Uri uri) {
|
|
int match = uriMatcher.match(uri);
|
|
|
|
switch (match) {
|
|
case THUMB_ROW:
|
|
case PART_ROW:
|
|
Attachment attachment = DatabaseFactory.getAttachmentDatabase(context).getAttachment(new PartUriParser(uri).getPartId());
|
|
|
|
if (attachment != null) return attachment.getFileName();
|
|
else return null;
|
|
case PERSISTENT_ROW:
|
|
return DeprecatedPersistentBlobProvider.getFileName(context, uri);
|
|
case BLOB_ROW:
|
|
return BlobProvider.getFileName(uri);
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public static @Nullable Long getAttachmentSize(@NonNull Context context, @NonNull Uri uri) {
|
|
int match = uriMatcher.match(uri);
|
|
|
|
switch (match) {
|
|
case THUMB_ROW:
|
|
case PART_ROW:
|
|
Attachment attachment = DatabaseFactory.getAttachmentDatabase(context).getAttachment(new PartUriParser(uri).getPartId());
|
|
|
|
if (attachment != null) return attachment.getSize();
|
|
else return null;
|
|
case PERSISTENT_ROW:
|
|
return DeprecatedPersistentBlobProvider.getFileSize(context, uri);
|
|
case BLOB_ROW:
|
|
return BlobProvider.getFileSize(uri);
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public static @Nullable String getAttachmentContentType(@NonNull Context context, @NonNull Uri uri) {
|
|
int match = uriMatcher.match(uri);
|
|
|
|
switch (match) {
|
|
case THUMB_ROW:
|
|
case PART_ROW:
|
|
Attachment attachment = DatabaseFactory.getAttachmentDatabase(context).getAttachment(new PartUriParser(uri).getPartId());
|
|
|
|
if (attachment != null) return attachment.getContentType();
|
|
else return null;
|
|
case PERSISTENT_ROW:
|
|
return DeprecatedPersistentBlobProvider.getMimeType(context, uri);
|
|
case BLOB_ROW:
|
|
return BlobProvider.getMimeType(uri);
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public static Uri getAttachmentPublicUri(Uri uri) {
|
|
PartUriParser partUri = new PartUriParser(uri);
|
|
return PartProvider.getContentUri(partUri.getPartId());
|
|
}
|
|
|
|
public static Uri getAttachmentDataUri(AttachmentId attachmentId) {
|
|
Uri uri = Uri.withAppendedPath(PART_CONTENT_URI, String.valueOf(attachmentId.getUniqueId()));
|
|
return ContentUris.withAppendedId(uri, attachmentId.getRowId());
|
|
}
|
|
|
|
public static Uri getAttachmentThumbnailUri(AttachmentId attachmentId) {
|
|
Uri uri = Uri.withAppendedPath(THUMB_CONTENT_URI, String.valueOf(attachmentId.getUniqueId()));
|
|
return ContentUris.withAppendedId(uri, attachmentId.getRowId());
|
|
}
|
|
|
|
public static Uri getStickerUri(long id) {
|
|
return ContentUris.withAppendedId(STICKER_CONTENT_URI, id);
|
|
}
|
|
|
|
public static boolean isLocalUri(final @NonNull Uri uri) {
|
|
int match = uriMatcher.match(uri);
|
|
switch (match) {
|
|
case PART_ROW:
|
|
case THUMB_ROW:
|
|
case PERSISTENT_ROW:
|
|
case BLOB_ROW:
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|