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

76 lines
2.6 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';
import '../../app/models.dart';
2022-03-24 15:11:01 +03:00
import '../../app/state.dart';
2022-03-15 19:16:14 +03:00
import '../../app/views/app_failure_screen.dart';
import '../../app/views/app_loading_screen.dart';
import '../../app/views/app_page.dart';
2022-03-18 18:10:05 +03:00
import '../../desktop/state.dart';
import '../../management/models.dart';
import '../models.dart';
2022-03-15 19:16:14 +03:00
import '../state.dart';
2022-03-23 19:50:49 +03:00
import 'credential_page.dart';
import 'fingerprint_page.dart';
import 'main_page.dart';
2022-03-15 19:16:14 +03:00
2022-03-23 19:50:49 +03:00
final _subPageProvider = StateProvider<SubPage>((ref) {
// Reset whenever the device changes.
ref.watch(currentDeviceProvider);
return SubPage.main;
});
2022-03-15 19:16:14 +03:00
class FidoScreen extends ConsumerWidget {
final YubiKeyData deviceData;
const FidoScreen(this.deviceData, {Key? key}) : super(key: key);
@override
Widget build(BuildContext context, WidgetRef ref) {
final subPage = ref.watch(_subPageProvider);
return AppPage(
onBack: subPage != SubPage.main
? () {
ref.read(_subPageProvider.notifier).state = SubPage.main;
}
: null,
title: const Text('WebAuthn'),
child: ref.watch(fidoStateProvider(deviceData.node.path)).when(
loading: () => const AppLoadingScreen(),
error: (error, _) {
final supported = deviceData
.info.supportedCapabilities[deviceData.node.transport]!;
if (Capability.fido2.value & supported == 0) {
2022-03-17 15:06:48 +03:00
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.');
}
}
return AppFailureScreen('$error');
2022-03-16 16:55:21 +03:00
},
data: (state) {
switch (subPage) {
2022-03-23 19:50:49 +03:00
case SubPage.fingerprints:
return FingerprintPage(deviceData.node.path, state);
2022-03-23 19:50:49 +03:00
case SubPage.credentials:
return CredentialPage(deviceData.node.path, state);
2022-03-23 19:50:49 +03:00
default:
return FidoMainPage(
deviceData.node,
state,
setSubPage: (page) {
ref.read(_subPageProvider.notifier).state = page;
},
2022-03-23 19:50:49 +03:00
);
}
}),
);
}
2022-03-15 19:16:14 +03:00
}