|
|
|
@ -182,8 +182,8 @@ class _BootstrapDialogState extends State<BootstrapDialog> {
|
|
|
|
|
TextField(
|
|
|
|
|
minLines: 4,
|
|
|
|
|
maxLines: 4,
|
|
|
|
|
autofocus: true,
|
|
|
|
|
autocorrect: false,
|
|
|
|
|
readOnly: _recoveryKeyInputLoading,
|
|
|
|
|
autofillHints: _recoveryKeyInputLoading
|
|
|
|
|
? null
|
|
|
|
|
: [AutofillHints.password],
|
|
|
|
@ -196,29 +196,37 @@ class _BootstrapDialogState extends State<BootstrapDialog> {
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 16),
|
|
|
|
|
ElevatedButton.icon(
|
|
|
|
|
icon: const Icon(Icons.lock_open_outlined),
|
|
|
|
|
icon: _recoveryKeyInputLoading
|
|
|
|
|
? const CircularProgressIndicator.adaptive()
|
|
|
|
|
: const Icon(Icons.lock_open_outlined),
|
|
|
|
|
label: Text(L10n.of(context).unlockChatBackup),
|
|
|
|
|
onPressed: () async {
|
|
|
|
|
onPressed: _recoveryKeyInputLoading
|
|
|
|
|
? null
|
|
|
|
|
: () async {
|
|
|
|
|
setState(() {
|
|
|
|
|
_recoveryKeyInputError = null;
|
|
|
|
|
_recoveryKeyInputLoading = true;
|
|
|
|
|
});
|
|
|
|
|
try {
|
|
|
|
|
final key = _recoveryKeyTextEditingController.text;
|
|
|
|
|
final key =
|
|
|
|
|
_recoveryKeyTextEditingController.text;
|
|
|
|
|
await bootstrap.newSsssKey.unlock(
|
|
|
|
|
keyOrPassphrase: key,
|
|
|
|
|
);
|
|
|
|
|
Logs().d('SSSS unlocked');
|
|
|
|
|
await bootstrap.client.encryption.crossSigning
|
|
|
|
|
.selfSign(
|
|
|
|
|
keyOrPassphrase: key,
|
|
|
|
|
);
|
|
|
|
|
Logs().d('Successful elfsigned');
|
|
|
|
|
await bootstrap.openExistingSsss();
|
|
|
|
|
} catch (e, s) {
|
|
|
|
|
Logs().w('Unable to unlock SSSS', e, s);
|
|
|
|
|
setState(() => _recoveryKeyInputError =
|
|
|
|
|
L10n.of(context).oopsSomethingWentWrong);
|
|
|
|
|
} finally {
|
|
|
|
|
setState(() => _recoveryKeyInputLoading = false);
|
|
|
|
|
setState(
|
|
|
|
|
() => _recoveryKeyInputLoading = false);
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
const SizedBox(height: 16),
|
|
|
|
@ -239,7 +247,9 @@ class _BootstrapDialogState extends State<BootstrapDialog> {
|
|
|
|
|
icon:
|
|
|
|
|
const Icon(Icons.transfer_within_a_station_outlined),
|
|
|
|
|
label: Text(L10n.of(context).transferFromAnotherDevice),
|
|
|
|
|
onPressed: () async {
|
|
|
|
|
onPressed: _recoveryKeyInputLoading
|
|
|
|
|
? null
|
|
|
|
|
: () async {
|
|
|
|
|
final req = await showFutureLoadingDialog(
|
|
|
|
|
context: context,
|
|
|
|
|
future: () => widget
|
|
|
|
@ -260,7 +270,9 @@ class _BootstrapDialogState extends State<BootstrapDialog> {
|
|
|
|
|
),
|
|
|
|
|
icon: const Icon(Icons.delete_outlined),
|
|
|
|
|
label: Text(L10n.of(context).securityKeyLost),
|
|
|
|
|
onPressed: () async {
|
|
|
|
|
onPressed: _recoveryKeyInputLoading
|
|
|
|
|
? null
|
|
|
|
|
: () async {
|
|
|
|
|
if (OkCancelResult.ok ==
|
|
|
|
|
await showOkCancelAlertDialog(
|
|
|
|
|
useRootNavigator: false,
|
|
|
|
|