mirror of
https://github.com/immich-app/immich.git
synced 2024-12-16 12:20:08 +02:00
2139853dd9
replace usages of AlbumResponseDto with Album replace usages of UserResponseDto with User
54 lines
1.5 KiB
Dart
54 lines
1.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:http/http.dart';
|
|
import 'package:http_parser/http_parser.dart';
|
|
import 'package:image_picker/image_picker.dart';
|
|
import 'package:immich_mobile/shared/models/user.dart';
|
|
import 'package:immich_mobile/shared/providers/api.provider.dart';
|
|
import 'package:immich_mobile/shared/services/api.service.dart';
|
|
import 'package:immich_mobile/utils/files_helper.dart';
|
|
import 'package:openapi/api.dart';
|
|
|
|
final userServiceProvider = Provider(
|
|
(ref) => UserService(
|
|
ref.watch(apiServiceProvider),
|
|
),
|
|
);
|
|
|
|
class UserService {
|
|
final ApiService _apiService;
|
|
|
|
UserService(this._apiService);
|
|
|
|
Future<List<User>?> getAllUsers({required bool isAll}) async {
|
|
try {
|
|
final dto = await _apiService.userApi.getAllUsers(isAll);
|
|
return dto?.map(User.fromDto).toList();
|
|
} catch (e) {
|
|
debugPrint("Error [getAllUsersInfo] ${e.toString()}");
|
|
return null;
|
|
}
|
|
}
|
|
|
|
Future<CreateProfileImageResponseDto?> uploadProfileImage(XFile image) async {
|
|
try {
|
|
var mimeType = FileHelper.getMimeType(image.path);
|
|
|
|
return await _apiService.userApi.createProfileImage(
|
|
MultipartFile.fromBytes(
|
|
'file',
|
|
await image.readAsBytes(),
|
|
filename: image.name,
|
|
contentType: MediaType(
|
|
mimeType["type"],
|
|
mimeType["subType"],
|
|
),
|
|
),
|
|
);
|
|
} catch (e) {
|
|
debugPrint("Error [uploadProfileImage] ${e.toString()}");
|
|
return null;
|
|
}
|
|
}
|
|
}
|