mirror of
https://github.com/immich-app/immich.git
synced 2024-11-18 11:29:11 -07:00
83 lines
2.6 KiB
Dart
83 lines
2.6 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/shared/providers/api.provider.dart';
|
|
import 'package:immich_mobile/shared/services/api.service.dart';
|
|
import 'package:openapi/api.dart';
|
|
import 'package:path/path.dart' as p;
|
|
|
|
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(AssetResponseDto asset) async {
|
|
try {
|
|
String fileName = p.basename(asset.originalPath);
|
|
|
|
// Download LivePhotos image and motion part
|
|
if (asset.type == AssetTypeEnum.IMAGE && asset.livePhotoVideoId != null) {
|
|
var imageResponse = await _apiService.assetApi.downloadFileWithHttpInfo(
|
|
asset.id,
|
|
isThumb: false,
|
|
isWeb: false,
|
|
);
|
|
|
|
var motionReponse = await _apiService.assetApi.downloadFileWithHttpInfo(
|
|
asset.livePhotoVideoId!,
|
|
isThumb: false,
|
|
isWeb: false,
|
|
);
|
|
|
|
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: p.basename(asset.originalPath),
|
|
);
|
|
|
|
return entity != null;
|
|
} else {
|
|
var res = await _apiService.assetApi.downloadFileWithHttpInfo(
|
|
asset.id,
|
|
isThumb: false,
|
|
isWeb: false,
|
|
);
|
|
|
|
final AssetEntity? entity;
|
|
|
|
if (asset.type == AssetTypeEnum.IMAGE) {
|
|
entity = await PhotoManager.editor.saveImage(
|
|
res.bodyBytes,
|
|
title: p.basename(asset.originalPath),
|
|
);
|
|
} else {
|
|
final tempDir = await getTemporaryDirectory();
|
|
File tempFile = await File('${tempDir.path}/$fileName').create();
|
|
tempFile.writeAsBytesSync(res.bodyBytes);
|
|
entity =
|
|
await PhotoManager.editor.saveVideo(tempFile, title: fileName);
|
|
}
|
|
return entity != null;
|
|
}
|
|
} catch (e) {
|
|
debugPrint("Error saving file $e");
|
|
return false;
|
|
}
|
|
}
|
|
}
|