105 lines
3.4 KiB
Dart
105 lines
3.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:matrix/matrix.dart';
|
|
|
|
import 'package:fluffychat/config/setting_keys.dart';
|
|
import 'package:fluffychat/l10n/l10n.dart';
|
|
import 'package:fluffychat/widgets/adaptive_dialogs/show_ok_cancel_alert_dialog.dart';
|
|
import 'package:fluffychat/widgets/adaptive_dialogs/show_text_input_dialog.dart';
|
|
import 'package:fluffychat/widgets/app_lock.dart';
|
|
import 'package:fluffychat/widgets/future_loading_dialog.dart';
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
|
import 'settings_security_view.dart';
|
|
|
|
class SettingsSecurity extends StatefulWidget {
|
|
const SettingsSecurity({super.key});
|
|
|
|
@override
|
|
SettingsSecurityController createState() => SettingsSecurityController();
|
|
}
|
|
|
|
class SettingsSecurityController extends State<SettingsSecurity> {
|
|
Future<void> setAppLockAction() async {
|
|
if (AppLock.of(context).isActive) {
|
|
AppLock.of(context).showLockScreen();
|
|
}
|
|
final newLock = await showTextInputDialog(
|
|
useRootNavigator: false,
|
|
context: context,
|
|
title: L10n.of(context).pleaseChooseAPasscode,
|
|
message: L10n.of(context).pleaseEnter4Digits,
|
|
cancelLabel: L10n.of(context).cancel,
|
|
validator: (text) {
|
|
if (text.isEmpty || (text.length == 4 && int.tryParse(text)! >= 0)) {
|
|
return null;
|
|
}
|
|
return L10n.of(context).pleaseEnter4Digits;
|
|
},
|
|
keyboardType: TextInputType.number,
|
|
obscureText: true,
|
|
maxLines: 1,
|
|
minLines: 1,
|
|
maxLength: 4,
|
|
);
|
|
if (newLock != null) {
|
|
await AppLock.of(context).changePincode(newLock);
|
|
}
|
|
}
|
|
|
|
Future<void> deleteAccountAction() async {
|
|
if (await showOkCancelAlertDialog(
|
|
useRootNavigator: false,
|
|
context: context,
|
|
title: L10n.of(context).warning,
|
|
message: L10n.of(context).deactivateAccountWarning,
|
|
okLabel: L10n.of(context).ok,
|
|
cancelLabel: L10n.of(context).cancel,
|
|
isDestructive: true,
|
|
) ==
|
|
OkCancelResult.cancel) {
|
|
return;
|
|
}
|
|
final supposedMxid = Matrix.of(context).client.userID!;
|
|
final mxid = await showTextInputDialog(
|
|
useRootNavigator: false,
|
|
context: context,
|
|
title: L10n.of(context).confirmMatrixId,
|
|
validator: (text) => text == supposedMxid
|
|
? null
|
|
: L10n.of(context).supposedMxid(supposedMxid),
|
|
isDestructive: true,
|
|
okLabel: L10n.of(context).delete,
|
|
cancelLabel: L10n.of(context).cancel,
|
|
);
|
|
if (mxid == null || mxid.isEmpty || mxid != supposedMxid) {
|
|
return;
|
|
}
|
|
final resp = await showFutureLoadingDialog(
|
|
context: context,
|
|
delay: false,
|
|
future: () =>
|
|
Matrix.of(context).client.uiaRequestBackground<IdServerUnbindResult?>(
|
|
(auth) => Matrix.of(context).client.deactivateAccount(auth: auth),
|
|
),
|
|
);
|
|
|
|
if (!resp.isError) {
|
|
await showFutureLoadingDialog(
|
|
context: context,
|
|
future: () => Matrix.of(context).client.logout(),
|
|
);
|
|
}
|
|
}
|
|
|
|
Future<void> dehydrateAction() => Matrix.of(context).dehydrateAction(context);
|
|
|
|
Future<void> changeShareKeysWith(ShareKeysWith? shareKeysWith) async {
|
|
if (shareKeysWith == null) return;
|
|
AppSettings.shareKeysWith.setItem(shareKeysWith.name);
|
|
Matrix.of(context).client.shareKeysWith = shareKeysWith;
|
|
setState(() {});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) => SettingsSecurityView(this);
|
|
}
|