mirror of
https://github.com/etesync/android
synced 2025-06-25 01:18:58 +00:00
Import from file: fix issues with sometimes importing from file.
This commit is contained in:
parent
4fb49cf5f4
commit
b64b95e204
@ -29,16 +29,16 @@ import com.etesync.syncadapter.resource.*
|
|||||||
import com.etesync.syncadapter.syncadapter.ContactsSyncManager
|
import com.etesync.syncadapter.syncadapter.ContactsSyncManager
|
||||||
import com.etesync.syncadapter.ui.Refreshable
|
import com.etesync.syncadapter.ui.Refreshable
|
||||||
import com.etesync.syncadapter.ui.importlocal.ResultFragment.ImportResult
|
import com.etesync.syncadapter.ui.importlocal.ResultFragment.ImportResult
|
||||||
import java.io.File
|
|
||||||
import java.io.FileNotFoundException
|
import java.io.FileNotFoundException
|
||||||
import java.io.FileReader
|
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
|
import java.io.InputStream
|
||||||
|
import java.io.InputStreamReader
|
||||||
|
|
||||||
class ImportFragment : DialogFragment() {
|
class ImportFragment : DialogFragment() {
|
||||||
|
|
||||||
private lateinit var account: Account
|
private lateinit var account: Account
|
||||||
private lateinit var info: CollectionInfo
|
private lateinit var info: CollectionInfo
|
||||||
private var importFile: File? = null
|
private var inputStream: InputStream? = null
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
@ -143,10 +143,10 @@ class ImportFragment : DialogFragment() {
|
|||||||
if (resultCode == Activity.RESULT_OK) {
|
if (resultCode == Activity.RESULT_OK) {
|
||||||
if (data != null) {
|
if (data != null) {
|
||||||
// Get the URI of the selected file
|
// Get the URI of the selected file
|
||||||
val uri = data.data
|
val uri = data.data!!
|
||||||
App.log.info("Importing uri = " + uri!!.toString())
|
App.log.info("Importing uri = ${uri.toString()}")
|
||||||
try {
|
try {
|
||||||
importFile = File(com.etesync.syncadapter.utils.FileUtils.getPath(context!!, uri))
|
inputStream = activity!!.getContentResolver().openInputStream(uri)
|
||||||
|
|
||||||
Thread(ImportCalendarsLoader()).start()
|
Thread(ImportCalendarsLoader()).start()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
@ -210,7 +210,7 @@ class ImportFragment : DialogFragment() {
|
|||||||
val result = ImportResult()
|
val result = ImportResult()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
val importReader = FileReader(importFile!!)
|
val importReader = InputStreamReader(inputStream)
|
||||||
|
|
||||||
if (info.type == CollectionInfo.Type.CALENDAR) {
|
if (info.type == CollectionInfo.Type.CALENDAR) {
|
||||||
val events = Event.fromReader(importReader, null)
|
val events = Event.fromReader(importReader, null)
|
||||||
|
@ -1,146 +0,0 @@
|
|||||||
package com.etesync.syncadapter.utils
|
|
||||||
|
|
||||||
import android.annotation.SuppressLint
|
|
||||||
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
|
|
||||||
|
|
||||||
import java.io.File
|
|
||||||
|
|
||||||
object FileUtils {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
*/
|
|
||||||
@SuppressLint("NewApi")
|
|
||||||
fun getPath(context: Context, uri: Uri?): String? {
|
|
||||||
if (uri == null) {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
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
|
|
||||||
if ("image" == type) {
|
|
||||||
contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI
|
|
||||||
} else if ("video" == type) {
|
|
||||||
contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI
|
|
||||||
} else if ("audio" == type) {
|
|
||||||
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)) {
|
|
||||||
val path = getDataColumn(context, uri, null, null)
|
|
||||||
if (path != null) {
|
|
||||||
val file = File(path)
|
|
||||||
if (!file.canRead()) {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return path
|
|
||||||
} 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.
|
|
||||||
*/
|
|
||||||
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)
|
|
||||||
}
|
|
||||||
} catch (e: Exception) {
|
|
||||||
return null
|
|
||||||
} 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
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user