mirror of
https://github.com/immich-app/immich.git
synced 2024-12-16 12:20:08 +02:00
8708867c1c
* feature(mobile): sync assets, albums & users to local database on device * try to fix tests * move DB sync operations to new SyncService * clear db on user logout * fix reason for endless loading timeline * fix error when deleting album * fix thumbnail of device albums * add a few comments * fix Hive box not open in album service when loading local assets * adjust tests to int IDs * fix bug: show all albums when Recent is selected * update generated api * reworked Recents album isAll handling * guard against wrongly interleaved sync operations * fix: timeline asset ordering (sort asset state by created at) * fix: sort assets in albums by created at
78 lines
2.3 KiB
Dart
78 lines
2.3 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/store.dart';
|
|
import 'package:immich_mobile/shared/models/user.dart';
|
|
import 'package:immich_mobile/shared/providers/api.provider.dart';
|
|
import 'package:immich_mobile/shared/providers/db.provider.dart';
|
|
import 'package:immich_mobile/shared/services/api.service.dart';
|
|
import 'package:immich_mobile/shared/services/sync.service.dart';
|
|
import 'package:immich_mobile/utils/files_helper.dart';
|
|
import 'package:isar/isar.dart';
|
|
import 'package:openapi/api.dart';
|
|
|
|
final userServiceProvider = Provider(
|
|
(ref) => UserService(
|
|
ref.watch(apiServiceProvider),
|
|
ref.watch(dbProvider),
|
|
ref.watch(syncServiceProvider),
|
|
),
|
|
);
|
|
|
|
class UserService {
|
|
final ApiService _apiService;
|
|
final Isar _db;
|
|
final SyncService _syncService;
|
|
|
|
UserService(this._apiService, this._db, this._syncService);
|
|
|
|
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<List<User>> getUsersInDb({bool self = false}) async {
|
|
if (self) {
|
|
return _db.users.where().findAll();
|
|
}
|
|
final int userId = Store.get<User>(StoreKey.currentUser)!.isarId;
|
|
return _db.users.where().isarIdNotEqualTo(userId).findAll();
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
Future<bool> refreshUsers() async {
|
|
final List<User>? users = await _getAllUsers(isAll: true);
|
|
if (users == null) {
|
|
return false;
|
|
}
|
|
return _syncService.syncUsersFromServer(users);
|
|
}
|
|
}
|