2014-12-12 09:03:24 +00:00
|
|
|
package org.thoughtcrime.securesms.mms;
|
|
|
|
|
|
|
|
import android.content.ContentUris;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.UriMatcher;
|
|
|
|
import android.net.Uri;
|
2015-10-13 01:25:05 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2017-05-10 22:21:52 +00:00
|
|
|
import android.support.annotation.Nullable;
|
2014-12-12 09:03:24 +00:00
|
|
|
|
2017-05-10 22:21:52 +00:00
|
|
|
import org.thoughtcrime.securesms.attachments.Attachment;
|
2015-10-13 01:25:05 +00:00
|
|
|
import org.thoughtcrime.securesms.attachments.AttachmentId;
|
2014-12-12 09:03:24 +00:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
2015-10-15 21:40:45 +00:00
|
|
|
import org.thoughtcrime.securesms.providers.PersistentBlobProvider;
|
2014-12-12 09:03:24 +00:00
|
|
|
import org.thoughtcrime.securesms.providers.PartProvider;
|
2018-09-24 18:47:51 +00:00
|
|
|
import org.thoughtcrime.securesms.providers.MemoryBlobProvider;
|
2014-12-12 09:03:24 +00:00
|
|
|
|
2014-12-30 09:36:51 +00:00
|
|
|
import java.io.IOException;
|
2014-12-12 09:03:24 +00:00
|
|
|
import java.io.InputStream;
|
|
|
|
|
|
|
|
public class PartAuthority {
|
|
|
|
|
2015-03-31 22:44:41 +00:00
|
|
|
private static final String PART_URI_STRING = "content://org.thoughtcrime.securesms/part";
|
|
|
|
private static final String THUMB_URI_STRING = "content://org.thoughtcrime.securesms/thumb";
|
2015-05-18 15:16:06 +00:00
|
|
|
private static final Uri PART_CONTENT_URI = Uri.parse(PART_URI_STRING);
|
|
|
|
private static final Uri THUMB_CONTENT_URI = Uri.parse(THUMB_URI_STRING);
|
2014-12-12 09:03:24 +00:00
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
private static final int PART_ROW = 1;
|
|
|
|
private static final int THUMB_ROW = 2;
|
2015-10-15 21:40:45 +00:00
|
|
|
private static final int PERSISTENT_ROW = 3;
|
2015-10-13 01:25:05 +00:00
|
|
|
private static final int SINGLE_USE_ROW = 4;
|
2014-12-12 09:03:24 +00:00
|
|
|
|
|
|
|
private static final UriMatcher uriMatcher;
|
|
|
|
|
|
|
|
static {
|
|
|
|
uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
|
2015-05-18 15:16:06 +00:00
|
|
|
uriMatcher.addURI("org.thoughtcrime.securesms", "part/*/#", PART_ROW);
|
|
|
|
uriMatcher.addURI("org.thoughtcrime.securesms", "thumb/*/#", THUMB_ROW);
|
2017-05-10 22:21:52 +00:00
|
|
|
uriMatcher.addURI(PersistentBlobProvider.AUTHORITY, PersistentBlobProvider.EXPECTED_PATH_OLD, PERSISTENT_ROW);
|
|
|
|
uriMatcher.addURI(PersistentBlobProvider.AUTHORITY, PersistentBlobProvider.EXPECTED_PATH_NEW, PERSISTENT_ROW);
|
2018-09-24 18:47:51 +00:00
|
|
|
uriMatcher.addURI(MemoryBlobProvider.AUTHORITY, MemoryBlobProvider.PATH, SINGLE_USE_ROW);
|
2014-12-12 09:03:24 +00:00
|
|
|
}
|
|
|
|
|
2018-01-25 03:17:44 +00:00
|
|
|
public static InputStream getAttachmentStream(@NonNull Context context, @NonNull Uri uri)
|
2014-12-30 09:36:51 +00:00
|
|
|
throws IOException
|
2014-12-12 09:03:24 +00:00
|
|
|
{
|
2015-06-08 18:07:46 +00:00
|
|
|
int match = uriMatcher.match(uri);
|
2015-01-13 19:47:32 +00:00
|
|
|
try {
|
|
|
|
switch (match) {
|
2018-02-24 19:09:26 +00:00
|
|
|
case PART_ROW: return DatabaseFactory.getAttachmentDatabase(context).getAttachmentStream(new PartUriParser(uri).getPartId(), 0);
|
2018-01-25 03:17:44 +00:00
|
|
|
case THUMB_ROW: return DatabaseFactory.getAttachmentDatabase(context).getThumbnailStream(new PartUriParser(uri).getPartId());
|
|
|
|
case PERSISTENT_ROW: return PersistentBlobProvider.getInstance(context).getStream(context, ContentUris.parseId(uri));
|
2018-09-24 18:47:51 +00:00
|
|
|
case SINGLE_USE_ROW: return MemoryBlobProvider.getInstance().getStream(ContentUris.parseId(uri));
|
2017-05-10 22:21:52 +00:00
|
|
|
default: return context.getContentResolver().openInputStream(uri);
|
|
|
|
}
|
|
|
|
} catch (SecurityException se) {
|
|
|
|
throw new IOException(se);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-25 03:17:44 +00:00
|
|
|
public static @Nullable String getAttachmentFileName(@NonNull Context context, @NonNull Uri uri) {
|
2017-05-10 22:21:52 +00:00
|
|
|
int match = uriMatcher.match(uri);
|
|
|
|
|
|
|
|
switch (match) {
|
|
|
|
case THUMB_ROW:
|
|
|
|
case PART_ROW:
|
2018-01-25 03:17:44 +00:00
|
|
|
Attachment attachment = DatabaseFactory.getAttachmentDatabase(context).getAttachment(new PartUriParser(uri).getPartId());
|
2017-05-10 22:21:52 +00:00
|
|
|
|
|
|
|
if (attachment != null) return attachment.getFileName();
|
|
|
|
else return null;
|
|
|
|
case PERSISTENT_ROW:
|
2018-01-25 03:17:44 +00:00
|
|
|
return PersistentBlobProvider.getFileName(context, uri);
|
2017-05-10 22:21:52 +00:00
|
|
|
case SINGLE_USE_ROW:
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-25 03:17:44 +00:00
|
|
|
public static @Nullable Long getAttachmentSize(@NonNull Context context, @NonNull Uri uri) {
|
2017-05-10 22:21:52 +00:00
|
|
|
int match = uriMatcher.match(uri);
|
|
|
|
|
|
|
|
switch (match) {
|
|
|
|
case THUMB_ROW:
|
2015-05-18 15:16:06 +00:00
|
|
|
case PART_ROW:
|
2018-01-25 03:17:44 +00:00
|
|
|
Attachment attachment = DatabaseFactory.getAttachmentDatabase(context).getAttachment(new PartUriParser(uri).getPartId());
|
2017-05-10 22:21:52 +00:00
|
|
|
|
|
|
|
if (attachment != null) return attachment.getSize();
|
|
|
|
else return null;
|
|
|
|
case PERSISTENT_ROW:
|
|
|
|
return PersistentBlobProvider.getFileSize(context, uri);
|
|
|
|
case SINGLE_USE_ROW:
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-25 03:17:44 +00:00
|
|
|
public static @Nullable String getAttachmentContentType(@NonNull Context context, @NonNull Uri uri) {
|
2017-05-10 22:21:52 +00:00
|
|
|
int match = uriMatcher.match(uri);
|
|
|
|
|
|
|
|
switch (match) {
|
2015-05-18 15:16:06 +00:00
|
|
|
case THUMB_ROW:
|
2017-05-10 22:21:52 +00:00
|
|
|
case PART_ROW:
|
2018-01-25 03:17:44 +00:00
|
|
|
Attachment attachment = DatabaseFactory.getAttachmentDatabase(context).getAttachment(new PartUriParser(uri).getPartId());
|
2017-05-10 22:21:52 +00:00
|
|
|
|
|
|
|
if (attachment != null) return attachment.getContentType();
|
|
|
|
else return null;
|
2015-10-15 21:40:45 +00:00
|
|
|
case PERSISTENT_ROW:
|
2017-05-10 22:21:52 +00:00
|
|
|
return PersistentBlobProvider.getMimeType(context, uri);
|
2015-10-13 01:25:05 +00:00
|
|
|
case SINGLE_USE_ROW:
|
2015-05-18 15:16:06 +00:00
|
|
|
default:
|
2017-05-10 22:21:52 +00:00
|
|
|
return null;
|
2014-12-12 09:03:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public static Uri getAttachmentPublicUri(Uri uri) {
|
2015-05-21 18:55:03 +00:00
|
|
|
PartUriParser partUri = new PartUriParser(uri);
|
|
|
|
return PartProvider.getContentUri(partUri.getPartId());
|
2014-12-12 09:03:24 +00:00
|
|
|
}
|
2015-03-31 22:44:41 +00:00
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public static Uri getAttachmentDataUri(AttachmentId attachmentId) {
|
|
|
|
Uri uri = Uri.withAppendedPath(PART_CONTENT_URI, String.valueOf(attachmentId.getUniqueId()));
|
|
|
|
return ContentUris.withAppendedId(uri, attachmentId.getRowId());
|
2015-05-18 15:16:06 +00:00
|
|
|
}
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public static Uri getAttachmentThumbnailUri(AttachmentId attachmentId) {
|
|
|
|
Uri uri = Uri.withAppendedPath(THUMB_CONTENT_URI, String.valueOf(attachmentId.getUniqueId()));
|
|
|
|
return ContentUris.withAppendedId(uri, attachmentId.getRowId());
|
2015-03-31 22:44:41 +00:00
|
|
|
}
|
2015-11-18 20:54:40 +00:00
|
|
|
|
|
|
|
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 SINGLE_USE_ROW:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-12-12 09:03:24 +00:00
|
|
|
}
|