mirror of
https://github.com/immich-app/immich.git
synced 2024-11-19 20:08:57 -07:00
517a3363d6
* Rename "shared" to "album" Prepare moving "SharedAlbums" to "Albums" * Update server album API endpoints * Update mobile app album endpoints Also add `putRequest` to mobile network.service * Add GET album collection filter - allow to filter by owner = 'mine' | 'their' - make sharedWithUserIds no longer required when creating an album * Rename remaining variables to "album" * Add ParseMeUUIDPipe to validate uuid or `me` * Add album params validation * Update todo in mobile album service. * Setup e2e testing * Add user e2e tests * Rename database host env variable to DB_HOST * Add some `Album` e2e tests Also fix issues found with the tests * Force push (try to recover DB_HOST env) * Rename db host env variable to `DB_HOSTNAME` * Remove unnecessary `initDb` from test-utils The current database.config is running the migrations: `migrationsRun: true` * Remove `initDb` usage from album e2e test * Update GET albums filter to `shared` - add filter by all / shared / not shared - add response DTOs - add GET albums e2e tests * Update album e2e tests for user.service changes * Update mobile app to use album response DTOs * Refactor album-service DB into album-registry - DB logic refactored into album-repository making it easier to test - add some album-service unit tests - add `clearMocks` to jest configuration * Finish implementing album.service unit tests * Rename response DTO Make them consistent with rest of the project naming * Update debug log messages in mobile network service * Rename table `shared_albums` to `albums` * Rename table `asset_shared_album` * Rename Albums `sharedAssets` to `assets` * Update tests to match updated "delete" response * Fixed asset cannot be compared in Set by adding Equatable package * Remove hero effect to fixed janky animation Co-authored-by: Alex <alex.tran1502@gmail.com>
169 lines
4.2 KiB
Dart
169 lines
4.2 KiB
Dart
import 'dart:async';
|
|
import 'dart:convert';
|
|
|
|
import 'package:dio/dio.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:immich_mobile/modules/sharing/models/shared_album.model.dart';
|
|
import 'package:immich_mobile/shared/models/immich_asset.model.dart';
|
|
import 'package:immich_mobile/shared/services/network.service.dart';
|
|
|
|
class SharedAlbumService {
|
|
final NetworkService _networkService = NetworkService();
|
|
|
|
Future<List<SharedAlbum>> getAllSharedAlbum() async {
|
|
try {
|
|
var res = await _networkService.getRequest(url: 'album?shared=true');
|
|
List<dynamic> decodedData = jsonDecode(res.toString());
|
|
List<SharedAlbum> result =
|
|
List.from(decodedData.map((e) => SharedAlbum.fromMap(e)));
|
|
|
|
return result;
|
|
} catch (e) {
|
|
debugPrint("Error getAllSharedAlbum ${e.toString()}");
|
|
}
|
|
|
|
return [];
|
|
}
|
|
|
|
Future<bool> createSharedAlbum(String albumName, Set<ImmichAsset> assets,
|
|
List<String> sharedUserIds) async {
|
|
try {
|
|
var res = await _networkService.postRequest(url: 'album', data: {
|
|
"albumName": albumName,
|
|
"sharedWithUserIds": sharedUserIds,
|
|
"assetIds": assets.map((asset) => asset.id).toList(),
|
|
});
|
|
|
|
if (res == null) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (e) {
|
|
debugPrint("Error createSharedAlbum ${e.toString()}");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Future<SharedAlbum> getAlbumDetail(String albumId) async {
|
|
try {
|
|
var res = await _networkService.getRequest(url: 'album/$albumId');
|
|
dynamic decodedData = jsonDecode(res.toString());
|
|
SharedAlbum result = SharedAlbum.fromMap(decodedData);
|
|
|
|
return result;
|
|
} catch (e) {
|
|
throw Exception('Error getAllSharedAlbum ${e.toString()}');
|
|
}
|
|
}
|
|
|
|
Future<bool> addAdditionalAssetToAlbum(
|
|
Set<ImmichAsset> assets, String albumId) async {
|
|
try {
|
|
var res =
|
|
await _networkService.putRequest(url: 'album/$albumId/assets', data: {
|
|
"albumId": albumId,
|
|
"assetIds": assets.map((asset) => asset.id).toList(),
|
|
});
|
|
|
|
if (res == null) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (e) {
|
|
debugPrint("Error addAdditionalAssetToAlbum ${e.toString()}");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Future<bool> addAdditionalUserToAlbum(
|
|
List<String> sharedUserIds, String albumId) async {
|
|
try {
|
|
var res =
|
|
await _networkService.putRequest(url: 'album/$albumId/users', data: {
|
|
"sharedUserIds": sharedUserIds,
|
|
});
|
|
|
|
if (res == null) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (e) {
|
|
debugPrint("Error addAdditionalUserToAlbum ${e.toString()}");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Future<bool> deleteAlbum(String albumId) async {
|
|
try {
|
|
Response res = await _networkService.deleteRequest(url: 'album/$albumId');
|
|
|
|
if (res.statusCode != 200) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (e) {
|
|
debugPrint("Error deleteAlbum ${e.toString()}");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Future<bool> leaveAlbum(String albumId) async {
|
|
try {
|
|
Response res =
|
|
await _networkService.deleteRequest(url: 'album/$albumId/user/me');
|
|
|
|
if (res.statusCode != 200) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (e) {
|
|
debugPrint("Error deleteAlbum ${e.toString()}");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Future<bool> removeAssetFromAlbum(
|
|
String albumId, List<String> assetIds) async {
|
|
try {
|
|
Response res = await _networkService
|
|
.deleteRequest(url: 'album/$albumId/assets', data: {
|
|
"assetIds": assetIds,
|
|
});
|
|
|
|
if (res.statusCode != 200) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (e) {
|
|
debugPrint("Error deleteAlbum ${e.toString()}");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Future<bool> changeTitleAlbum(
|
|
String albumId, String ownerId, String newAlbumTitle) async {
|
|
try {
|
|
Response res =
|
|
await _networkService.patchRequest(url: 'album/$albumId/', data: {
|
|
"ownerId": ownerId,
|
|
"albumName": newAlbumTitle,
|
|
});
|
|
|
|
if (res.statusCode != 200) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (e) {
|
|
debugPrint("Error deleteAlbum ${e.toString()}");
|
|
return false;
|
|
}
|
|
}
|
|
}
|