yubioath-flutter/lib/oath/views/unlock_form.dart

185 lines
6.5 KiB
Dart
Raw Normal View History

2022-10-04 13:12:54 +03:00
/*
2023-11-10 17:24:53 +03:00
* Copyright (C) 2022-2023 Yubico.
2022-10-04 13:12:54 +03:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2022-09-14 14:19:39 +03:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
2024-03-08 11:30:47 +03:00
import 'package:material_symbols_icons/symbols.dart';
2022-09-14 14:19:39 +03:00
import '../../app/message.dart';
import '../../app/models.dart';
2024-04-11 13:28:54 +03:00
import '../../exception/cancellation_exception.dart';
import '../../widgets/app_input_decoration.dart';
2023-11-10 17:24:53 +03:00
import '../../widgets/app_text_field.dart';
2022-09-14 14:19:39 +03:00
import '../keys.dart' as keys;
2023-11-10 17:24:53 +03:00
import '../models.dart';
2022-09-14 14:19:39 +03:00
import '../state.dart';
class UnlockForm extends ConsumerStatefulWidget {
final DevicePath _devicePath;
final KeystoreState keystore;
const UnlockForm(this._devicePath, {required this.keystore, super.key});
@override
ConsumerState<UnlockForm> createState() => _UnlockFormState();
}
class _UnlockFormState extends ConsumerState<UnlockForm> {
final _passwordController = TextEditingController();
final _passwordFocus = FocusNode();
2022-09-14 14:19:39 +03:00
bool _remember = false;
bool _passwordIsWrong = false;
bool _isObscure = true;
@override
void initState() {
super.initState();
_passwordFocus.requestFocus();
}
@override
void dispose() {
_passwordController.dispose();
_passwordFocus.dispose();
super.dispose();
}
2022-09-14 14:19:39 +03:00
void _submit() async {
setState(() {
_passwordIsWrong = false;
});
2024-04-11 13:28:54 +03:00
try {
final (success, remembered) = await ref
.read(oathStateProvider(widget._devicePath).notifier)
.unlock(_passwordController.text, remember: _remember);
if (!mounted) return;
if (!success) {
_passwordController.selection = TextSelection(
baseOffset: 0, extentOffset: _passwordController.text.length);
_passwordFocus.requestFocus();
setState(() {
_passwordIsWrong = true;
});
} else if (_remember && !remembered) {
showMessage(
context, AppLocalizations.of(context)!.l_remember_pw_failed);
}
} on CancellationException catch (_) {
// ignored
2022-09-14 14:19:39 +03:00
}
}
@override
Widget build(BuildContext context) {
2023-02-28 21:05:46 +03:00
final l10n = AppLocalizations.of(context)!;
2022-09-14 14:19:39 +03:00
final keystoreFailed = widget.keystore == KeystoreState.failed;
return Column(
children: [
Padding(
2024-01-15 17:58:40 +03:00
padding: const EdgeInsets.only(left: 18.0, right: 18),
2022-09-14 14:19:39 +03:00
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
2023-02-28 21:05:46 +03:00
l10n.l_enter_oath_pw,
2022-09-14 14:19:39 +03:00
),
Padding(
padding: const EdgeInsets.only(top: 16.0, bottom: 4.0),
child: AppTextField(
key: keys.passwordField,
controller: _passwordController,
focusNode: _passwordFocus,
autofocus: true,
obscureText: _isObscure,
autofillHints: const [AutofillHints.password],
decoration: AppInputDecoration(
border: const OutlineInputBorder(),
labelText: l10n.s_password,
errorText: _passwordIsWrong ? l10n.s_wrong_password : null,
helperText: '', // Prevents resizing when errorText shown
2024-03-08 11:30:47 +03:00
prefixIcon: const Icon(Symbols.password),
suffixIcon: IconButton(
2024-03-08 11:30:47 +03:00
icon: Icon(_isObscure
? Symbols.visibility
: Symbols.visibility_off),
onPressed: () {
setState(() {
_isObscure = !_isObscure;
});
},
tooltip: _isObscure
? l10n.s_show_password
: l10n.s_hide_password,
),
2022-09-14 14:19:39 +03:00
),
onChanged: (_) => setState(() {
_passwordIsWrong = false;
}), // Update state on change
onSubmitted: (_) => _submit(),
).init(),
2022-09-14 14:19:39 +03:00
),
const SizedBox(height: 3.0),
2023-12-13 14:07:02 +03:00
Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Wrap(
alignment: WrapAlignment.spaceBetween,
crossAxisAlignment: WrapCrossAlignment.center,
spacing: 4.0,
runSpacing: 8.0,
children: [
2023-12-13 14:07:02 +03:00
keystoreFailed
? Wrap(
crossAxisAlignment: WrapCrossAlignment.center,
spacing: 4.0,
runSpacing: 8.0,
children: [
2024-03-08 11:30:47 +03:00
Icon(Symbols.warning_amber,
color:
Theme.of(context).colorScheme.tertiary),
2023-12-13 14:07:02 +03:00
Text(l10n.l_keystore_unavailable)
],
)
: FilterChip(
label: Text(l10n.s_remember_password),
selected: _remember,
onSelected: (value) {
setState(() {
_remember = value;
});
},
),
FilledButton.icon(
2023-12-13 14:07:02 +03:00
key: keys.unlockButton,
label: Text(l10n.s_unlock),
2024-03-08 11:30:47 +03:00
icon: const Icon(Symbols.lock_open),
onPressed: _passwordController.text.isNotEmpty &&
!_passwordIsWrong
2023-12-13 14:07:02 +03:00
? _submit
: null,
),
],
),
],
),
],
2022-09-14 14:19:39 +03:00
),
),
],
);
}
}