ente/lib/ui/settings/account_section_widget.dart

157 lines
5.4 KiB
Dart
Raw Normal View History

import 'dart:io';
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/app_lock.dart';
2021-07-28 18:06:30 +00:00
import 'package:photos/ui/change_email_dialog.dart';
2021-07-28 15:41:45 +00:00
import 'package:photos/ui/password_entry_page.dart';
import 'package:photos/ui/payment/subscription.dart';
2021-07-28 15:41:45 +00:00
import 'package:photos/ui/recovery_key_dialog.dart';
import 'package:photos/ui/settings/settings_section_title.dart';
import 'package:photos/ui/settings/settings_text_item.dart';
2021-07-28 15:41:45 +00:00
import 'package:photos/utils/auth_util.dart';
import 'package:photos/utils/dialog_util.dart';
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) {
2021-07-27 14:51:45 +00:00
return Column(
children: [
SettingsSectionTitle("account"),
Padding(
padding: EdgeInsets.all(4),
),
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () async {
Navigator.of(context).push(
MaterialPageRoute(
builder: (BuildContext context) {
return getSubscriptionPage();
},
2021-07-27 14:51:45 +00:00
),
);
},
child: SettingsTextItem(
text: "subscription plan", icon: Icons.navigate_next),
),
Platform.isIOS
? Padding(padding: EdgeInsets.all(2))
: Padding(padding: EdgeInsets.all(2)),
Divider(height: 4),
Platform.isIOS
2021-07-28 15:41:45 +00:00
? Padding(padding: EdgeInsets.all(2))
: Padding(padding: EdgeInsets.all(4)),
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () async {
AppLock.of(context).setEnabled(false);
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) {
showToast(reason);
2021-07-28 15:41:45 +00:00
return;
}
String recoveryKey;
try {
recoveryKey = await _getOrCreateRecoveryKey();
} catch (e) {
showGenericErrorDialog(context);
return;
}
showDialog(
context: context,
builder: (BuildContext context) {
return RecoveryKeyDialog(recoveryKey, "ok", () {});
},
barrierColor: Colors.black.withOpacity(0.85),
);
},
child:
SettingsTextItem(text: "recovery key", icon: Icons.navigate_next),
),
Platform.isIOS
? Padding(padding: EdgeInsets.all(2))
: Padding(padding: EdgeInsets.all(4)),
Divider(height: 4),
Platform.isIOS
? Padding(padding: EdgeInsets.all(2))
: Padding(padding: EdgeInsets.all(2)),
2021-07-28 18:06:30 +00:00
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () async {
AppLock.of(context).setEnabled(false);
String reason = "please authenticate to change your email";
final result = await requestAuthentication(reason);
AppLock.of(context)
.setEnabled(Configuration.instance.shouldShowLockScreen());
if (!result) {
showToast(reason);
return;
}
2021-07-28 18:06:30 +00:00
showDialog(
context: context,
builder: (BuildContext context) {
return ChangeEmailDialog();
},
barrierColor: Colors.black.withOpacity(0.85),
barrierDismissible: false,
);
},
child:
SettingsTextItem(text: "change email", icon: Icons.navigate_next),
),
Padding(padding: EdgeInsets.all(2)),
Divider(height: 4),
Platform.isIOS
? Padding(padding: EdgeInsets.all(2))
: Padding(padding: EdgeInsets.all(4)),
2021-07-28 15:41:45 +00:00
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () async {
AppLock.of(context).setEnabled(false);
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) {
showToast(reason);
2021-07-28 15:41:45 +00:00
return;
}
Navigator.of(context).push(
MaterialPageRoute(
builder: (BuildContext context) {
return PasswordEntryPage(
mode: PasswordEntryMode.update,
);
},
),
);
},
child: SettingsTextItem(
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(
await UserService.instance.getOrCreateRecoveryKey(context));
}
}