mirror of
https://github.com/immich-app/immich.git
synced 2024-12-21 01:39:59 +02:00
8dcc01b2be
* add shared links page * feat(mobile): shared link items * feat(mobile): create / edit shared links page * server: add changeExpiryTime to SharedLinkEditDto * fix(mobile): edit expiry to never * mobile: add icon when shares list is empty * mobile: create new share from album / timeline * mobile: add translation texts * mobile: minor ui fixes * fix: handle serverURL with /api path * mobile: show share link on successful creation * mobile: shared links list - 2 column layout * mobile: use sharedlink pod class instead of dto * mobile: show error on link creation * mobile: show share icon only when remote assets are in selection * mobile: use server endpoint instead of server url * styling * styling --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
116 lines
3.3 KiB
Dart
116 lines
3.3 KiB
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/shared_link/models/shared_link.dart';
|
|
import 'package:immich_mobile/shared/providers/api.provider.dart';
|
|
import 'package:immich_mobile/shared/services/api.service.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:openapi/api.dart';
|
|
|
|
final sharedLinkServiceProvider = Provider(
|
|
(ref) => SharedLinkService(ref.watch(apiServiceProvider)),
|
|
);
|
|
|
|
class SharedLinkService {
|
|
final ApiService _apiService;
|
|
final Logger _log = Logger("SharedLinkService");
|
|
|
|
SharedLinkService(this._apiService);
|
|
|
|
Future<AsyncValue<List<SharedLink>>> getAllSharedLinks() async {
|
|
try {
|
|
final list = await _apiService.sharedLinkApi.getAllSharedLinks();
|
|
return list != null
|
|
? AsyncData(list.map(SharedLink.fromDto).toList())
|
|
: const AsyncData([]);
|
|
} catch (e, stack) {
|
|
_log.severe("failed to fetch shared links - $e");
|
|
return AsyncError(e, stack);
|
|
}
|
|
}
|
|
|
|
Future<void> deleteSharedLink(String id) async {
|
|
try {
|
|
return await _apiService.sharedLinkApi.removeSharedLink(id);
|
|
} catch (e) {
|
|
_log.severe("failed to delete shared link id - $id with error - $e");
|
|
}
|
|
}
|
|
|
|
Future<SharedLink?> createSharedLink({
|
|
required bool showMeta,
|
|
required bool allowDownload,
|
|
required bool allowUpload,
|
|
String? description,
|
|
String? albumId,
|
|
List<String>? assetIds,
|
|
DateTime? expiresAt,
|
|
}) async {
|
|
try {
|
|
final type =
|
|
albumId != null ? SharedLinkType.ALBUM : SharedLinkType.INDIVIDUAL;
|
|
SharedLinkCreateDto? dto;
|
|
if (type == SharedLinkType.ALBUM) {
|
|
dto = SharedLinkCreateDto(
|
|
type: type,
|
|
albumId: albumId,
|
|
showMetadata: showMeta,
|
|
allowDownload: allowDownload,
|
|
allowUpload: allowUpload,
|
|
expiresAt: expiresAt,
|
|
description: description,
|
|
);
|
|
} else if (assetIds != null) {
|
|
dto = SharedLinkCreateDto(
|
|
type: type,
|
|
showMetadata: showMeta,
|
|
allowDownload: allowDownload,
|
|
allowUpload: allowUpload,
|
|
expiresAt: expiresAt,
|
|
description: description,
|
|
assetIds: assetIds,
|
|
);
|
|
}
|
|
|
|
if (dto != null) {
|
|
final responseDto =
|
|
await _apiService.sharedLinkApi.createSharedLink(dto);
|
|
if (responseDto != null) {
|
|
return SharedLink.fromDto(responseDto);
|
|
}
|
|
}
|
|
} catch (e) {
|
|
_log.severe("failed to create shared link with error - $e");
|
|
}
|
|
return null;
|
|
}
|
|
|
|
Future<SharedLink?> updateSharedLink(
|
|
String id, {
|
|
required bool? showMeta,
|
|
required bool? allowDownload,
|
|
required bool? allowUpload,
|
|
bool? changeExpiry = false,
|
|
String? description,
|
|
DateTime? expiresAt,
|
|
}) async {
|
|
try {
|
|
final responseDto = await _apiService.sharedLinkApi.updateSharedLink(
|
|
id,
|
|
SharedLinkEditDto(
|
|
showMetadata: showMeta,
|
|
allowDownload: allowDownload,
|
|
allowUpload: allowUpload,
|
|
expiresAt: expiresAt,
|
|
description: description,
|
|
changeExpiryTime: changeExpiry,
|
|
),
|
|
);
|
|
if (responseDto != null) {
|
|
return SharedLink.fromDto(responseDto);
|
|
}
|
|
} catch (e) {
|
|
_log.severe("failed to update shared link id - $id with error - $e");
|
|
}
|
|
return null;
|
|
}
|
|
}
|