TF-2271 Add dnsLookupToGetJmapUrl method in login repository/datasource

Signed-off-by: dab246 <tdvu@linagora.com>
(cherry picked from commit eb311420d9f7869af07605064a4e8d442486896a)
This commit is contained in:
dab246
2023-11-10 10:48:05 +07:00
committed by Dat Vu
parent b71328a0e4
commit 6c6e406879
19 changed files with 292 additions and 202 deletions
@@ -0,0 +1,120 @@
import 'package:tmail_ui_user/features/caching/clients/recent_login_url_cache_client.dart';
import 'package:tmail_ui_user/features/caching/clients/recent_login_username_cache_client.dart';
import 'package:tmail_ui_user/features/login/data/datasource/login_datasource.dart';
import 'package:tmail_ui_user/features/login/data/model/recent_login_url_cache.dart';
import 'package:tmail_ui_user/features/login/data/model/recent_login_username_cache.dart';
import 'package:tmail_ui_user/features/login/domain/extensions/list_recent_login_url_extension.dart';
import 'package:tmail_ui_user/features/login/domain/extensions/list_recent_login_username_extension.dart';
import 'package:tmail_ui_user/features/login/domain/model/recent_login_url.dart';
import 'package:tmail_ui_user/features/login/domain/model/recent_login_username.dart';
import 'package:tmail_ui_user/main/exceptions/exception_thrower.dart';
class HiveLoginDataSourceImpl implements LoginDataSource {
final RecentLoginUrlCacheClient _recentLoginUrlCacheClient;
final RecentLoginUsernameCacheClient _recentLoginUsernameCacheClient;
final ExceptionThrower _exceptionThrower;
HiveLoginDataSourceImpl(
this._recentLoginUrlCacheClient,
this._recentLoginUsernameCacheClient,
this._exceptionThrower
);
@override
Future<void> saveLoginUrl(RecentLoginUrl recentLoginUrl) {
return Future.sync(() async {
if (await _recentLoginUrlCacheClient.isExistItem(recentLoginUrl.url)) {
return await _recentLoginUrlCacheClient.updateItem(
recentLoginUrl.url,
recentLoginUrl.toRecentLoginUrlCache()
);
} else {
return await _recentLoginUrlCacheClient.insertItem(
recentLoginUrl.url,
recentLoginUrl.toRecentLoginUrlCache()
);
}
}).catchError(_exceptionThrower.throwException);
}
@override
Future<List<RecentLoginUrl>> getAllRecentLoginUrlLatest({int? limit, String? pattern}) {
return Future.sync(() async {
final listRecentUrlCache = await _recentLoginUrlCacheClient.getAll();
final listRecentUrl = listRecentUrlCache
.where((recentCache) => _filterRecentUrlCache(recentCache, pattern))
.map((recentCache) => recentCache.toRecentLoginUrl())
.toList();
listRecentUrl.sortByCreationDate();
final newLimit = limit ?? 5;
final newListRecentSUrl = listRecentUrl.length > newLimit
? listRecentUrl.sublist(0, newLimit)
: listRecentUrl;
return newListRecentSUrl;
}).catchError(_exceptionThrower.throwException);
}
bool _filterRecentUrlCache(RecentLoginUrlCache recentLoginUrlCache, String? pattern) {
if (pattern == null || pattern.trim().isEmpty) {
return true;
} else {
return recentLoginUrlCache.matchUrl(pattern);
}
}
@override
Future<List<RecentLoginUsername>> getAllRecentLoginUsernamesLatest({int? limit, String? pattern}) {
return Future.sync(() async {
final listRecentUsernameCache = await _recentLoginUsernameCacheClient.getAll();
final listValidRecentUsername = listRecentUsernameCache
.where((recentCache) => _filterRecentLoginUsernameCache(recentCache, pattern))
.map((recentCache) => recentCache.toRecentLoginUsername())
.toList();
listValidRecentUsername.sortByCreationDate();
final newLimit = limit ?? 5;
return listValidRecentUsername.length > newLimit
? listValidRecentUsername.sublist(0, newLimit)
: listValidRecentUsername;
}).catchError(_exceptionThrower.throwException);
}
@override
Future<void> saveLoginUsername(RecentLoginUsername recentLoginUsername) {
return Future.sync(() async {
if (await _recentLoginUsernameCacheClient.isExistItem(recentLoginUsername.username)) {
return await _recentLoginUsernameCacheClient.updateItem(
recentLoginUsername.username,
recentLoginUsername.toRecentLoginUsernameCache()
);
} else {
return await _recentLoginUsernameCacheClient.insertItem(
recentLoginUsername.username,
recentLoginUsername.toRecentLoginUsernameCache()
);
}
}).catchError(_exceptionThrower.throwException);
}
bool _filterRecentLoginUsernameCache(
RecentLoginUsernameCache recentLoginUsernameCache,
String? pattern
) {
if (pattern == null || pattern.trim().isEmpty) {
return true;
} else {
return recentLoginUsernameCache.matchUsername(pattern);
}
}
@override
Future<String> dnsLookupToGetJmapUrl(String emailAddress) {
throw UnimplementedError();
}
}
@@ -0,0 +1,43 @@
import 'package:tmail_ui_user/features/login/data/datasource/login_datasource.dart';
import 'package:tmail_ui_user/features/login/data/network/dns_service.dart';
import 'package:tmail_ui_user/features/login/domain/model/recent_login_url.dart';
import 'package:tmail_ui_user/features/login/domain/model/recent_login_username.dart';
import 'package:tmail_ui_user/main/exceptions/exception_thrower.dart';
class LoginDataSourceImpl implements LoginDataSource {
final DNSService _dnsService;
final ExceptionThrower _exceptionThrower;
LoginDataSourceImpl(
this._dnsService,
this._exceptionThrower
);
@override
Future<String> dnsLookupToGetJmapUrl(String emailAddress) {
return Future.sync(() async {
return await _dnsService.getJmapUrl(emailAddress);
}).catchError(_exceptionThrower.throwException);
}
@override
Future<List<RecentLoginUrl>> getAllRecentLoginUrlLatest({int? limit, String? pattern}) {
throw UnimplementedError();
}
@override
Future<List<RecentLoginUsername>> getAllRecentLoginUsernamesLatest({int? limit, String? pattern}) {
throw UnimplementedError();
}
@override
Future<void> saveLoginUrl(RecentLoginUrl baseUrl) {
throw UnimplementedError();
}
@override
Future<void> saveLoginUsername(RecentLoginUsername username) {
throw UnimplementedError();
}
}
@@ -1,57 +0,0 @@
import 'package:tmail_ui_user/features/caching/clients/recent_login_url_cache_client.dart';
import 'package:tmail_ui_user/features/login/data/datasource/login_url_datasource.dart';
import 'package:tmail_ui_user/features/login/data/model/recent_login_url_cache.dart';
import 'package:tmail_ui_user/features/login/domain/extensions/list_recent_login_url_extension.dart';
import 'package:tmail_ui_user/features/login/domain/model/recent_login_url.dart';
import 'package:tmail_ui_user/main/exceptions/exception_thrower.dart';
class LoginUrlDataSourceImpl implements LoginUrlDataSource {
final RecentLoginUrlCacheClient _recentLoginUrlCacheClient;
final ExceptionThrower _exceptionThrower;
LoginUrlDataSourceImpl(this._recentLoginUrlCacheClient, this._exceptionThrower);
@override
Future<void> saveLoginUrl(RecentLoginUrl recentLoginUrl) {
return Future.sync(() async {
if (await _recentLoginUrlCacheClient.isExistItem(recentLoginUrl.url)) {
await _recentLoginUrlCacheClient.updateItem(
recentLoginUrl.url,
recentLoginUrl.toRecentLoginUrlCache());
} else {
await _recentLoginUrlCacheClient.insertItem(
recentLoginUrl.url,
recentLoginUrl.toRecentLoginUrlCache());
}
}).catchError(_exceptionThrower.throwException);
}
@override
Future<List<RecentLoginUrl>> getAllRecentLoginUrlLatest({int? limit, String? pattern}) {
return Future.sync(() async {
final listRecentUrlCache = await _recentLoginUrlCacheClient.getAll();
final listRecentUrl = listRecentUrlCache
.where((recentCache) => _filterRecentUrlCache(recentCache, pattern))
.map((recentCache) => recentCache.toRecentLoginUrl())
.toList();
listRecentUrl.sortByCreationDate();
final newLimit = limit ?? 5;
final newListRecentSUrl = listRecentUrl.length > newLimit
? listRecentUrl.sublist(0, newLimit)
: listRecentUrl;
return newListRecentSUrl;
}).catchError(_exceptionThrower.throwException);
}
bool _filterRecentUrlCache(RecentLoginUrlCache recentLoginUrlCache, String? pattern) {
if (pattern == null || pattern.trim().isEmpty) {
return true;
} else {
return recentLoginUrlCache.matchUrl(pattern);
}
}
}
@@ -1,58 +0,0 @@
import 'package:tmail_ui_user/features/caching/clients/recent_login_username_cache_client.dart';
import 'package:tmail_ui_user/features/login/data/datasource/login_username_datasource.dart';
import 'package:tmail_ui_user/features/login/data/model/recent_login_username_cache.dart';
import 'package:tmail_ui_user/features/login/domain/extensions/list_recent_login_username_extension.dart';
import 'package:tmail_ui_user/features/login/domain/model/recent_login_username.dart';
import 'package:tmail_ui_user/main/exceptions/exception_thrower.dart';
class LoginUsernameDataSourceImpl implements LoginUsernameDataSource {
final RecentLoginUsernameCacheClient _recentLoginUsernameCacheClient;
final ExceptionThrower _exceptionThrower;
LoginUsernameDataSourceImpl(this._recentLoginUsernameCacheClient, this._exceptionThrower);
@override
Future<List<RecentLoginUsername>> getAllRecentLoginUsernamesLatest({int? limit, String? pattern}) {
return Future.sync(() async {
final listRecentUsernameCache = await _recentLoginUsernameCacheClient.getAll();
final listValidRecentUsername = listRecentUsernameCache
.where((recentCache) => _filterRecentLoginUsernameCache(recentCache, pattern))
.map((recentCache) => recentCache.toRecentLoginUsername())
.toList();
listValidRecentUsername.sortByCreationDate();
final newLimit = limit ?? 5;
return listValidRecentUsername.length > newLimit
? listValidRecentUsername.sublist(0, newLimit)
: listValidRecentUsername;
}).catchError(_exceptionThrower.throwException);
}
@override
Future<void> saveLoginUsername(RecentLoginUsername recentLoginUsername) {
return Future.sync(() async {
if (await _recentLoginUsernameCacheClient
.isExistItem(recentLoginUsername.username)) {
await _recentLoginUsernameCacheClient.updateItem(recentLoginUsername.username,
recentLoginUsername.toRecentLoginUsernameCache());
} else {
await _recentLoginUsernameCacheClient.insertItem(recentLoginUsername.username,
recentLoginUsername.toRecentLoginUsernameCache());
}
}).catchError(_exceptionThrower.throwException);
}
bool _filterRecentLoginUsernameCache(
RecentLoginUsernameCache recentLoginUsernameCache,
String? pattern
) {
if (pattern == null || pattern.trim().isEmpty) {
return true;
} else {
return recentLoginUsernameCache.matchUsername(pattern);
}
}
}