mirror of
https://github.com/immich-app/immich.git
synced 2026-06-04 05:45:24 -04:00
9d4a6614b1
* feat(mobile): handle Android ACTION_VIEW intent - add ViewIntent Pigeon API and generated bindings - implement Android ViewIntentPlugin + iOS no-op host - route ExternalMediaViewer by ViewIntentAttachment - buffer pending view intents and flush on user ready/resume * feat(mobile): fallback to computed checksum for timeline match - hash local asset on-demand when checksum missing - search main timeline by localId or checksum before standalone viewer - persist computed hash into local_asset_entity * fix(mobile): proper handling is user authenticated * feat(mobile): open ACTION_VIEW fallback in AssetViewer drop ExternalMediaViewer route * feat(mobile): add logger * test(mobile): add unit tests for view intent pending/flush flow * fix(mobile): fix format * fix(mobile): remove redundant iOS code update code related to LocalAsset model and asset viewer * refactor(mobile): simplify view intent flow and support file-backed ACTION_VIEW assets remove redundant view intent model/repository layer handle transient ACTION_VIEW files in viewer/upload flow clean up managed temp files for fallback assets * refactor(mobile): extract MediaStore utils and resolve view intents via merged assets * refactor(mobile): move deferred view intents into providers, split view-intent providers, and clean up ACTION_VIEW handling * refactor(mobile): resolve merge conflicts use NativeSyncApi for hash files instead method from removed BackgroundServicePlugin.kt * style(mobile): format files * style(mobile): format files #2 * refactor(mobile): lazily materialize view-intent files and clean up temp-file handling * fix(mobile): flush pending view intents after login navigation * refactor(mobile): split view intent handler by platform and trigger it from app events * refactor(mobile): move view intent handling behind platform-specific factories * refactor(mobile): simplify code * fix(mobile): hand off deep-link viewer to main timeline after upload Add MainTimelineHandoffCoordinator to switch the asset viewer to the main timeline once a view-intent asset is uploaded and becomes available, and guard viewer reload/navigation transitions to avoid race conditions and crashes. * refactor(mobile): use remote asset ids for view intent handoff and simplify resolver * refactor(mobile): resolve merge conflicts * style(mobile): reformat code * style(mobile): reformat code #2 * fix(mobile): stabilize Android view intent asset resolution and fallback viewer * refactor(mobile): share AssetViewer pre-navigation state preparation * fix(mobile): wait for main timeline before deferred view intent handoff * refactor(mobile): decouple view intent asset resolver from providers * fix(mobile): avoid double pop when canceling upload dialog * fix(mobile): resolve view intent MIME type with fallbacks * docs(mobile): clarify view intent fallback asset TODO * fix(mobile): resolve merge conflicts * cleanup * lint --------- Co-authored-by: Peter Ombodi <peter.ombodi@gmail.com> Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
109 lines
2.8 KiB
Dart
109 lines
2.8 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/platform/view_intent_api.g.dart';
|
|
import 'package:path/path.dart' as p;
|
|
import 'package:path_provider/path_provider.dart';
|
|
|
|
final viewIntentServiceProvider = Provider((ref) => ViewIntentService(ViewIntentHostApi()));
|
|
|
|
class ViewIntentService {
|
|
final ViewIntentHostApi _viewIntentHostApi;
|
|
final Future<Directory> Function() _temporaryDirectory;
|
|
String? _managedTempFilePath;
|
|
final Set<String> _activeUploadPaths = {};
|
|
|
|
ViewIntentService(this._viewIntentHostApi, {Future<Directory> Function()? temporaryDirectory})
|
|
: _temporaryDirectory = temporaryDirectory ?? getTemporaryDirectory;
|
|
|
|
Future<ViewIntentPayload?> consumeViewIntent() async {
|
|
try {
|
|
return await _viewIntentHostApi.consumeViewIntent();
|
|
} catch (_) {
|
|
// Ignore errors - view intent might not be present
|
|
return null;
|
|
}
|
|
}
|
|
|
|
Future<void> setManagedTempFilePath(String path) async {
|
|
final previous = _managedTempFilePath;
|
|
if (previous == path) {
|
|
return;
|
|
}
|
|
_managedTempFilePath = path;
|
|
if (previous != null) {
|
|
await cleanupTempFile(previous);
|
|
}
|
|
}
|
|
|
|
Future<void> cleanupManagedTempFile() async {
|
|
final path = _managedTempFilePath;
|
|
_managedTempFilePath = null;
|
|
if (path != null) {
|
|
await cleanupTempFile(path);
|
|
}
|
|
}
|
|
|
|
Future<void> cleanupManagedTempFileIfCurrent(String path) async {
|
|
if (_managedTempFilePath == path) {
|
|
_managedTempFilePath = null;
|
|
}
|
|
await cleanupTempFile(path);
|
|
}
|
|
|
|
Future<void> cleanupTempFile(String path) async {
|
|
if (!_isManagedTempFile(path)) {
|
|
return;
|
|
}
|
|
if (_activeUploadPaths.contains(path)) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
final file = File(path);
|
|
if (await file.exists()) {
|
|
await file.delete();
|
|
}
|
|
} catch (_) {
|
|
// Best-effort cleanup only.
|
|
}
|
|
}
|
|
|
|
Future<void> cleanupStaleTempFiles() async {
|
|
try {
|
|
final tempDirectory = await _temporaryDirectory();
|
|
await for (final entity in tempDirectory.list()) {
|
|
if (entity is! File) {
|
|
continue;
|
|
}
|
|
|
|
final path = entity.path;
|
|
if (!_isManagedTempFile(path) || path == _managedTempFilePath || _activeUploadPaths.contains(path)) {
|
|
continue;
|
|
}
|
|
|
|
await entity.delete();
|
|
}
|
|
} catch (_) {
|
|
// Best-effort cleanup only.
|
|
}
|
|
}
|
|
|
|
void markUploadActive(String path) {
|
|
_activeUploadPaths.add(path);
|
|
}
|
|
|
|
Future<void> markUploadInactive(String path) async {
|
|
if (!_activeUploadPaths.remove(path)) {
|
|
return;
|
|
}
|
|
if (_managedTempFilePath != path) {
|
|
await cleanupTempFile(path);
|
|
}
|
|
}
|
|
|
|
bool _isManagedTempFile(String path) {
|
|
return p.basename(path).startsWith('view_intent_') && p.basename(p.dirname(path)) == 'cache';
|
|
}
|
|
}
|