mirror of
https://github.com/immich-app/immich.git
synced 2024-11-19 11:58:57 -07:00
d476b15312
* Update mobile dependencies * Added image picker * Added mechanism to upload profile image * Added image type to send to web * Added styling for circle avatar * Fixxed issue with sharp cannot resize image properly * Finished displaying and uploading user profile * Added user profile to web
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_info.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<UserInfo>> getAllUsersInfo() async {
|
|
try {
|
|
Response res = await _networkService.getRequest(url: 'user');
|
|
List<dynamic> decodedData = jsonDecode(res.toString());
|
|
List<UserInfo> result = List.from(decodedData.map((e) => UserInfo.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;
|
|
}
|
|
}
|
|
}
|