mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 18:42:17 -07:00
897d49f734
* refactor serving file function asset service * Remove PhotoViewer for now since it creates a problem in 2.10 * Added error message for wrong decode file and logo for failed to load file * Fixed error when read stream cannot be created and crash server * Added method to get all assets as a raw array * Implemented cleaner way of grouping image * Implemented operation to delete assets in the database * Implemented delete on database operation * Implemented delete on device operation * Fixed issue display wrong information when the auto backup is enabled after deleting all assets
114 lines
3.3 KiB
Dart
114 lines
3.3 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/modules/home/models/delete_asset_response.model.dart';
|
|
import 'package:immich_mobile/modules/home/models/get_all_asset_response.model.dart';
|
|
import 'package:immich_mobile/shared/models/immich_asset.model.dart';
|
|
import 'package:immich_mobile/shared/models/immich_asset_with_exif.model.dart';
|
|
import 'package:immich_mobile/shared/services/network.service.dart';
|
|
|
|
class AssetService {
|
|
final NetworkService _networkService = NetworkService();
|
|
|
|
Future<List<ImmichAsset>?> getAllAsset() async {
|
|
var res = await _networkService.getRequest(url: "asset/");
|
|
try {
|
|
List<dynamic> decodedData = jsonDecode(res.toString());
|
|
|
|
List<ImmichAsset> result = List.from(decodedData.map((a) => ImmichAsset.fromMap(a)));
|
|
return result;
|
|
} catch (e) {
|
|
debugPrint("Error getAllAsset ${e.toString()}");
|
|
}
|
|
return null;
|
|
}
|
|
|
|
Future<GetAllAssetResponse?> getAllAssetWithPagination() async {
|
|
var res = await _networkService.getRequest(url: "asset/all");
|
|
try {
|
|
Map<String, dynamic> decodedData = jsonDecode(res.toString());
|
|
|
|
GetAllAssetResponse result = GetAllAssetResponse.fromMap(decodedData);
|
|
return result;
|
|
} catch (e) {
|
|
debugPrint("Error getAllAsset ${e.toString()}");
|
|
}
|
|
return null;
|
|
}
|
|
|
|
Future<GetAllAssetResponse?> getOlderAsset(String? nextPageKey) async {
|
|
try {
|
|
var res = await _networkService.getRequest(
|
|
url: "asset/all?nextPageKey=$nextPageKey",
|
|
);
|
|
|
|
Map<String, dynamic> decodedData = jsonDecode(res.toString());
|
|
|
|
GetAllAssetResponse result = GetAllAssetResponse.fromMap(decodedData);
|
|
if (result.count != 0) {
|
|
return result;
|
|
}
|
|
} catch (e) {
|
|
debugPrint("Error getAllAsset ${e.toString()}");
|
|
}
|
|
return null;
|
|
}
|
|
|
|
Future<List<ImmichAsset>> getNewAsset(String latestDate) async {
|
|
try {
|
|
var res = await _networkService.getRequest(
|
|
url: "asset/new?latestDate=$latestDate",
|
|
);
|
|
|
|
List<dynamic> decodedData = jsonDecode(res.toString());
|
|
|
|
List<ImmichAsset> result = List.from(decodedData.map((a) => ImmichAsset.fromMap(a)));
|
|
if (result.isNotEmpty) {
|
|
return result;
|
|
}
|
|
|
|
return [];
|
|
} catch (e) {
|
|
debugPrint("Error getAllAsset ${e.toString()}");
|
|
return [];
|
|
}
|
|
}
|
|
|
|
Future<ImmichAssetWithExif?> getAssetById(String assetId) async {
|
|
try {
|
|
var res = await _networkService.getRequest(
|
|
url: "asset/assetById/$assetId",
|
|
);
|
|
|
|
Map<String, dynamic> decodedData = jsonDecode(res.toString());
|
|
|
|
ImmichAssetWithExif result = ImmichAssetWithExif.fromMap(decodedData);
|
|
return result;
|
|
} catch (e) {
|
|
debugPrint("Error getAllAsset ${e.toString()}");
|
|
return null;
|
|
}
|
|
}
|
|
|
|
Future<List<DeleteAssetResponse>?> deleteAssets(Set<ImmichAsset> deleteAssets) async {
|
|
try {
|
|
var payload = [];
|
|
|
|
for (var asset in deleteAssets) {
|
|
payload.add(asset.id);
|
|
}
|
|
|
|
var res = await _networkService.deleteRequest(url: "asset/", data: {"ids": payload});
|
|
|
|
List<dynamic> decodedData = jsonDecode(res.toString());
|
|
|
|
List<DeleteAssetResponse> result = List.from(decodedData.map((a) => DeleteAssetResponse.fromMap(a)));
|
|
|
|
return result;
|
|
} catch (e) {
|
|
debugPrint("Error getAllAsset ${e.toString()}");
|
|
return null;
|
|
}
|
|
}
|
|
}
|