forked from KasemJaffer/receive_sharing_intent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Return absolute path for images instead of a reference that can be us…
…ed directly with File.dart
- Loading branch information
1 parent
4251d8a
commit 1ed8860
Showing
8 changed files
with
231 additions
and
63 deletions.
There are no files selected for viewing
128 changes: 128 additions & 0 deletions
128
android/src/main/kotlin/com/kasem/receive_sharing_intent/FileDirectory.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
package com.kasem.receive_sharing_intent | ||
|
||
import android.content.ContentUris | ||
import android.content.Context | ||
import android.database.Cursor | ||
import android.net.Uri | ||
import android.os.Build | ||
import android.os.Environment | ||
import android.provider.DocumentsContract | ||
import android.provider.MediaStore | ||
|
||
|
||
object FileDirectory { | ||
|
||
/** | ||
* Get a file path from a Uri. This will get the the path for Storage Access | ||
* Framework Documents, as well as the _data field for the MediaStore and | ||
* other file-based ContentProviders. | ||
* | ||
* @param context The context. | ||
* @param uri The Uri to query. | ||
* @author paulburke | ||
*/ | ||
fun getAbsolutePath(context: Context, uri: Uri): String? { | ||
|
||
val isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT | ||
|
||
// DocumentProvider | ||
if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) { | ||
// ExternalStorageProvider | ||
if (isExternalStorageDocument(uri)) { | ||
val docId = DocumentsContract.getDocumentId(uri) | ||
val split = docId.split(":".toRegex()).dropLastWhile { it.isEmpty() }.toTypedArray() | ||
val type = split[0] | ||
|
||
if ("primary".equals(type, ignoreCase = true)) { | ||
return Environment.getExternalStorageDirectory().toString() + "/" + split[1] | ||
} | ||
|
||
// TODO handle non-primary volumes | ||
} else if (isDownloadsDocument(uri)) { | ||
|
||
val id = DocumentsContract.getDocumentId(uri) | ||
val contentUri = ContentUris.withAppendedId( | ||
Uri.parse("content://downloads/public_downloads"), java.lang.Long.valueOf(id)) | ||
|
||
return getDataColumn(context, contentUri, null, null) | ||
} else if (isMediaDocument(uri)) { | ||
val docId = DocumentsContract.getDocumentId(uri) | ||
val split = docId.split(":".toRegex()).dropLastWhile { it.isEmpty() }.toTypedArray() | ||
val type = split[0] | ||
|
||
var contentUri: Uri? = null | ||
when (type) { | ||
"image" -> contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI | ||
"video" -> contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI | ||
"audio" -> contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI | ||
} | ||
|
||
val selection = "_id=?" | ||
val selectionArgs = arrayOf(split[1]) | ||
return getDataColumn(context, contentUri, selection, selectionArgs) | ||
}// MediaProvider | ||
// DownloadsProvider | ||
} else if ("content".equals(uri.scheme!!, ignoreCase = true)) { | ||
return getDataColumn(context, uri, null, null) | ||
} else if ("file".equals(uri.scheme!!, ignoreCase = true)) { | ||
return uri.path | ||
}// File | ||
// MediaStore (and general) | ||
|
||
return null | ||
} | ||
|
||
/** | ||
* Get the value of the data column for this Uri. This is useful for | ||
* MediaStore Uris, and other file-based ContentProviders. | ||
* | ||
* @param context The context. | ||
* @param uri The Uri to query. | ||
* @param selection (Optional) Filter used in the query. | ||
* @param selectionArgs (Optional) Selection arguments used in the query. | ||
* @return The value of the _data column, which is typically a file path. | ||
*/ | ||
private fun getDataColumn(context: Context, uri: Uri?, selection: String?, | ||
selectionArgs: Array<String>?): String? { | ||
|
||
var cursor: Cursor? = null | ||
val column = "_data" | ||
val projection = arrayOf(column) | ||
|
||
try { | ||
cursor = context.contentResolver.query(uri!!, projection, selection, selectionArgs, null) | ||
if (cursor != null && cursor.moveToFirst()) { | ||
val column_index = cursor.getColumnIndexOrThrow(column) | ||
return cursor.getString(column_index) | ||
} | ||
} finally { | ||
cursor?.close() | ||
} | ||
return null | ||
} | ||
|
||
|
||
/** | ||
* @param uri The Uri to check. | ||
* @return Whether the Uri authority is ExternalStorageProvider. | ||
*/ | ||
fun isExternalStorageDocument(uri: Uri): Boolean { | ||
return "com.android.externalstorage.documents" == uri.authority | ||
} | ||
|
||
/** | ||
* @param uri The Uri to check. | ||
* @return Whether the Uri authority is DownloadsProvider. | ||
*/ | ||
fun isDownloadsDocument(uri: Uri): Boolean { | ||
return "com.android.providers.downloads.documents" == uri.authority | ||
} | ||
|
||
/** | ||
* @param uri The Uri to check. | ||
* @return Whether the Uri authority is MediaProvider. | ||
*/ | ||
fun isMediaDocument(uri: Uri): Boolean { | ||
return "com.android.providers.media.documents" == uri.authority | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.