mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-29 23:20:03 +03:00
203 lines
6.1 KiB
Dart
Executable File
203 lines
6.1 KiB
Dart
Executable File
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../../app/message.dart';
|
|
import '../../app/models.dart';
|
|
import '../../app/views/app_page.dart';
|
|
import '../../app/views/graphics.dart';
|
|
import '../../app/views/message_page.dart';
|
|
import '../../widgets/menu_list_tile.dart';
|
|
import '../models.dart';
|
|
import '../state.dart';
|
|
import 'pin_dialog.dart';
|
|
import 'reset_dialog.dart';
|
|
|
|
class FidoLockedPage extends ConsumerWidget {
|
|
final DeviceNode node;
|
|
final FidoState state;
|
|
|
|
const FidoLockedPage(this.node, this.state, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
if (!state.hasPin) {
|
|
if (state.bioEnroll != null) {
|
|
return MessagePage(
|
|
title: const Text('WebAuthn'),
|
|
graphic: noFingerprints,
|
|
header: 'No fingerprints',
|
|
message: 'Set a PIN to register fingerprints',
|
|
keyActions: _buildActions(context),
|
|
);
|
|
} else {
|
|
return MessagePage(
|
|
title: const Text('WebAuthn'),
|
|
graphic: manageAccounts,
|
|
header: state.credMgmt ? 'No discoverable accounts' : 'Ready to use',
|
|
message:
|
|
'Optionally set a PIN to protect access to your YubiKey\nRegister as a Security Key on websites',
|
|
keyActions: _buildActions(context),
|
|
);
|
|
}
|
|
}
|
|
|
|
if (!state.credMgmt && state.bioEnroll == null) {
|
|
return MessagePage(
|
|
title: const Text('WebAuthn'),
|
|
graphic: manageAccounts,
|
|
header: 'Ready to use',
|
|
message: 'Register as a Security Key on websites',
|
|
keyActions: _buildActions(context),
|
|
);
|
|
}
|
|
|
|
return AppPage(
|
|
title: const Text('WebAuthn'),
|
|
keyActions: _buildActions(context),
|
|
child: Column(
|
|
children: [
|
|
_PinEntryForm(state, node),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
List<PopupMenuEntry> _buildActions(BuildContext context) => [
|
|
if (!state.hasPin)
|
|
buildMenuItem(
|
|
title: const Text('Set PIN'),
|
|
leading: const Icon(Icons.pin),
|
|
action: () {
|
|
showBlurDialog(
|
|
context: context,
|
|
builder: (context) => FidoPinDialog(node.path, state),
|
|
);
|
|
},
|
|
),
|
|
buildMenuItem(
|
|
title: const Text('Reset FIDO'),
|
|
leading: const Icon(Icons.delete),
|
|
action: () {
|
|
showBlurDialog(
|
|
context: context,
|
|
builder: (context) => ResetDialog(node),
|
|
);
|
|
},
|
|
),
|
|
];
|
|
}
|
|
|
|
class _PinEntryForm extends ConsumerStatefulWidget {
|
|
final FidoState _state;
|
|
final DeviceNode _deviceNode;
|
|
const _PinEntryForm(this._state, this._deviceNode);
|
|
|
|
@override
|
|
ConsumerState<_PinEntryForm> createState() => _PinEntryFormState();
|
|
}
|
|
|
|
class _PinEntryFormState extends ConsumerState<_PinEntryForm> {
|
|
final _pinController = TextEditingController();
|
|
bool _blocked = false;
|
|
int? _retries;
|
|
bool _pinIsWrong = false;
|
|
bool _isObscure = true;
|
|
|
|
void _submit() async {
|
|
setState(() {
|
|
_pinIsWrong = false;
|
|
_isObscure = true;
|
|
});
|
|
final result = await ref
|
|
.read(fidoStateProvider(widget._deviceNode.path).notifier)
|
|
.unlock(_pinController.text);
|
|
result.whenOrNull(failed: (retries, authBlocked) {
|
|
setState(() {
|
|
_pinController.clear();
|
|
_pinIsWrong = true;
|
|
_retries = retries;
|
|
_blocked = authBlocked;
|
|
});
|
|
});
|
|
}
|
|
|
|
String? _getErrorText() {
|
|
if (_retries == 0) {
|
|
return 'PIN is blocked. Factory reset the FIDO application.';
|
|
}
|
|
if (_blocked) {
|
|
return 'PIN temporarily blocked, remove and reinsert your YubiKey.';
|
|
}
|
|
if (_retries != null) {
|
|
return 'Wrong PIN. $_retries attempt(s) remaining.';
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final noFingerprints = widget._state.bioEnroll == false;
|
|
return Padding(
|
|
padding: const EdgeInsets.only(left: 18.0, right: 18, top: 32),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const Text('Enter the FIDO2 PIN for your YubiKey'),
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 16.0, bottom: 16.0),
|
|
child: TextField(
|
|
autofocus: true,
|
|
obscureText: _isObscure,
|
|
controller: _pinController,
|
|
decoration: InputDecoration(
|
|
border: const OutlineInputBorder(),
|
|
labelText: 'PIN',
|
|
helperText: '', // Prevents dialog resizing
|
|
errorText: _pinIsWrong ? _getErrorText() : null,
|
|
errorMaxLines: 3,
|
|
prefixIcon: const Icon(Icons.pin_outlined),
|
|
suffixIcon: IconButton(
|
|
icon: Icon(
|
|
_isObscure ? Icons.visibility : Icons.visibility_off,
|
|
color: IconTheme.of(context).color,
|
|
),
|
|
onPressed: () {
|
|
setState(() {
|
|
_isObscure = !_isObscure;
|
|
});
|
|
},
|
|
),
|
|
),
|
|
onChanged: (value) {
|
|
setState(() {
|
|
_pinIsWrong = false;
|
|
});
|
|
}, // Update state on change
|
|
onSubmitted: (_) => _submit(),
|
|
),
|
|
),
|
|
ListTile(
|
|
leading:
|
|
noFingerprints ? const Icon(Icons.warning_amber_rounded) : null,
|
|
title: noFingerprints
|
|
? const Text(
|
|
'No fingerprints have been added',
|
|
overflow: TextOverflow.fade,
|
|
)
|
|
: null,
|
|
dense: true,
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 0),
|
|
minLeadingWidth: 0,
|
|
trailing: ElevatedButton.icon(
|
|
icon: const Icon(Icons.lock_open),
|
|
label: const Text('Unlock'),
|
|
onPressed:
|
|
_pinController.text.isNotEmpty && !_blocked ? _submit : null,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|