fluffychat/lib/utils/localized_exception_extension.dart

109 lines
3.4 KiB
Dart
Raw Normal View History

import 'dart:io';
2024-09-22 17:18:08 +00:00
import 'dart:math';
2020-12-25 08:58:34 +00:00
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
2020-12-25 08:58:34 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2024-08-27 05:46:48 +00:00
import 'package:http/http.dart';
import 'package:matrix/encryption.dart';
2021-10-26 16:50:34 +00:00
import 'package:matrix/matrix.dart';
2020-12-25 08:58:34 +00:00
2021-10-30 12:06:10 +00:00
import 'uia_request_manager.dart';
2020-12-25 08:58:34 +00:00
extension LocalizedExceptionExtension on Object {
2024-09-22 17:18:08 +00:00
static String _formatFileSize(int size) {
if (size < 1024) return '$size B';
final i = (log(size) / log(1024)).floor();
final num = (size / pow(1024, i));
final round = num.round();
final numString = round < 10
? num.toStringAsFixed(2)
: round < 100
? num.toStringAsFixed(1)
: round.toString();
return '$numString ${'kMGTPEZY'[i - 1]}B';
}
String toLocalizedString(
BuildContext context, [
ExceptionContext? exceptionContext,
]) {
2024-09-22 17:18:08 +00:00
if (this is FileTooBigMatrixException) {
final exception = this as FileTooBigMatrixException;
return L10n.of(context)!.fileIsTooBigForServer(
_formatFileSize(exception.maxFileSize),
);
}
2020-12-25 08:58:34 +00:00
if (this is MatrixException) {
switch ((this as MatrixException).error) {
case MatrixError.M_FORBIDDEN:
if (exceptionContext == ExceptionContext.changePassword) {
return L10n.of(context)!.passwordIsWrong;
}
return L10n.of(context)!.noPermission;
2020-12-25 08:58:34 +00:00
case MatrixError.M_LIMIT_EXCEEDED:
return L10n.of(context)!.tooManyRequestsWarning;
2020-12-25 08:58:34 +00:00
default:
return (this as MatrixException).errorMessage;
}
}
if (this is InvalidPassphraseException) {
return L10n.of(context)!.wrongRecoveryKey;
}
if (this is BadServerVersionsException) {
final serverVersions = (this as BadServerVersionsException)
.serverVersions
.toString()
.replaceAll('{', '"')
.replaceAll('}', '"');
final supportedVersions = (this as BadServerVersionsException)
.supportedVersions
.toString()
.replaceAll('{', '"')
.replaceAll('}', '"');
2023-01-26 08:47:30 +00:00
return L10n.of(context)!.badServerVersionsException(
serverVersions,
supportedVersions,
serverVersions,
supportedVersions,
);
}
if (this is BadServerLoginTypesException) {
final serverVersions = (this as BadServerLoginTypesException)
.serverLoginTypes
.toString()
.replaceAll('{', '"')
.replaceAll('}', '"');
final supportedVersions = (this as BadServerLoginTypesException)
.supportedLoginTypes
.toString()
.replaceAll('{', '"')
.replaceAll('}', '"');
2023-01-26 08:47:30 +00:00
return L10n.of(context)!.badServerLoginTypesException(
serverVersions,
supportedVersions,
supportedVersions,
);
}
2024-07-03 13:14:10 +00:00
if (this is IOException ||
2023-12-26 15:25:11 +00:00
this is SocketException ||
2024-08-27 05:46:48 +00:00
this is SyncConnectionException ||
this is ClientException) {
return L10n.of(context)!.noConnectionToTheServer;
2020-12-25 08:58:34 +00:00
}
2024-08-27 05:46:48 +00:00
if (this is FormatException &&
exceptionContext == ExceptionContext.checkHomeserver) {
return L10n.of(context)!.doesNotSeemToBeAValidHomeserver;
}
2021-11-14 12:56:36 +00:00
if (this is String) return toString();
2021-10-30 12:06:10 +00:00
if (this is UiaException) return toString();
2021-02-06 19:41:24 +00:00
Logs().w('Something went wrong: ', this);
return L10n.of(context)!.oopsSomethingWentWrong;
2020-12-25 08:58:34 +00:00
}
}
enum ExceptionContext {
changePassword,
2024-08-27 05:46:48 +00:00
checkHomeserver,
}