mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-22 14:47:29 +00:00
No more scanning
This commit is contained in:
parent
94b6e778bd
commit
ef847321dc
@ -22,7 +22,6 @@ import androidx.documentfile.provider.DocumentFile;
|
||||
|
||||
import com.google.common.util.concurrent.ListenableFuture;
|
||||
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
import java.io.OutputStream;
|
||||
import java.text.SimpleDateFormat;
|
||||
@ -115,7 +114,7 @@ public class CameraActivity extends BaseLanguageActivity {
|
||||
binding.cameraCaptureButton.setOnClickListener(v -> {
|
||||
try {
|
||||
takePhoto();
|
||||
} catch (FileNotFoundException e) {
|
||||
} catch (IOException e) {
|
||||
Log.e(TAG, "updateUi: ", e);
|
||||
}
|
||||
});
|
||||
@ -205,14 +204,19 @@ public class CameraActivity extends BaseLanguageActivity {
|
||||
preview.setSurfaceProvider(binding.viewFinder.getSurfaceProvider());
|
||||
}
|
||||
|
||||
private void takePhoto() throws FileNotFoundException {
|
||||
private void takePhoto() throws IOException {
|
||||
if (imageCapture == null) return;
|
||||
final String extension = "jpg";
|
||||
final String fileName = SIMPLE_DATE_FORMAT.format(System.currentTimeMillis()) + "." + extension;
|
||||
// final File photoFile = new File(outputDirectory, fileName);
|
||||
final String mimeType = Utils.mimeTypeMap.getMimeTypeFromExtension(extension);
|
||||
final String mimeType = "image/jpg";
|
||||
final DocumentFile photoFile = outputDirectory.createFile(mimeType, fileName);
|
||||
if (photoFile == null) {
|
||||
Log.e(TAG, "takePhoto: photoFile is null!");
|
||||
return;
|
||||
}
|
||||
final OutputStream outputStream = getContentResolver().openOutputStream(photoFile.getUri());
|
||||
if (outputStream == null) return;
|
||||
final ImageCapture.OutputFileOptions outputFileOptions = new ImageCapture.OutputFileOptions.Builder(outputStream).build();
|
||||
imageCapture.takePicture(
|
||||
outputFileOptions,
|
||||
@ -220,29 +224,18 @@ public class CameraActivity extends BaseLanguageActivity {
|
||||
new ImageCapture.OnImageSavedCallback() {
|
||||
@Override
|
||||
public void onImageSaved(@NonNull final ImageCapture.OutputFileResults outputFileResults) {
|
||||
if (outputStream != null) {
|
||||
try { outputStream.close(); } catch (IOException ignored) {}
|
||||
}
|
||||
// final Uri uri = Uri.fromFile(photoFile);
|
||||
// final String mimeType = MimeTypeMap.getSingleton()
|
||||
// .getMimeTypeFromExtension(Files.getFileExtension(photoFile.getName()));
|
||||
sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, photoFile.getUri()));
|
||||
Utils.scanDocumentFile(CameraActivity.this, photoFile, (path, uri1) -> {
|
||||
Log.d(TAG, "onImageSaved: scan complete");
|
||||
final Intent intent = new Intent();
|
||||
intent.setData(uri1);
|
||||
setResult(Activity.RESULT_OK, intent);
|
||||
finish();
|
||||
});
|
||||
try { outputStream.close(); } catch (IOException ignored) {}
|
||||
final Intent intent = new Intent();
|
||||
intent.setData(photoFile.getUri());
|
||||
setResult(Activity.RESULT_OK, intent);
|
||||
finish();
|
||||
Log.d(TAG, "onImageSaved: " + photoFile.getUri());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(@NonNull final ImageCaptureException exception) {
|
||||
Log.e(TAG, "onError: ", exception);
|
||||
if (outputStream != null) {
|
||||
try { outputStream.close(); } catch (IOException ignored) {}
|
||||
}
|
||||
try { outputStream.close(); } catch (IOException ignored) {}
|
||||
}
|
||||
}
|
||||
);
|
||||
|
@ -34,7 +34,6 @@ import com.yalantis.ucrop.UCropActivity;
|
||||
import com.yalantis.ucrop.UCropFragment;
|
||||
import com.yalantis.ucrop.UCropFragmentCallback;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.List;
|
||||
|
||||
import awais.instagrabber.R;
|
||||
@ -42,7 +41,6 @@ import awais.instagrabber.databinding.FragmentImageEditBinding;
|
||||
import awais.instagrabber.fragments.imageedit.filters.filters.Filter;
|
||||
import awais.instagrabber.models.SavedImageEditState;
|
||||
import awais.instagrabber.utils.AppExecutors;
|
||||
import awais.instagrabber.utils.Utils;
|
||||
import awais.instagrabber.viewmodels.ImageEditViewModel;
|
||||
|
||||
public class ImageEditFragment extends Fragment {
|
||||
@ -183,11 +181,12 @@ public class ImageEditFragment extends Fragment {
|
||||
if (context == null) return;
|
||||
final Uri resultUri = viewModel.getResultUri().getValue();
|
||||
if (resultUri == null) return;
|
||||
Utils.mediaScanFile(context, new File(resultUri.toString()), (path, uri) -> AppExecutors.getInstance().mainThread().execute(() -> {
|
||||
AppExecutors.getInstance().mainThread().execute(() -> {
|
||||
final NavController navController = NavHostFragment.findNavController(this);
|
||||
setNavControllerResult(navController, resultUri);
|
||||
navController.navigateUp();
|
||||
}));
|
||||
});
|
||||
// Utils.mediaScanFile(context, new File(resultUri.toString()), (path, uri) -> );
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -32,9 +32,7 @@ public final class MediaUtils {
|
||||
AppExecutors.getInstance().tasksThread().submit(() -> {
|
||||
try (Cursor cursor = MediaStore.Video.query(contentResolver, uri, PROJECTION_VIDEO)) {
|
||||
if (cursor == null) {
|
||||
if (listener != null) {
|
||||
listener.onLoad(null);
|
||||
}
|
||||
listener.onLoad(null);
|
||||
return;
|
||||
}
|
||||
int durationColumn = cursor.getColumnIndex(MediaStore.Video.Media.DURATION);
|
||||
@ -42,24 +40,16 @@ public final class MediaUtils {
|
||||
int heightColumn = cursor.getColumnIndex(MediaStore.Video.Media.HEIGHT);
|
||||
int sizeColumn = cursor.getColumnIndex(MediaStore.Video.Media.SIZE);
|
||||
if (cursor.moveToNext()) {
|
||||
if (listener != null) {
|
||||
listener.onLoad(new VideoInfo(
|
||||
cursor.getLong(durationColumn),
|
||||
cursor.getInt(widthColumn),
|
||||
cursor.getInt(heightColumn),
|
||||
cursor.getLong(sizeColumn)
|
||||
));
|
||||
}
|
||||
listener.onLoad(new VideoInfo(
|
||||
cursor.getLong(durationColumn),
|
||||
cursor.getInt(widthColumn),
|
||||
cursor.getInt(heightColumn),
|
||||
cursor.getLong(sizeColumn)
|
||||
));
|
||||
}
|
||||
} catch (Exception e) {
|
||||
Log.e(TAG, "getVideoInfo: ", e);
|
||||
if (listener != null) {
|
||||
listener.onFailure(e);
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (listener != null) {
|
||||
listener.onLoad(null);
|
||||
listener.onFailure(e);
|
||||
}
|
||||
});
|
||||
}
|
||||
@ -69,23 +59,24 @@ public final class MediaUtils {
|
||||
@NonNull final OnInfoLoadListener<VideoInfo> listener) {
|
||||
AppExecutors.getInstance().tasksThread().submit(() -> {
|
||||
try (ParcelFileDescriptor parcelFileDescriptor = contentResolver.openFileDescriptor(uri, "r")) {
|
||||
if (parcelFileDescriptor == null) {
|
||||
listener.onLoad(null);
|
||||
return;
|
||||
}
|
||||
final FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
|
||||
final MediaMetadataRetriever mediaMetadataRetriever = new MediaMetadataRetriever();
|
||||
mediaMetadataRetriever.setDataSource(fileDescriptor);
|
||||
final String duration = mediaMetadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION);
|
||||
if (listener != null) {
|
||||
listener.onLoad(new VideoInfo(
|
||||
Long.parseLong(duration),
|
||||
0,
|
||||
0,
|
||||
0
|
||||
));
|
||||
}
|
||||
String duration = mediaMetadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION);
|
||||
if (TextUtils.isEmpty(duration)) duration = "0";
|
||||
listener.onLoad(new VideoInfo(
|
||||
Long.parseLong(duration),
|
||||
0,
|
||||
0,
|
||||
0
|
||||
));
|
||||
} catch (Exception e) {
|
||||
Log.e(TAG, "getVoiceInfo: ", e);
|
||||
if (listener != null) {
|
||||
listener.onFailure(e);
|
||||
}
|
||||
listener.onFailure(e);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -12,8 +12,6 @@ import android.content.res.TypedArray;
|
||||
import android.graphics.Color;
|
||||
import android.graphics.Rect;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.media.MediaScannerConnection;
|
||||
import android.media.MediaScannerConnection.OnScanCompletedListener;
|
||||
import android.net.Uri;
|
||||
import android.os.Build;
|
||||
import android.os.Environment;
|
||||
@ -36,7 +34,6 @@ import android.widget.Toast;
|
||||
import androidx.annotation.DrawableRes;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.annotation.RequiresApi;
|
||||
import androidx.appcompat.app.ActionBar;
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.core.content.ContextCompat;
|
||||
@ -48,7 +45,6 @@ import com.google.android.exoplayer2.upstream.cache.LeastRecentlyUsedCacheEvicto
|
||||
import com.google.android.exoplayer2.upstream.cache.SimpleCache;
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.google.common.collect.Ordering;
|
||||
import com.google.common.io.Files;
|
||||
|
||||
import org.json.JSONObject;
|
||||
|
||||
@ -340,18 +336,18 @@ public final class Utils {
|
||||
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
|
||||
}
|
||||
|
||||
public static void mediaScanFile(@NonNull final Context context,
|
||||
@NonNull File file,
|
||||
@NonNull final OnScanCompletedListener callback) {
|
||||
//noinspection UnstableApiUsage
|
||||
final String mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(Files.getFileExtension(file.getName()));
|
||||
MediaScannerConnection.scanFile(
|
||||
context,
|
||||
new String[]{file.getAbsolutePath()},
|
||||
new String[]{mimeType},
|
||||
callback
|
||||
);
|
||||
}
|
||||
// public static void mediaScanFile(@NonNull final Context context,
|
||||
// @NonNull File file,
|
||||
// @NonNull final OnScanCompletedListener callback) {
|
||||
// //noinspection UnstableApiUsage
|
||||
// final String mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(Files.getFileExtension(file.getName()));
|
||||
// MediaScannerConnection.scanFile(
|
||||
// context,
|
||||
// new String[]{file.getAbsolutePath()},
|
||||
// new String[]{mimeType},
|
||||
// callback
|
||||
// );
|
||||
// }
|
||||
|
||||
public static void hideKeyboard(final View view) {
|
||||
if (view == null) return;
|
||||
@ -506,26 +502,26 @@ public final class Utils {
|
||||
return tabOrderString.contains(navRootString);
|
||||
}
|
||||
|
||||
public static void scanDocumentFile(@NonNull final Context context,
|
||||
@NonNull final DocumentFile documentFile,
|
||||
@NonNull final OnScanCompletedListener callback) {
|
||||
if (!documentFile.isFile() || !documentFile.exists()) {
|
||||
Log.d(TAG, "scanDocumentFile: " + documentFile);
|
||||
callback.onScanCompleted(null, null);
|
||||
return;
|
||||
}
|
||||
File file = null;
|
||||
try {
|
||||
file = getDocumentFileRealPath(context, documentFile);
|
||||
} catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException e) {
|
||||
Log.e(TAG, "scanDocumentFile: ", e);
|
||||
}
|
||||
if (file == null) return;
|
||||
MediaScannerConnection.scanFile(context,
|
||||
new String[]{file.getAbsolutePath()},
|
||||
new String[]{documentFile.getType()},
|
||||
callback);
|
||||
}
|
||||
// public static void scanDocumentFile(@NonNull final Context context,
|
||||
// @NonNull final DocumentFile documentFile,
|
||||
// @NonNull final OnScanCompletedListener callback) {
|
||||
// if (!documentFile.isFile() || !documentFile.exists()) {
|
||||
// Log.d(TAG, "scanDocumentFile: " + documentFile);
|
||||
// callback.onScanCompleted(null, null);
|
||||
// return;
|
||||
// }
|
||||
// File file = null;
|
||||
// try {
|
||||
// file = getDocumentFileRealPath(context, documentFile);
|
||||
// } catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException e) {
|
||||
// Log.e(TAG, "scanDocumentFile: ", e);
|
||||
// }
|
||||
// if (file == null) return;
|
||||
// MediaScannerConnection.scanFile(context,
|
||||
// new String[]{file.getAbsolutePath()},
|
||||
// new String[]{documentFile.getType()},
|
||||
// callback);
|
||||
// }
|
||||
|
||||
public static File getDocumentFileRealPath(@NonNull final Context context,
|
||||
@NonNull final DocumentFile documentFile)
|
||||
@ -572,60 +568,4 @@ public final class Utils {
|
||||
// re-init DownloadUtils
|
||||
DownloadUtils.init(context);
|
||||
}
|
||||
|
||||
/**
|
||||
* Ing.N.Nyerges 2019 V2.0
|
||||
* <p>
|
||||
* Storage Access Framework(SAF) Uri's creator from File (java.IO),
|
||||
* for removable external storages
|
||||
*
|
||||
* @param context Application Context
|
||||
* @param file File path + file name
|
||||
* @return Uri[]:
|
||||
* uri[0] = SAF TREE Uri
|
||||
* uri[1] = SAF DOCUMENT Uri
|
||||
*/
|
||||
@RequiresApi(api = Build.VERSION_CODES.KITKAT)
|
||||
public static Uri[] getSafUris(Context context, File file) {
|
||||
|
||||
Uri[] uri = new Uri[2];
|
||||
String scheme = "content";
|
||||
String authority = "com.android.externalstorage.documents";
|
||||
|
||||
// Separate each element of the File path
|
||||
// File format: "/storage/XXXX-XXXX/sub-folder1/sub-folder2..../filename"
|
||||
// (XXXX-XXXX is external removable number
|
||||
String[] ele = file.getPath().split(File.separator);
|
||||
// ele[0] = not used (empty)
|
||||
// ele[1] = not used (storage name)
|
||||
// ele[2] = storage number
|
||||
// ele[3 to (n-1)] = folders
|
||||
// ele[n] = file name
|
||||
|
||||
// Construct folders strings using SAF format
|
||||
StringBuilder folders = new StringBuilder();
|
||||
if (ele.length > 4) {
|
||||
folders.append(ele[3]);
|
||||
for (int i = 4; i < ele.length - 1; ++i) folders.append("%2F").append(ele[i]);
|
||||
}
|
||||
|
||||
String common = ele[2] + "%3A" + folders.toString();
|
||||
|
||||
// Construct TREE Uri
|
||||
Uri.Builder builder = new Uri.Builder();
|
||||
builder.scheme(scheme);
|
||||
builder.authority(authority);
|
||||
builder.encodedPath("/tree/" + common);
|
||||
uri[0] = builder.build();
|
||||
|
||||
// Construct DOCUMENT Uri
|
||||
builder = new Uri.Builder();
|
||||
builder.scheme(scheme);
|
||||
builder.authority(authority);
|
||||
if (ele.length > 4) common = common + "%2F";
|
||||
builder.encodedPath("/document/" + common + file.getName());
|
||||
uri[1] = builder.build();
|
||||
|
||||
return uri;
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,6 @@ package awais.instagrabber.viewmodels;
|
||||
import android.app.Application;
|
||||
import android.content.ContentResolver;
|
||||
import android.net.Uri;
|
||||
import android.util.Log;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
@ -37,7 +36,6 @@ import awais.instagrabber.utils.DownloadUtils;
|
||||
import awais.instagrabber.utils.MediaController;
|
||||
import awais.instagrabber.utils.MediaUtils;
|
||||
import awais.instagrabber.utils.TextUtils;
|
||||
import awais.instagrabber.utils.Utils;
|
||||
import awais.instagrabber.utils.VoiceRecorder;
|
||||
|
||||
import static awais.instagrabber.utils.Utils.settingsHelper;
|
||||
@ -165,39 +163,28 @@ public class DirectThreadViewModel extends AndroidViewModel {
|
||||
|
||||
@Override
|
||||
public void onComplete(final VoiceRecorder.VoiceRecordingResult result) {
|
||||
Log.d(TAG, "onComplete: recording complete. Scanning file...");
|
||||
Utils.scanDocumentFile(application, result.getFile(), (path, uri) -> {
|
||||
if (uri == null) {
|
||||
final String msg = "Scan failed!";
|
||||
Log.e(TAG, msg);
|
||||
data.postValue(Resource.error(msg, null));
|
||||
return;
|
||||
// Log.d(TAG, "onComplete: recording complete. Scanning file...");
|
||||
MediaUtils.getVoiceInfo(contentResolver, result.getFile().getUri(), new MediaUtils.OnInfoLoadListener<MediaUtils.VideoInfo>() {
|
||||
@Override
|
||||
public void onLoad(@Nullable final MediaUtils.VideoInfo videoInfo) {
|
||||
if (videoInfo == null) return;
|
||||
threadManager.sendVoice(data,
|
||||
result.getFile().getUri(),
|
||||
result.getWaveform(),
|
||||
result.getSamplingFreq(),
|
||||
videoInfo.duration,
|
||||
result.getFile().length());
|
||||
}
|
||||
Log.d(TAG, "onComplete: scan complete");
|
||||
MediaUtils.getVoiceInfo(contentResolver, result.getFile().getUri(), new MediaUtils.OnInfoLoadListener<MediaUtils.VideoInfo>() {
|
||||
@Override
|
||||
public void onLoad(@Nullable final MediaUtils.VideoInfo videoInfo) {
|
||||
if (videoInfo == null) return;
|
||||
threadManager.sendVoice(data,
|
||||
result.getFile().getUri(),
|
||||
result.getWaveform(),
|
||||
result.getSamplingFreq(),
|
||||
videoInfo == null ? 0 : videoInfo.duration,
|
||||
result.getFile().length());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onFailure(final Throwable t) {
|
||||
data.postValue(Resource.error(t.getMessage(), null));
|
||||
}
|
||||
});
|
||||
@Override
|
||||
public void onFailure(final Throwable t) {
|
||||
data.postValue(Resource.error(t.getMessage(), null));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCancel() {
|
||||
|
||||
}
|
||||
public void onCancel() {}
|
||||
});
|
||||
voiceRecorder.startRecording(application);
|
||||
return data;
|
||||
|
@ -49,7 +49,6 @@ import awais.instagrabber.services.DeleteImageIntentService;
|
||||
import awais.instagrabber.utils.Constants;
|
||||
import awais.instagrabber.utils.DownloadUtils;
|
||||
import awais.instagrabber.utils.TextUtils;
|
||||
import awais.instagrabber.utils.Utils;
|
||||
|
||||
import static awais.instagrabber.utils.Constants.DOWNLOAD_CHANNEL_ID;
|
||||
import static awais.instagrabber.utils.Constants.NOTIF_GROUP_NAME;
|
||||
@ -272,8 +271,8 @@ public class DownloadWorker extends Worker {
|
||||
int count = 1;
|
||||
for (final DocumentFile filePath : filePaths) {
|
||||
// final File file = new File(filePath);
|
||||
context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, filePath.getUri()));
|
||||
Utils.scanDocumentFile(context, filePath, (path, uri) -> {});
|
||||
// context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, filePath.getUri()));
|
||||
// Utils.scanDocumentFile(context, filePath, (path, uri) -> {});
|
||||
// final Uri uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", file);
|
||||
final ContentResolver contentResolver = context.getContentResolver();
|
||||
Bitmap bitmap = null;
|
||||
|
Loading…
Reference in New Issue
Block a user