ente/lib/ui/account/recovery_key_page.dart

256 lines
8 KiB
Dart
Raw Normal View History

2022-04-06 17:41:24 +00:00
import 'dart:io' as io;
2022-07-03 06:49:00 +00:00
2022-04-06 17:41:24 +00:00
import 'package:bip39/bip39.dart' as bip39;
import 'package:dotted_border/dotted_border.dart';
2022-03-26 01:49:14 +00:00
import 'package:flutter/material.dart';
2022-04-06 17:51:08 +00:00
import 'package:flutter/services.dart';
2022-03-26 01:49:14 +00:00
import 'package:photos/core/configuration.dart';
2022-04-06 17:41:24 +00:00
import 'package:photos/core/constants.dart';
2022-04-08 05:59:20 +00:00
import 'package:photos/ente_theme_data.dart';
2022-04-21 05:12:18 +00:00
import 'package:photos/ui/common/gradientButton.dart';
2022-04-06 17:51:08 +00:00
import 'package:photos/utils/toast_util.dart';
2022-04-06 17:41:24 +00:00
import 'package:share_plus/share_plus.dart';
import 'package:step_progress_indicator/step_progress_indicator.dart';
2022-04-06 17:41:24 +00:00
class RecoveryKeyPage extends StatefulWidget {
final bool showAppBar;
final String recoveryKey;
final String doneText;
final Function() onDone;
final bool isDismissible;
final String title;
final String text;
final String subText;
final bool showProgressBar;
2022-04-06 17:41:24 +00:00
2022-06-11 08:23:52 +00:00
const RecoveryKeyPage(
this.recoveryKey,
this.doneText, {
Key key,
this.showAppBar,
this.onDone,
this.isDismissible,
this.title,
this.text,
this.subText,
this.showProgressBar = false,
}) : super(key: key);
2022-04-06 17:41:24 +00:00
@override
_RecoveryKeyPageState createState() => _RecoveryKeyPageState();
}
2022-03-26 01:49:14 +00:00
2022-04-06 17:41:24 +00:00
class _RecoveryKeyPageState extends State<RecoveryKeyPage> {
bool _hasTriedToSave = false;
final _recoveryKeyFile = io.File(
2022-06-11 08:23:52 +00:00
Configuration.instance.getTempDirectory() + "ente-recovery-key.txt",
);
2022-03-26 01:49:14 +00:00
@override
Widget build(BuildContext context) {
2022-04-06 17:41:24 +00:00
final String recoveryKey = bip39.entropyToMnemonic(widget.recoveryKey);
2022-04-08 05:59:20 +00:00
if (recoveryKey.split(' ').length != kMnemonicKeyWordCount) {
2022-04-06 17:41:24 +00:00
throw AssertionError(
2022-06-11 08:23:52 +00:00
'recovery code should have $kMnemonicKeyWordCount words',
);
2022-04-06 17:41:24 +00:00
}
2022-03-26 01:49:14 +00:00
return Scaffold(
appBar: widget.showProgressBar
2022-04-06 17:41:24 +00:00
? AppBar(
elevation: 0,
title: Hero(
tag: "recovery_key",
child: StepProgressIndicator(
totalSteps: 4,
currentStep: 3,
selectedColor: Theme.of(context).buttonColor,
roundedEdges: Radius.circular(10),
2022-06-07 04:40:29 +00:00
unselectedColor:
Theme.of(context).colorScheme.stepProgressUnselectedColor,
),
),
2022-04-08 05:59:20 +00:00
)
: widget.showAppBar
? AppBar(
elevation: 0,
title: Text(widget.title ?? "Recovery key"),
)
: null,
2022-04-06 17:41:24 +00:00
body: Padding(
padding: EdgeInsets.fromLTRB(
2022-06-11 08:23:52 +00:00
20,
widget.showAppBar
? 40
: widget.showProgressBar
? 32
: 120,
20,
20,
),
2022-04-06 17:41:24 +00:00
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisSize: MainAxisSize.max,
children: [
2022-05-03 11:40:45 +00:00
widget.showAppBar
? const SizedBox.shrink()
2022-06-11 08:23:52 +00:00
: Text(
widget.title ?? "Recovery key",
style: Theme.of(context).textTheme.headline4,
),
2022-05-03 11:40:45 +00:00
Padding(padding: EdgeInsets.all(widget.showAppBar ? 0 : 12)),
2022-04-06 17:41:24 +00:00
Text(
widget.text ??
"If you forget your password, the only way you can recover your data is with this key.",
2022-04-08 05:59:20 +00:00
style: Theme.of(context).textTheme.subtitle1,
2022-04-06 17:41:24 +00:00
),
Padding(padding: EdgeInsets.only(top: 24)),
DottedBorder(
color: Color.fromRGBO(17, 127, 56, 1),
//color of dotted/dash line
strokeWidth: 1,
//thickness of dash/dots
dashPattern: const [6, 6],
radius: Radius.circular(8),
//dash patterns, 10 is dash width, 6 is space width
child: SizedBox(
//inner container
2022-05-16 20:45:52 +00:00
height: 120, //height of inner container
2022-04-06 17:41:24 +00:00
width:
2022-04-08 05:59:20 +00:00
double.infinity, //width to 100% match to parent container.
2022-04-06 17:41:24 +00:00
// ignore: prefer_const_literals_to_create_immutables
child: Column(
children: [
2022-04-06 17:51:08 +00:00
GestureDetector(
onTap: () async {
2022-04-08 05:59:20 +00:00
await Clipboard.setData(
2022-06-11 08:23:52 +00:00
ClipboardData(text: recoveryKey),
);
2022-06-10 14:29:56 +00:00
showToast(context, "Recovery key copied to clipboard");
2022-04-06 17:51:08 +00:00
setState(() {
_hasTriedToSave = true;
});
},
child: Container(
decoration: BoxDecoration(
border: Border.all(
color: Color.fromRGBO(49, 155, 86, .2),
),
borderRadius: BorderRadius.all(
2022-04-28 02:11:42 +00:00
Radius.circular(2),
2022-04-06 17:51:08 +00:00
),
2022-04-28 02:11:42 +00:00
color:
Theme.of(context).colorScheme.recoveryKeyBoxColor,
2022-04-06 17:41:24 +00:00
),
2022-04-06 17:51:08 +00:00
height: 120,
padding: EdgeInsets.all(20),
width: double.infinity,
child: Text(
recoveryKey,
2022-04-08 05:59:20 +00:00
style: Theme.of(context).textTheme.bodyText1,
2022-04-06 17:41:24 +00:00
),
),
),
],
),
),
),
2022-05-16 20:45:52 +00:00
SizedBox(
height: 80,
width: double.infinity,
child: Padding(
2022-06-11 08:23:52 +00:00
child: Text(
widget.subText ??
"We dont store this key, please save this in a safe place.",
style: Theme.of(context).textTheme.bodyText1,
),
padding: EdgeInsets.symmetric(vertical: 20),
),
2022-05-16 20:45:52 +00:00
),
2022-04-06 17:41:24 +00:00
Expanded(
child: Container(
alignment: Alignment.bottomCenter,
width: double.infinity,
padding: EdgeInsets.fromLTRB(10, 10, 10, 24),
child: Column(
2022-06-11 08:23:52 +00:00
mainAxisAlignment: MainAxisAlignment.end,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: _saveOptions(context, recoveryKey),
),
2022-04-06 17:41:24 +00:00
),
)
],
),
),
2022-03-26 01:49:14 +00:00
);
}
2022-04-06 17:41:24 +00:00
List<Widget> _saveOptions(BuildContext context, String recoveryKey) {
List<Widget> childrens = [];
if (!_hasTriedToSave) {
2022-06-11 08:23:52 +00:00
childrens.add(
ElevatedButton(
child: Text('Do this later'),
style: Theme.of(context).colorScheme.optionalActionButtonStyle,
onPressed: () async {
await _saveKeys();
},
),
);
2022-04-06 17:41:24 +00:00
childrens.add(SizedBox(height: 10));
2022-03-26 01:49:14 +00:00
}
2022-04-06 17:41:24 +00:00
2022-06-11 08:23:52 +00:00
childrens.add(
GradientButton(
child: Text(
'Save key',
style: gradientButtonTextTheme(),
),
linearGradientColors: const [
Color(0xFF2CD267),
Color(0xFF1DB954),
],
onTap: () async {
await _shareRecoveryKey(recoveryKey);
},
2022-04-21 05:12:18 +00:00
),
2022-06-11 08:23:52 +00:00
);
2022-04-06 17:41:24 +00:00
if (_hasTriedToSave) {
childrens.add(SizedBox(height: 10));
2022-06-11 08:23:52 +00:00
childrens.add(
ElevatedButton(
child: Text(widget.doneText),
onPressed: () async {
await _saveKeys();
},
),
);
2022-03-26 01:49:14 +00:00
}
2022-04-06 17:41:24 +00:00
childrens.add(SizedBox(height: 12));
return childrens;
}
Future _shareRecoveryKey(String recoveryKey) async {
if (_recoveryKeyFile.existsSync()) {
await _recoveryKeyFile.delete();
2022-03-26 01:49:14 +00:00
}
2022-04-06 17:41:24 +00:00
_recoveryKeyFile.writeAsStringSync(recoveryKey);
await Share.shareFiles([_recoveryKeyFile.path]);
Future.delayed(Duration(milliseconds: 500), () {
if (mounted) {
setState(() {
_hasTriedToSave = true;
});
}
});
}
Future<void> _saveKeys() async {
Navigator.of(context).pop();
if (_recoveryKeyFile.existsSync()) {
await _recoveryKeyFile.delete();
}
widget.onDone();
2022-03-26 01:49:14 +00:00
}
}