TF-2536 Change the logic to get all mailbox

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2024-02-05 16:16:40 +07:00
committed by Dat PHAM HOANG
parent 560bba622c
commit d8bfb83e89
19 changed files with 273 additions and 115 deletions
@@ -1,10 +1,12 @@
import 'package:collection/collection.dart';
import 'package:jmap_dart_client/jmap/account_id.dart';
import 'package:jmap_dart_client/jmap/core/user_name.dart';
import 'package:jmap_dart_client/jmap/mail/mailbox/mailbox.dart';
import 'package:model/extensions/account_id_extensions.dart';
import 'package:model/mailbox/presentation_mailbox.dart';
import 'package:tmail_ui_user/features/caching/clients/mailbox_cache_client.dart';
import 'package:tmail_ui_user/features/caching/utils/cache_utils.dart';
import 'package:tmail_ui_user/features/mailbox/data/extensions/list_mailbox_cache_extension.dart';
import 'package:tmail_ui_user/features/mailbox/data/extensions/list_mailbox_extension.dart';
import 'package:tmail_ui_user/features/mailbox/data/extensions/list_mailbox_id_extension.dart';
@@ -17,7 +19,8 @@ class MailboxCacheManager {
MailboxCacheManager(this._mailboxCacheClient);
Future<List<Mailbox>> getAllMailbox(AccountId accountId, UserName userName) async {
final mailboxCacheList = await _mailboxCacheClient.getListByTupleKey(accountId.asString, userName.value);
final nestedKey = TupleKey(accountId.asString, userName.value).encodeKey;
final mailboxCacheList = await _mailboxCacheClient.getListByNestedKey(nestedKey);
return mailboxCacheList.toMailboxList();
}
@@ -28,35 +31,35 @@ class MailboxCacheManager {
List<Mailbox>? created,
List<MailboxId>? destroyed
}) async {
final mailboxCacheExist = await _mailboxCacheClient.isExistTable();
if (mailboxCacheExist) {
final updatedCacheMailboxes = updated?.toMapCache(accountId, userName) ?? {};
final createdCacheMailboxes = created?.toMapCache(accountId, userName) ?? {};
final destroyedCacheMailboxes = destroyed?.toCacheKeyList(accountId, userName) ?? [];
await Future.wait([
_mailboxCacheClient.updateMultipleItem(updatedCacheMailboxes),
_mailboxCacheClient.insertMultipleItem(createdCacheMailboxes),
_mailboxCacheClient.deleteMultipleItem(destroyedCacheMailboxes)
]);
} else {
final createdCacheMailboxes = created?.toMapCache(accountId, userName) ?? {};
if (created?.isNotEmpty == true) {
final createdCacheMailboxes = created!.toMapCache(accountId, userName);
await _mailboxCacheClient.insertMultipleItem(createdCacheMailboxes);
}
return Future.value();
if (updated?.isNotEmpty == true) {
final updatedCacheMailboxes = updated!.toMapCache(accountId, userName);
await _mailboxCacheClient.updateMultipleItem(updatedCacheMailboxes);
}
final mailboxCacheExist = await _mailboxCacheClient.isExistTable();
if (destroyed?.isNotEmpty == true && mailboxCacheExist) {
final destroyedCacheMailboxes = destroyed!.toCacheKeyList(accountId, userName);
await _mailboxCacheClient.deleteMultipleItem(destroyedCacheMailboxes);
}
}
Future<Mailbox> getSpamMailbox(AccountId accountId, UserName userName) async {
final mailboxCachedList = await _mailboxCacheClient.getListByTupleKey(accountId.asString, userName.value);
final listSpamMailboxCached = mailboxCachedList
.toMailboxList()
.where((mailbox) => mailbox.role == PresentationMailbox.roleSpam)
.toList();
if (listSpamMailboxCached.isNotEmpty) {
return listSpamMailboxCached.first;
final mailboxList = await getAllMailbox(accountId, userName);
final spamMailbox = mailboxList.firstWhereOrNull((mailbox) => mailbox.role == PresentationMailbox.roleSpam);
if (spamMailbox != null) {
return spamMailbox;
} else {
throw NotFoundSpamMailboxCachedException();
}
}
Future<void> clearAll(AccountId accountId, UserName userName) async {
final nestedKey = TupleKey(accountId.asString, userName.value).encodeKey;
await _mailboxCacheClient.clearAllDataContainKey(nestedKey);
}
}