133b04b11c
(cherry picked from commit 35e727e795bb3c44cc9c47e02542b5bdc3955fdd)
100 lines
3.8 KiB
Dart
100 lines
3.8 KiB
Dart
import 'package:core/core.dart';
|
|
import 'package:core/utils/double_convert.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:jmap_dart_client/jmap/account_id.dart';
|
|
import 'package:jmap_dart_client/jmap/core/capability/capability_identifier.dart';
|
|
import 'package:jmap_dart_client/jmap/core/session/session.dart';
|
|
import 'package:jmap_dart_client/jmap/quotas/data_types.dart';
|
|
import 'package:tmail_ui_user/features/base/base_controller.dart';
|
|
import 'package:tmail_ui_user/features/mailbox_dashboard/presentation/controller/mailbox_dashboard_controller.dart';
|
|
import 'package:tmail_ui_user/features/quotas/domain/state/get_quotas_state.dart';
|
|
import 'package:tmail_ui_user/features/quotas/domain/use_case/get_quotas_interactor.dart';
|
|
import 'package:tmail_ui_user/features/quotas/presentation/model/quotas_state.dart';
|
|
import 'package:tmail_ui_user/main/error/capability_validator.dart';
|
|
|
|
class QuotasController extends BaseController {
|
|
final MailboxDashBoardController mailboxDashBoardController = Get.find<MailboxDashBoardController>();
|
|
final GetQuotasInteractor _getQuotasInteractor;
|
|
final usedCapacity = Rx<num>(0);
|
|
final limitCapacity = Rx<num>(0);
|
|
final warningLimitCapacity = Rx<num>(0);
|
|
final quotasState = QuotasState.notAvailable.obs;
|
|
final warningProgressConstant = 0.9;
|
|
late Worker accountIdWorker;
|
|
|
|
double get progressUsedCapacity => limitCapacity.value != 0
|
|
? (usedCapacity.value / limitCapacity.value)
|
|
: 0;
|
|
|
|
bool get enableShowWarningQuotas =>
|
|
quotasState.value != QuotasState.notAvailable &&
|
|
(quotasState.value == QuotasState.runningOutOfStorage
|
|
|| quotasState.value == QuotasState.runOutOfStorage);
|
|
|
|
final ImagePaths imagePaths = Get.find<ImagePaths>();
|
|
final ResponsiveUtils responsiveUtils = Get.find<ResponsiveUtils>();
|
|
|
|
QuotasController(this._getQuotasInteractor);
|
|
|
|
void _getQuotasAction(AccountId accountId, Session session) {
|
|
try {
|
|
requireCapability(session, accountId, [CapabilityIdentifier.jmapQuota]);
|
|
consumeState(_getQuotasInteractor.execute(mailboxDashBoardController.accountId.value!));
|
|
} catch (e) {
|
|
logError('QuotasController::_getQuotasAction():$e');
|
|
}
|
|
}
|
|
|
|
void _handleGetQuotasSuccess(GetQuotasSuccess success) {
|
|
try {
|
|
final quotas = success.quotas.firstWhere((e) => e.resourceType == ResourceType.octets);
|
|
if (quotas.used != null) {
|
|
usedCapacity.value = DoubleConvert.bytesToGigaBytes(quotas.used!.value);
|
|
}
|
|
if (quotas.limit != null) {
|
|
warningLimitCapacity.value = DoubleConvert.bytesToGigaBytes(quotas.limit!.value * warningProgressConstant);
|
|
limitCapacity.value = DoubleConvert.bytesToGigaBytes(quotas.limit!.value);
|
|
}
|
|
|
|
if(usedCapacity.value >= limitCapacity.value) {
|
|
quotasState.value = QuotasState.runOutOfStorage;
|
|
} else if (usedCapacity.value >= warningLimitCapacity.value) {
|
|
quotasState.value = QuotasState.runningOutOfStorage;
|
|
} else {
|
|
quotasState.value = QuotasState.normal;
|
|
}
|
|
} catch (e) {
|
|
quotasState.value = QuotasState.notAvailable;
|
|
logError('QuotasController::_handleGetQuotasSuccess():[NotFoundException]: $e');
|
|
}
|
|
}
|
|
|
|
void _initWorker() {
|
|
accountIdWorker = ever(mailboxDashBoardController.accountId, (accountId) {
|
|
if (accountId is AccountId && mailboxDashBoardController.sessionCurrent!= null) {
|
|
_getQuotasAction(accountId, mailboxDashBoardController.sessionCurrent!);
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
void onInit() {
|
|
_initWorker();
|
|
super.onInit();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
accountIdWorker.call();
|
|
super.onClose();
|
|
}
|
|
|
|
@override
|
|
void handleSuccessViewState(Success success) {
|
|
super.handleSuccessViewState(success);
|
|
if (success is GetQuotasSuccess) {
|
|
_handleGetQuotasSuccess(success);
|
|
}
|
|
}
|
|
}
|