Skip to content

Commit

Permalink
Fix android "Invalid image selected" issue (#1722)
Browse files Browse the repository at this point in the history
* add log

* add log

* add log

* fix log

* 조회할 수 없는 파일의 경우 파일을 복사하도록 수정

* fix import

* 파일 조회 불가 여부 확인 조건 수정

* revert add log

* fix: import log
  • Loading branch information
zeallat committed Jun 29, 2022
1 parent 1870e4d commit 248331c
Showing 1 changed file with 71 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import android.Manifest;
import android.app.Activity;
import android.content.ClipData;
import android.content.Context;
import android.content.ContentResolver;
import android.content.Intent;
import android.content.pm.PackageManager;
Expand All @@ -15,6 +16,7 @@
import android.os.Environment;
import android.provider.MediaStore;
import android.util.Base64;
import android.util.Log;
import android.webkit.MimeTypeMap;

import androidx.core.app.ActivityCompat;
Expand All @@ -38,16 +40,20 @@
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.UUID;
import java.util.concurrent.Callable;



class PickerModule extends ReactContextBaseJavaModule implements ActivityEventListener {

private static final int IMAGE_PICKER_REQUEST = 61110;
Expand Down Expand Up @@ -582,9 +588,74 @@ private String resolveRealPath(Activity activity, Uri uri, boolean isCamera) thr
}
}

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {

String externalCacheDirPath = Uri.fromFile(activity.getExternalCacheDir()).getPath();
String externalFilesDirPath = Uri.fromFile(activity.getExternalFilesDir(null)).getPath();
String cacheDirPath = Uri.fromFile(activity.getCacheDir()).getPath();
String FilesDirPath = Uri.fromFile(activity.getFilesDir()).getPath();

if (!path.startsWith(externalCacheDirPath)
&& !path.startsWith(externalFilesDirPath)
&& !path.startsWith(cacheDirPath)
&& !path.startsWith(FilesDirPath)) {
File copiedFile = this.createExternalStoragePrivateFile(activity, uri);
path = RealPathUtil.getRealPathFromURI(activity, Uri.fromFile(copiedFile));
}
}

return path;
}

private File createExternalStoragePrivateFile(Context context, Uri uri) throws FileNotFoundException {
InputStream inputStream = context.getContentResolver().openInputStream(uri);

String extension = this.getExtension(context, uri);
File file = new File(context.getExternalCacheDir(), "/temp/" + System.currentTimeMillis() + "." + extension);
File parentFile = file.getParentFile();
if (parentFile != null) {
parentFile.mkdirs();
}

try {
// Very simple code to copy a picture from the application's
// resource into the external file. Note that this code does
// no error checking, and assumes the picture is small (does not
// try to copy it in chunks). Note that if external storage is
// not currently mounted this will silently fail.
OutputStream outputStream = new FileOutputStream(file);
byte[] data = new byte[inputStream.available()];
inputStream.read(data);
outputStream.write(data);
inputStream.close();
outputStream.close();
} catch (IOException e) {
// Unable to create file, likely because external storage is
// not currently mounted.
Log.w("image-crop-picker", "Error writing " + file, e);
}

return file;
}

public String getExtension(Context context, Uri uri) {
String extension;

//Check uri format to avoid null
if (uri.getScheme().equals(ContentResolver.SCHEME_CONTENT)) {
//If scheme is a content
final MimeTypeMap mime = MimeTypeMap.getSingleton();
extension = mime.getExtensionFromMimeType(context.getContentResolver().getType(uri));
} else {
//If scheme is a File
//This will replace white spaces with %20 and also other special characters. This will avoid returning null values on file name with spaces and special characters.
extension = MimeTypeMap.getFileExtensionFromUrl(Uri.fromFile(new File(uri.getPath())).toString());

}

return extension;
}

private BitmapFactory.Options validateImage(String path) throws Exception {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
Expand Down

0 comments on commit 248331c

Please sign in to comment.