mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 19:08:49 -07:00
e571880c16
* Add include archive setting to map on web * open api * better naming for web isArchived variable * add withArchived setting to mobile * (e2e): tests for mapMarker endpoint and isArchived * isArchived to mobile * chore: cleanup test * chore: optimize e2e --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
65 lines
1.8 KiB
Dart
65 lines
1.8 KiB
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/providers/db.provider.dart';
|
|
import 'package:immich_mobile/shared/services/api.service.dart';
|
|
import 'package:isar/isar.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:openapi/api.dart';
|
|
|
|
final mapServiceProvider = Provider(
|
|
(ref) => MapSerivce(
|
|
ref.read(apiServiceProvider),
|
|
ref.read(dbProvider),
|
|
),
|
|
);
|
|
|
|
class MapSerivce {
|
|
final ApiService _apiService;
|
|
final Isar _db;
|
|
final log = Logger("MapService");
|
|
|
|
MapSerivce(this._apiService, this._db);
|
|
|
|
Future<List<MapMarkerResponseDto>> getMapMarkers({
|
|
bool? isFavorite,
|
|
bool? withArchived,
|
|
DateTime? fileCreatedAfter,
|
|
DateTime? fileCreatedBefore,
|
|
}) async {
|
|
try {
|
|
final markers = await _apiService.assetApi.getMapMarkers(
|
|
isFavorite: isFavorite,
|
|
isArchived: withArchived,
|
|
fileCreatedAfter: fileCreatedAfter,
|
|
fileCreatedBefore: fileCreatedBefore,
|
|
);
|
|
|
|
return markers ?? [];
|
|
} catch (error, stack) {
|
|
log.severe("Cannot get map markers ${error.toString()}", error, stack);
|
|
return [];
|
|
}
|
|
}
|
|
|
|
Future<Asset?> getAssetForMarkerId(String remoteId) async {
|
|
try {
|
|
final assets = await _db.assets.getAllByRemoteId([remoteId]);
|
|
if (assets.isNotEmpty) return assets[0];
|
|
|
|
final dto = await _apiService.assetApi.getAssetById(remoteId);
|
|
if (dto == null) {
|
|
return null;
|
|
}
|
|
return Asset.remote(dto);
|
|
} catch (error, stack) {
|
|
log.severe(
|
|
"Cannot get asset for marker ${error.toString()}",
|
|
error,
|
|
stack,
|
|
);
|
|
return null;
|
|
}
|
|
}
|
|
}
|