mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-26 11:43:44 +03:00
61 lines
2.2 KiB
Dart
Executable File
61 lines
2.2 KiB
Dart
Executable File
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../../app/models.dart';
|
|
import '../../app/views/app_failure_page.dart';
|
|
import '../../app/views/app_loading_screen.dart';
|
|
import '../../app/views/app_page.dart';
|
|
import '../../app/views/message_page.dart';
|
|
import '../../management/models.dart';
|
|
import '../state.dart';
|
|
import 'locked_page.dart';
|
|
import 'unlocked_page.dart';
|
|
|
|
class FidoScreen extends ConsumerWidget {
|
|
final YubiKeyData deviceData;
|
|
const FidoScreen(this.deviceData, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) =>
|
|
ref.watch(fidoStateProvider(deviceData.node.path)).when(
|
|
loading: () => AppPage(
|
|
title: const Text('WebAuthn'),
|
|
centered: true,
|
|
child: const AppLoadingScreen(),
|
|
),
|
|
error: (error, _) {
|
|
final supported = deviceData
|
|
.info.supportedCapabilities[deviceData.node.transport] ??
|
|
0;
|
|
if (Capability.fido2.value & supported == 0) {
|
|
return const MessagePage(
|
|
title: Text('WebAuthn'),
|
|
header: 'No management options',
|
|
message:
|
|
'WebAuthn is supported by this device, but there are no management options available.',
|
|
);
|
|
}
|
|
final enabled = deviceData.info.config
|
|
.enabledCapabilities[deviceData.node.transport] ??
|
|
0;
|
|
if (Capability.fido2.value & enabled == 0) {
|
|
return const MessagePage(
|
|
title: Text('WebAuthn'),
|
|
header: 'FIDO2 disabled',
|
|
message:
|
|
'WebAuthn requires the FIDO2 application to be enabled on your YubiKey',
|
|
);
|
|
}
|
|
|
|
return AppFailurePage(
|
|
title: const Text('WebAuthn'),
|
|
cause: error,
|
|
);
|
|
},
|
|
data: (fidoState) {
|
|
return fidoState.unlocked
|
|
? FidoUnlockedPage(deviceData.node, fidoState)
|
|
: FidoLockedPage(deviceData.node, fidoState);
|
|
});
|
|
}
|