2023-02-01 15:37:18 +00:00
|
|
|
import 'dart:convert';
|
|
|
|
import 'dart:io';
|
|
|
|
|
2023-02-07 14:53:57 +00:00
|
|
|
import 'package:cake_wallet/entities/preferences_key.dart';
|
2023-02-01 15:37:18 +00:00
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
import 'package:cake_wallet/main.dart';
|
|
|
|
import 'package:cake_wallet/src/widgets/alert_with_two_actions.dart';
|
|
|
|
import 'package:cake_wallet/utils/show_pop_up.dart';
|
2023-02-06 16:33:12 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
2023-02-01 15:37:18 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_mailer/flutter_mailer.dart';
|
|
|
|
import 'package:path_provider/path_provider.dart';
|
2023-02-07 14:53:57 +00:00
|
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
2023-02-01 15:37:18 +00:00
|
|
|
|
|
|
|
class ExceptionHandler {
|
|
|
|
static bool _hasError = false;
|
2023-02-08 18:47:23 +00:00
|
|
|
static const _coolDownDurationInDays = 7;
|
2023-02-01 15:37:18 +00:00
|
|
|
|
|
|
|
static void _saveException(String? error, StackTrace? stackTrace) async {
|
|
|
|
final appDocDir = await getApplicationDocumentsDirectory();
|
|
|
|
|
|
|
|
final file = File('${appDocDir.path}/error.txt');
|
|
|
|
final exception = {
|
|
|
|
"${DateTime.now()}": {
|
|
|
|
"Error": error,
|
|
|
|
"StackTrace": stackTrace.toString(),
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const String separator = '''\n\n==========================================================
|
|
|
|
==========================================================\n\n''';
|
|
|
|
|
|
|
|
await file.writeAsString(
|
|
|
|
jsonEncode(exception) + separator,
|
|
|
|
mode: FileMode.append,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _sendExceptionFile() async {
|
|
|
|
try {
|
|
|
|
final appDocDir = await getApplicationDocumentsDirectory();
|
|
|
|
|
|
|
|
final file = File('${appDocDir.path}/error.txt');
|
|
|
|
|
|
|
|
final MailOptions mailOptions = MailOptions(
|
|
|
|
subject: 'Mobile App Issue',
|
|
|
|
recipients: ['support@cakewallet.com'],
|
|
|
|
attachments: [file.path],
|
|
|
|
);
|
|
|
|
|
|
|
|
final result = await FlutterMailer.send(mailOptions);
|
|
|
|
|
|
|
|
// Clear file content if the error was sent or saved.
|
|
|
|
// On android we can't know if it was sent or saved
|
|
|
|
if (result.name == MailerResponse.sent.name ||
|
|
|
|
result.name == MailerResponse.saved.name ||
|
|
|
|
result.name == MailerResponse.android.name) {
|
|
|
|
file.writeAsString("", mode: FileMode.write);
|
|
|
|
}
|
|
|
|
} catch (e, s) {
|
|
|
|
_saveException(e.toString(), s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-07 14:53:57 +00:00
|
|
|
static void onError(FlutterErrorDetails errorDetails) async {
|
2023-02-06 16:33:12 +00:00
|
|
|
if (kDebugMode) {
|
|
|
|
FlutterError.presentError(errorDetails);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-02-03 12:44:13 +00:00
|
|
|
if (_ignoreError(errorDetails.exception.toString())) {
|
2023-02-01 15:37:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_saveException(errorDetails.exception.toString(), errorDetails.stack);
|
|
|
|
|
2023-02-07 14:53:57 +00:00
|
|
|
final sharedPrefs = await SharedPreferences.getInstance();
|
|
|
|
|
|
|
|
final lastPopupDate =
|
|
|
|
DateTime.tryParse(sharedPrefs.getString(PreferencesKey.lastPopupDate) ?? '') ??
|
2023-02-08 18:47:23 +00:00
|
|
|
DateTime.now().subtract(Duration(days: _coolDownDurationInDays + 1));
|
2023-02-07 14:53:57 +00:00
|
|
|
|
|
|
|
final durationSinceLastReport = DateTime.now().difference(lastPopupDate).inDays;
|
|
|
|
|
2023-02-08 18:47:23 +00:00
|
|
|
if (_hasError || durationSinceLastReport < _coolDownDurationInDays) {
|
2023-02-01 15:37:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
_hasError = true;
|
|
|
|
|
2023-02-07 14:53:57 +00:00
|
|
|
sharedPrefs.setString(PreferencesKey.lastPopupDate, DateTime.now().toString());
|
|
|
|
|
2023-02-01 15:37:18 +00:00
|
|
|
WidgetsBinding.instance.addPostFrameCallback(
|
|
|
|
(timeStamp) async {
|
|
|
|
await showPopUp<void>(
|
|
|
|
context: navigatorKey.currentContext!,
|
|
|
|
builder: (context) {
|
|
|
|
return AlertWithTwoActions(
|
|
|
|
isDividerExist: true,
|
|
|
|
alertTitle: S.of(context).error,
|
|
|
|
alertContent: S.of(context).error_dialog_content,
|
|
|
|
rightButtonText: S.of(context).send,
|
|
|
|
leftButtonText: S.of(context).do_not_send,
|
|
|
|
actionRightButton: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
_sendExceptionFile();
|
|
|
|
},
|
|
|
|
actionLeftButton: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
_hasError = false;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-03 12:44:13 +00:00
|
|
|
/// Ignore User related errors or system errors
|
2023-02-08 18:16:12 +00:00
|
|
|
static bool _ignoreError(String error) =>
|
|
|
|
_ignoredErrors.any((element) => error.contains(element));
|
|
|
|
|
|
|
|
static const List<String> _ignoredErrors = const [
|
|
|
|
"errno = 103", // SocketException: Software caused connection abort
|
|
|
|
"errno = 9", // SocketException: Bad file descriptor
|
|
|
|
"errno = 32", // SocketException: Write failed (OS Error: Broken pipe)
|
|
|
|
"errno = 60", // SocketException: Operation timed out
|
|
|
|
"errno = 54", // SocketException: Connection reset by peer
|
|
|
|
"errno = 49", // SocketException: Can't assign requested address
|
|
|
|
"errno = 28", // OS Error: No space left on device
|
|
|
|
"PERMISSION_NOT_GRANTED",
|
|
|
|
];
|
2023-02-01 15:37:18 +00:00
|
|
|
}
|