mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* 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>
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'dart:convert';
 | |
| 
 | |
| import 'package:dio/dio.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| import 'package:hive/hive.dart';
 | |
| import 'package:image_picker/image_picker.dart';
 | |
| import 'package:immich_mobile/constants/hive_box.dart';
 | |
| import 'package:immich_mobile/shared/models/upload_profile_image_repsonse.model.dart';
 | |
| import 'package:immich_mobile/shared/models/user.model.dart';
 | |
| import 'package:immich_mobile/shared/services/network.service.dart';
 | |
| import 'package:immich_mobile/utils/dio_http_interceptor.dart';
 | |
| import 'package:immich_mobile/utils/files_helper.dart';
 | |
| import 'package:http_parser/http_parser.dart';
 | |
| 
 | |
| class UserService {
 | |
|   final NetworkService _networkService = NetworkService();
 | |
| 
 | |
|   Future<List<User>> getAllUsersInfo() async {
 | |
|     try {
 | |
|       Response res = await _networkService.getRequest(url: 'user');
 | |
|       List<dynamic> decodedData = jsonDecode(res.toString());
 | |
|       List<User> result = List.from(decodedData.map((e) => User.fromMap(e)));
 | |
| 
 | |
|       return result;
 | |
|     } catch (e) {
 | |
|       debugPrint("Error getAllUsersInfo  ${e.toString()}");
 | |
|     }
 | |
| 
 | |
|     return [];
 | |
|   }
 | |
| 
 | |
|   Future<UploadProfileImageResponse?> uploadProfileImage(XFile image) async {
 | |
|     var dio = Dio();
 | |
|     dio.interceptors.add(AuthenticatedRequestInterceptor());
 | |
|     String savedEndpoint = Hive.box(userInfoBox).get(serverEndpointKey);
 | |
|     var mimeType = FileHelper.getMimeType(image.path);
 | |
| 
 | |
|     final imageData = MultipartFile.fromBytes(
 | |
|       await image.readAsBytes(),
 | |
|       filename: image.name,
 | |
|       contentType: MediaType(
 | |
|         mimeType["type"],
 | |
|         mimeType["subType"],
 | |
|       ),
 | |
|     );
 | |
| 
 | |
|     final formData = FormData.fromMap({'file': imageData});
 | |
| 
 | |
|     try {
 | |
|       Response res = await dio.post(
 | |
|         '$savedEndpoint/user/profile-image',
 | |
|         data: formData,
 | |
|       );
 | |
| 
 | |
|       var payload = UploadProfileImageResponse.fromJson(res.toString());
 | |
| 
 | |
|       return payload;
 | |
|     } on DioError catch (e) {
 | |
|       debugPrint("Error uploading file: ${e.response}");
 | |
|       return null;
 | |
|     } catch (e) {
 | |
|       debugPrint("Error uploading file: $e");
 | |
|       return null;
 | |
|     }
 | |
|   }
 | |
| }
 |