yubioath-flutter/lib/fido/views/fido_screen.dart

89 lines
3.5 KiB
Dart
Raw Normal View History

2022-03-16 16:55:21 +03:00
import 'dart:io';
2022-03-15 19:16:14 +03:00
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
2022-03-16 16:55:21 +03:00
import 'package:yubico_authenticator/desktop/state.dart';
2022-03-17 15:06:48 +03:00
import 'package:yubico_authenticator/fido/views/pin_dialog.dart';
import 'package:yubico_authenticator/management/models.dart';
2022-03-15 19:16:14 +03:00
import '../../app/models.dart';
import '../../app/views/app_failure_screen.dart';
import '../../app/views/app_loading_screen.dart';
import '../state.dart';
class FidoScreen extends ConsumerWidget {
final YubiKeyData deviceData;
const FidoScreen(this.deviceData, {Key? key}) : super(key: key);
@override
Widget build(BuildContext context, WidgetRef ref) =>
ref.watch(fidoStateProvider(deviceData.node.path)).when(
none: () => const AppLoadingScreen(),
2022-03-16 16:55:21 +03:00
failure: (reason) {
2022-03-17 15:06:48 +03:00
final fido2 = deviceData.info
.supportedCapabilities[deviceData.node.transport]! &
Capability.fido2.value !=
0;
if (!fido2) {
return const AppFailureScreen(
'WebAuthn is supported by this device, but there are no management options available.');
}
2022-03-16 16:55:21 +03:00
if (Platform.isWindows) {
if (!ref
.watch(rpcStateProvider.select((state) => state.isAdmin))) {
return const AppFailureScreen(
'WebAuthn management requires elevated privileges.\nRestart this app as administrator.');
}
}
2022-03-17 15:06:48 +03:00
if (deviceData.info
.supportedCapabilities[deviceData.node.transport]! &
Capability.fido2.value ==
0) {}
2022-03-16 16:55:21 +03:00
return AppFailureScreen(reason);
},
2022-03-15 19:16:14 +03:00
success: (state) => ListView(
children: [
2022-03-17 15:06:48 +03:00
ListTile(
leading: const CircleAvatar(
child: Icon(Icons.pin),
),
title: const Text('PIN'),
subtitle:
Text(state.hasPin ? 'Change your PIN' : 'Set a PIN'),
onTap: () {
showDialog(
context: context,
builder: (context) =>
FidoPinDialog(deviceData.node.path, state),
);
},
),
if (state.bioEnroll != null)
ListTile(
leading: const CircleAvatar(
child: Icon(Icons.fingerprint),
),
title: const Text('Fingerprints'),
subtitle: Text(state.bioEnroll == true
? 'Fingerprints have been registered'
: 'No fingerprints registered'),
),
if (state.credMgmt)
const ListTile(
leading: CircleAvatar(
child: Icon(Icons.account_box),
),
title: Text('Credentials'),
subtitle: Text('Manage stored credentials on key'),
),
const ListTile(
leading: CircleAvatar(
child: Icon(Icons.delete_forever),
),
title: Text('Factory reset'),
subtitle: Text('Delete all data and remove PIN'),
),
2022-03-15 19:16:14 +03:00
],
));
}