ente/lib/ui/account/delete_account_page.dart

235 lines
7.2 KiB
Dart
Raw Normal View History

import 'dart:convert';
2022-07-08 07:27:04 +00:00
import 'package:flutter/material.dart';
import 'package:photos/core/configuration.dart';
import 'package:photos/models/delete_account.dart';
import 'package:photos/services/local_authentication_service.dart';
import 'package:photos/services/user_service.dart';
import 'package:photos/theme/ente_theme.dart';
import 'package:photos/ui/components/button_widget.dart';
import 'package:photos/ui/components/models/button_type.dart';
import 'package:photos/utils/crypto_util.dart';
import 'package:photos/utils/dialog_util.dart';
import 'package:photos/utils/email_util.dart';
2022-07-08 07:27:04 +00:00
class DeleteAccountPage extends StatelessWidget {
const DeleteAccountPage({
2022-12-30 09:44:52 +00:00
Key? key,
2022-07-08 07:27:04 +00:00
}) : super(key: key);
@override
Widget build(BuildContext context) {
final colorScheme = getEnteColorScheme(context);
2022-07-08 07:27:04 +00:00
return Scaffold(
appBar: AppBar(
elevation: 0,
title: const Text("Delete account"),
leading: IconButton(
icon: const Icon(Icons.arrow_back),
color: Theme.of(context).iconTheme.color,
onPressed: () {
Navigator.of(context).pop();
},
),
),
body: Padding(
padding: const EdgeInsets.symmetric(vertical: 12, horizontal: 24),
2022-07-08 07:27:04 +00:00
child: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Image.asset(
'assets/broken_heart.png',
width: 200,
2022-07-08 07:27:04 +00:00
),
const SizedBox(
2022-07-12 06:08:12 +00:00
height: 24,
2022-07-08 07:27:04 +00:00
),
Center(
child: Text(
"We'll be sorry to see you go. Are you facing some issue?",
style: Theme.of(context)
.textTheme
2022-12-30 09:44:52 +00:00
.subtitle1!
.copyWith(color: colorScheme.textMuted),
2022-07-08 07:27:04 +00:00
),
),
const SizedBox(
2022-07-11 17:39:49 +00:00
height: 12,
2022-07-08 07:27:04 +00:00
),
RichText(
// textAlign: TextAlign.center,
text: TextSpan(
children: const [
TextSpan(text: "Please write to us at "),
TextSpan(
text: "feedback@ente.io",
style: TextStyle(color: Color.fromRGBO(29, 185, 84, 1)),
),
TextSpan(
text: ", maybe there is a way we can help.",
),
],
style: Theme.of(context)
.textTheme
2022-12-30 09:44:52 +00:00
.subtitle1!
.copyWith(color: colorScheme.textMuted),
2022-07-08 07:27:04 +00:00
),
),
2022-07-11 17:39:49 +00:00
const SizedBox(
height: 24,
2022-07-08 07:27:04 +00:00
),
ButtonWidget(
buttonType: ButtonType.primary,
labelText: "Yes, send feedback",
icon: Icons.check_outlined,
2022-07-08 07:27:04 +00:00
onTap: () async {
await sendEmail(
context,
to: 'feedback@ente.io',
subject: '[Feedback]',
2022-07-08 07:27:04 +00:00
);
},
),
const SizedBox(height: 8),
ButtonWidget(
buttonType: ButtonType.tertiaryCritical,
labelText: "No, delete account",
icon: Icons.no_accounts_outlined,
onTap: () async => {await _initiateDelete(context)},
shouldSurfaceExecutionStates: false,
)
2022-07-08 07:27:04 +00:00
],
),
),
),
);
}
Future<void> _initiateDelete(BuildContext context) async {
final deleteChallengeResponse =
await UserService.instance.getDeleteChallenge(context);
if (deleteChallengeResponse == null) {
return;
}
if (deleteChallengeResponse.allowDelete) {
await _confirmAndDelete(context, deleteChallengeResponse);
} else {
await _requestEmailForDeletion(context);
}
}
Future<void> _confirmAndDelete(
BuildContext context,
DeleteChallengeResponse response,
) async {
2022-09-06 08:35:34 +00:00
final hasAuthenticated =
2022-09-05 12:29:24 +00:00
await LocalAuthenticationService.instance.requestLocalAuthentication(
context,
"Please authenticate to initiate account deletion",
);
2022-09-06 08:35:34 +00:00
if (hasAuthenticated) {
final choice = await showChoiceDialog(
context,
title: 'Are you sure you want to delete your account?',
body:
'Your uploaded data will be scheduled for deletion, and your account'
' will be permanently deleted. \n\nThis action is not reversible.',
2022-12-26 12:06:53 +00:00
firstButtonLabel: "Delete my account",
isCritical: true,
firstButtonOnTap: () async {
final decryptChallenge = CryptoUtil.openSealSync(
2023-02-03 04:41:45 +00:00
CryptoUtil.base642bin(response.encryptedChallenge),
CryptoUtil.base642bin(
2022-12-30 09:44:52 +00:00
Configuration.instance.getKeyAttributes()!.publicKey,
),
2022-12-30 09:44:52 +00:00
Configuration.instance.getSecretKey()!,
);
final challengeResponseStr = utf8.decode(decryptChallenge);
await UserService.instance
.deleteAccount(context, challengeResponseStr);
},
2022-09-03 03:02:42 +00:00
);
if (choice!.action == ButtonAction.error) {
showGenericErrorDialog(context: context);
2022-12-22 13:38:39 +00:00
}
if (choice.action != ButtonAction.first) {
2022-09-03 03:02:42 +00:00
return;
}
Navigator.of(context).popUntil((route) => route.isFirst);
2022-07-08 07:27:04 +00:00
}
}
Future<void> _requestEmailForDeletion(BuildContext context) async {
2022-08-29 14:43:31 +00:00
final AlertDialog alert = AlertDialog(
title: const Text(
"Delete account",
style: TextStyle(
color: Colors.red,
),
),
content: RichText(
text: TextSpan(
children: [
const TextSpan(
text: "Please send an email to ",
),
TextSpan(
text: "account-deletion@ente.io",
style: TextStyle(
color: Colors.orange[300],
),
),
const TextSpan(
text:
" from your registered email address.\n\nYour request will be processed within 72 hours.",
),
],
style: TextStyle(
color: Theme.of(context).colorScheme.onSurface,
height: 1.5,
fontSize: 16,
),
),
),
actions: [
TextButton(
child: const Text(
"Send email",
style: TextStyle(
color: Colors.red,
),
),
onPressed: () async {
Navigator.of(context, rootNavigator: true).pop('dialog');
await sendEmail(
context,
to: 'account-deletion@ente.io',
subject: '[Delete account]',
);
},
),
TextButton(
child: Text(
"Ok",
style: TextStyle(
color: Theme.of(context).colorScheme.onSurface,
),
),
onPressed: () {
Navigator.of(context, rootNavigator: true).pop('dialog');
},
),
],
);
showDialog(
context: context,
builder: (BuildContext context) {
return alert;
},
);
2022-07-08 07:27:04 +00:00
}
}