mirror of
https://github.com/immich-app/immich.git
synced 2025-07-31 15:08:44 -04:00
* feat(mobile): drift search page * migrate to drift page --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
93 lines
2.9 KiB
Dart
93 lines
2.9 KiB
Dart
import 'package:immich_mobile/domain/models/asset/base_asset.model.dart';
|
|
import 'package:immich_mobile/domain/models/search_result.model.dart';
|
|
import 'package:immich_mobile/extensions/string_extensions.dart';
|
|
import 'package:immich_mobile/infrastructure/repositories/search_api.repository.dart';
|
|
import 'package:immich_mobile/models/search/search_filter.model.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:openapi/api.dart' as api show AssetVisibility;
|
|
import 'package:openapi/api.dart' hide AssetVisibility;
|
|
|
|
class SearchService {
|
|
final _log = Logger("SearchService");
|
|
final SearchApiRepository _searchApiRepository;
|
|
|
|
SearchService(this._searchApiRepository);
|
|
|
|
Future<List<String>?> getSearchSuggestions(
|
|
SearchSuggestionType type, {
|
|
String? country,
|
|
String? state,
|
|
String? make,
|
|
String? model,
|
|
}) async {
|
|
try {
|
|
return await _searchApiRepository.getSearchSuggestions(
|
|
type,
|
|
country: country,
|
|
state: state,
|
|
make: make,
|
|
model: model,
|
|
);
|
|
} catch (e) {
|
|
_log.warning("Failed to get search suggestions", e);
|
|
}
|
|
return [];
|
|
}
|
|
|
|
Future<SearchResult?> search(SearchFilter filter, int page) async {
|
|
try {
|
|
final response = await _searchApiRepository.search(filter, page);
|
|
|
|
if (response == null || response.assets.items.isEmpty) {
|
|
return null;
|
|
}
|
|
|
|
return SearchResult(
|
|
assets: response.assets.items.map((e) => e.toDto()).toList(),
|
|
nextPage: response.assets.nextPage?.toInt(),
|
|
);
|
|
} catch (error, stackTrace) {
|
|
_log.severe("Failed to search for assets", error, stackTrace);
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
extension on AssetResponseDto {
|
|
RemoteAsset toDto() {
|
|
return RemoteAsset(
|
|
id: id,
|
|
name: originalFileName,
|
|
checksum: checksum,
|
|
createdAt: fileCreatedAt,
|
|
updatedAt: updatedAt,
|
|
ownerId: ownerId,
|
|
visibility: switch (visibility) {
|
|
api.AssetVisibility.timeline => AssetVisibility.timeline,
|
|
api.AssetVisibility.hidden => AssetVisibility.hidden,
|
|
api.AssetVisibility.archive => AssetVisibility.archive,
|
|
api.AssetVisibility.locked => AssetVisibility.locked,
|
|
_ => AssetVisibility.timeline,
|
|
},
|
|
durationInSeconds: duration.toDuration()?.inSeconds ?? 0,
|
|
height: exifInfo?.exifImageHeight?.toInt(),
|
|
width: exifInfo?.exifImageWidth?.toInt(),
|
|
isFavorite: isFavorite,
|
|
livePhotoVideoId: livePhotoVideoId,
|
|
thumbHash: thumbhash,
|
|
localId: null,
|
|
type: type.toAssetType(),
|
|
);
|
|
}
|
|
}
|
|
|
|
extension on AssetTypeEnum {
|
|
AssetType toAssetType() => switch (this) {
|
|
AssetTypeEnum.IMAGE => AssetType.image,
|
|
AssetTypeEnum.VIDEO => AssetType.video,
|
|
AssetTypeEnum.AUDIO => AssetType.audio,
|
|
AssetTypeEnum.OTHER => AssetType.other,
|
|
_ => throw Exception('Unknown AssetType value: $this'),
|
|
};
|
|
}
|