mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:17:11 -05:00 
			
		
		
		
	replace usage of AssetResponseDto with Asset Add new class ExifInfo to store data from ExifResponseDto
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'dart:io';
 | 
						|
 | 
						|
import 'package:flutter/foundation.dart';
 | 
						|
import 'package:hooks_riverpod/hooks_riverpod.dart';
 | 
						|
import 'package:immich_mobile/shared/models/asset.dart';
 | 
						|
import 'package:immich_mobile/shared/providers/api.provider.dart';
 | 
						|
import 'package:immich_mobile/shared/services/api.service.dart';
 | 
						|
 | 
						|
import 'package:photo_manager/photo_manager.dart';
 | 
						|
import 'package:path_provider/path_provider.dart';
 | 
						|
 | 
						|
final imageViewerServiceProvider =
 | 
						|
    Provider((ref) => ImageViewerService(ref.watch(apiServiceProvider)));
 | 
						|
 | 
						|
class ImageViewerService {
 | 
						|
  final ApiService _apiService;
 | 
						|
 | 
						|
  ImageViewerService(this._apiService);
 | 
						|
 | 
						|
  Future<bool> downloadAssetToDevice(Asset asset) async {
 | 
						|
    try {
 | 
						|
      // Download LivePhotos image and motion part
 | 
						|
      if (asset.isImage && asset.livePhotoVideoId != null) {
 | 
						|
        var imageResponse = await _apiService.assetApi.downloadFileWithHttpInfo(
 | 
						|
          asset.remoteId!,
 | 
						|
        );
 | 
						|
 | 
						|
        var motionReponse = await _apiService.assetApi.downloadFileWithHttpInfo(
 | 
						|
          asset.livePhotoVideoId!,
 | 
						|
        );
 | 
						|
 | 
						|
        final AssetEntity? entity;
 | 
						|
 | 
						|
        final tempDir = await getTemporaryDirectory();
 | 
						|
        File videoFile = await File('${tempDir.path}/livephoto.mov').create();
 | 
						|
        File imageFile = await File('${tempDir.path}/livephoto.heic').create();
 | 
						|
        videoFile.writeAsBytesSync(motionReponse.bodyBytes);
 | 
						|
        imageFile.writeAsBytesSync(imageResponse.bodyBytes);
 | 
						|
 | 
						|
        entity = await PhotoManager.editor.darwin.saveLivePhoto(
 | 
						|
          imageFile: imageFile,
 | 
						|
          videoFile: videoFile,
 | 
						|
          title: asset.fileName,
 | 
						|
        );
 | 
						|
 | 
						|
        return entity != null;
 | 
						|
      } else {
 | 
						|
        var res = await _apiService.assetApi
 | 
						|
            .downloadFileWithHttpInfo(asset.remoteId!);
 | 
						|
 | 
						|
        final AssetEntity? entity;
 | 
						|
 | 
						|
        if (asset.isImage) {
 | 
						|
          entity = await PhotoManager.editor.saveImage(
 | 
						|
            res.bodyBytes,
 | 
						|
            title: asset.fileName,
 | 
						|
          );
 | 
						|
        } else {
 | 
						|
          final tempDir = await getTemporaryDirectory();
 | 
						|
          File tempFile =
 | 
						|
              await File('${tempDir.path}/${asset.fileName}').create();
 | 
						|
          tempFile.writeAsBytesSync(res.bodyBytes);
 | 
						|
          entity = await PhotoManager.editor
 | 
						|
              .saveVideo(tempFile, title: asset.fileName);
 | 
						|
        }
 | 
						|
        return entity != null;
 | 
						|
      }
 | 
						|
    } catch (e) {
 | 
						|
      debugPrint("Error saving file $e");
 | 
						|
      return false;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |