ente/lib/ui/settings/account_section_widget.dart

139 lines
4.6 KiB
Dart
Raw Normal View History

import 'package:expandable/expandable.dart';
import 'package:flutter/material.dart';
2021-07-28 15:41:45 +00:00
import 'package:flutter_sodium/flutter_sodium.dart';
import 'package:photos/core/configuration.dart';
2021-07-28 15:41:45 +00:00
import 'package:photos/services/user_service.dart';
import 'package:photos/ui/account/change_email_dialog.dart';
import 'package:photos/ui/account/password_entry_page.dart';
import 'package:photos/ui/account/recovery_key_page.dart';
import 'package:photos/ui/settings/common_settings.dart';
import 'package:photos/ui/settings/settings_section_title.dart';
import 'package:photos/ui/settings/settings_text_item.dart';
2022-07-01 14:39:02 +00:00
import 'package:photos/ui/tools/app_lock.dart';
2021-07-28 15:41:45 +00:00
import 'package:photos/utils/auth_util.dart';
import 'package:photos/utils/dialog_util.dart';
2022-04-06 17:41:24 +00:00
import 'package:photos/utils/navigation_util.dart';
2021-07-28 15:41:45 +00:00
import 'package:photos/utils/toast_util.dart';
class AccountSectionWidget extends StatefulWidget {
AccountSectionWidget({Key key}) : super(key: key);
@override
AccountSectionWidgetState createState() => AccountSectionWidgetState();
}
class AccountSectionWidgetState extends State<AccountSectionWidget> {
@override
Widget build(BuildContext context) {
return ExpandablePanel(
2022-07-04 06:02:17 +00:00
header: const SettingsSectionTitle("Account"),
collapsed: Container(),
expanded: _getSectionOptions(context),
theme: getExpandableTheme(context),
);
}
Column _getSectionOptions(BuildContext context) {
2021-07-27 14:51:45 +00:00
return Column(
children: [
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () async {
AppLock.of(context).setEnabled(false);
2022-05-30 04:50:21 +00:00
String reason = "Please authenticate to view your recovery key";
final result = await requestAuthentication(reason);
AppLock.of(context)
.setEnabled(Configuration.instance.shouldShowLockScreen());
2021-07-28 15:41:45 +00:00
if (!result) {
2022-06-10 14:29:56 +00:00
showToast(context, reason);
2021-07-28 15:41:45 +00:00
return;
}
String recoveryKey;
try {
recoveryKey = await _getOrCreateRecoveryKey();
} catch (e) {
showGenericErrorDialog(context);
return;
}
2022-04-06 17:41:24 +00:00
routeToPage(
2022-06-11 08:23:52 +00:00
context,
RecoveryKeyPage(
recoveryKey,
"OK",
showAppBar: true,
onDone: () {},
),
);
2021-07-28 15:41:45 +00:00
},
2022-07-04 06:02:17 +00:00
child: const SettingsTextItem(
text: "Recovery key",
icon: Icons.navigate_next,
),
2021-07-28 15:41:45 +00:00
),
sectionOptionDivider,
2021-07-28 18:06:30 +00:00
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () async {
AppLock.of(context).setEnabled(false);
2022-05-30 04:50:21 +00:00
String reason = "Please authenticate to change your email";
final result = await requestAuthentication(reason);
AppLock.of(context)
.setEnabled(Configuration.instance.shouldShowLockScreen());
if (!result) {
2022-06-10 14:29:56 +00:00
showToast(context, reason);
return;
}
2021-07-28 18:06:30 +00:00
showDialog(
context: context,
builder: (BuildContext context) {
2022-07-04 06:02:17 +00:00
return const ChangeEmailDialog();
2021-07-28 18:06:30 +00:00
},
barrierColor: Colors.black.withOpacity(0.85),
barrierDismissible: false,
);
},
2022-07-04 06:02:17 +00:00
child: const SettingsTextItem(
text: "Change email",
icon: Icons.navigate_next,
),
2021-07-28 18:06:30 +00:00
),
sectionOptionDivider,
2021-07-28 15:41:45 +00:00
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () async {
AppLock.of(context).setEnabled(false);
2022-05-30 04:50:21 +00:00
String reason = "Please authenticate to change your password";
final result = await requestAuthentication(reason);
AppLock.of(context)
.setEnabled(Configuration.instance.shouldShowLockScreen());
2021-07-28 15:41:45 +00:00
if (!result) {
2022-06-10 14:29:56 +00:00
showToast(context, reason);
2021-07-28 15:41:45 +00:00
return;
}
Navigator.of(context).push(
MaterialPageRoute(
builder: (BuildContext context) {
return PasswordEntryPage(
mode: PasswordEntryMode.update,
);
},
),
);
},
2022-07-04 06:02:17 +00:00
child: const SettingsTextItem(
2022-06-11 08:23:52 +00:00
text: "Change password",
icon: Icons.navigate_next,
),
2021-07-27 14:51:45 +00:00
),
],
);
}
2021-07-28 15:41:45 +00:00
Future<String> _getOrCreateRecoveryKey() async {
return Sodium.bin2hex(
2022-06-11 08:23:52 +00:00
await UserService.instance.getOrCreateRecoveryKey(context),
);
}
}