2022-04-03 12:05:37 +03:00
|
|
|
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';
|
2022-05-18 15:11:17 +03:00
|
|
|
import '../../app/views/graphics.dart';
|
2022-04-05 12:46:22 +03:00
|
|
|
import '../../app/views/message_page.dart';
|
2022-06-02 15:52:00 +03:00
|
|
|
import '../../widgets/list_title.dart';
|
2022-07-07 21:20:04 +03:00
|
|
|
import '../../widgets/menu_list_tile.dart';
|
2022-04-03 12:05:37 +03:00
|
|
|
import '../models.dart';
|
2022-04-04 12:15:38 +03:00
|
|
|
import '../state.dart';
|
2022-04-03 12:05:37 +03:00
|
|
|
import 'add_fingerprint_dialog.dart';
|
|
|
|
import 'delete_credential_dialog.dart';
|
|
|
|
import 'delete_fingerprint_dialog.dart';
|
|
|
|
import 'pin_dialog.dart';
|
|
|
|
import 'rename_fingerprint_dialog.dart';
|
|
|
|
import 'reset_dialog.dart';
|
|
|
|
|
|
|
|
class FidoUnlockedPage extends ConsumerWidget {
|
|
|
|
final DeviceNode node;
|
|
|
|
final FidoState state;
|
|
|
|
|
2022-05-12 10:56:55 +03:00
|
|
|
const FidoUnlockedPage(this.node, this.state, {super.key});
|
2022-04-03 12:05:37 +03:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
2022-05-24 17:41:57 +03:00
|
|
|
List<Widget> children = [];
|
|
|
|
if (state.credMgmt) {
|
|
|
|
final data = ref.watch(credentialProvider(node.path)).asData;
|
|
|
|
if (data == null) {
|
|
|
|
return _buildLoadingPage();
|
|
|
|
}
|
|
|
|
final creds = data.value;
|
|
|
|
if (creds.isNotEmpty) {
|
2022-06-02 15:52:00 +03:00
|
|
|
children.add(const ListTitle('Credentials'));
|
2022-05-24 17:41:57 +03:00
|
|
|
children.addAll(
|
|
|
|
creds.map(
|
|
|
|
(cred) => ListTile(
|
|
|
|
leading: CircleAvatar(
|
|
|
|
foregroundColor: Theme.of(context).colorScheme.onPrimary,
|
|
|
|
backgroundColor: Theme.of(context).colorScheme.primary,
|
|
|
|
child: const Icon(Icons.person),
|
|
|
|
),
|
|
|
|
title: Text(
|
|
|
|
cred.userName,
|
|
|
|
softWrap: false,
|
|
|
|
overflow: TextOverflow.fade,
|
|
|
|
),
|
|
|
|
subtitle: Text(
|
|
|
|
cred.rpId,
|
|
|
|
softWrap: false,
|
|
|
|
overflow: TextOverflow.fade,
|
|
|
|
),
|
|
|
|
trailing: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
|
|
|
IconButton(
|
|
|
|
onPressed: () {
|
2022-07-04 13:56:31 +03:00
|
|
|
showBlurDialog(
|
2022-05-24 17:41:57 +03:00
|
|
|
context: context,
|
|
|
|
builder: (context) =>
|
|
|
|
DeleteCredentialDialog(node.path, cred),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
icon: const Icon(Icons.delete_outline)),
|
|
|
|
],
|
|
|
|
),
|
2022-04-05 12:46:22 +03:00
|
|
|
),
|
2022-05-24 17:41:57 +03:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state.bioEnroll != null) {
|
|
|
|
final data = ref.watch(fingerprintProvider(node.path)).asData;
|
|
|
|
if (data == null) {
|
|
|
|
return _buildLoadingPage();
|
|
|
|
}
|
|
|
|
final fingerprints = data.value;
|
|
|
|
if (fingerprints.isNotEmpty) {
|
2022-06-02 15:52:00 +03:00
|
|
|
children.add(const ListTitle('Fingerprints'));
|
2022-05-24 17:41:57 +03:00
|
|
|
children.addAll(fingerprints.map((fp) => ListTile(
|
|
|
|
leading: CircleAvatar(
|
|
|
|
foregroundColor: Theme.of(context).colorScheme.onSecondary,
|
|
|
|
backgroundColor: Theme.of(context).colorScheme.secondary,
|
|
|
|
child: const Icon(Icons.fingerprint),
|
|
|
|
),
|
|
|
|
title: Text(
|
|
|
|
fp.label,
|
|
|
|
softWrap: false,
|
|
|
|
overflow: TextOverflow.fade,
|
|
|
|
),
|
|
|
|
trailing: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
|
|
|
IconButton(
|
|
|
|
onPressed: () {
|
2022-07-04 13:56:31 +03:00
|
|
|
showBlurDialog(
|
2022-05-24 17:41:57 +03:00
|
|
|
context: context,
|
|
|
|
builder: (context) =>
|
|
|
|
RenameFingerprintDialog(node.path, fp),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
icon: const Icon(Icons.edit_outlined)),
|
|
|
|
IconButton(
|
|
|
|
onPressed: () {
|
2022-07-04 13:56:31 +03:00
|
|
|
showBlurDialog(
|
2022-05-24 17:41:57 +03:00
|
|
|
context: context,
|
|
|
|
builder: (context) =>
|
|
|
|
DeleteFingerprintDialog(node.path, fp),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
icon: const Icon(Icons.delete_outline)),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
}
|
2022-04-05 12:46:22 +03:00
|
|
|
|
|
|
|
if (children.isNotEmpty) {
|
|
|
|
return AppPage(
|
|
|
|
title: const Text('WebAuthn'),
|
2022-07-07 21:20:04 +03:00
|
|
|
keyActions: _buildKeyActions(context),
|
2022-06-02 15:52:00 +03:00
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start, children: children),
|
2022-04-05 12:46:22 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-05-23 11:59:51 +03:00
|
|
|
if (state.bioEnroll != null) {
|
2022-04-05 12:46:22 +03:00
|
|
|
return MessagePage(
|
|
|
|
title: const Text('WebAuthn'),
|
2022-05-20 12:11:20 +03:00
|
|
|
graphic: noFingerprints,
|
2022-04-05 12:46:22 +03:00
|
|
|
header: 'No fingerprints',
|
|
|
|
message: 'Add one or more (up to five) fingerprints',
|
2022-07-07 21:20:04 +03:00
|
|
|
keyActions: _buildKeyActions(context),
|
2022-04-05 12:46:22 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return MessagePage(
|
|
|
|
title: const Text('WebAuthn'),
|
2022-06-07 13:10:01 +03:00
|
|
|
graphic: manageAccounts,
|
2022-04-05 12:46:22 +03:00
|
|
|
header: 'No discoverable accounts',
|
|
|
|
message: 'Register as a Security Key on websites',
|
2022-07-07 21:20:04 +03:00
|
|
|
keyActions: _buildKeyActions(context),
|
2022-04-05 12:46:22 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-05-24 17:41:57 +03:00
|
|
|
Widget _buildLoadingPage() => AppPage(
|
|
|
|
title: const Text('WebAuthn'),
|
|
|
|
centered: true,
|
|
|
|
child: const CircularProgressIndicator(),
|
|
|
|
);
|
|
|
|
|
2022-07-07 21:20:04 +03:00
|
|
|
List<PopupMenuEntry> _buildKeyActions(BuildContext context) => [
|
2022-05-20 12:11:20 +03:00
|
|
|
if (state.bioEnroll != null)
|
2022-07-07 21:20:04 +03:00
|
|
|
buildMenuItem(
|
|
|
|
title: const Text('Add fingerprint'),
|
|
|
|
leading: const Icon(Icons.fingerprint),
|
|
|
|
action: () {
|
2022-07-04 13:56:31 +03:00
|
|
|
showBlurDialog(
|
2022-04-05 12:46:22 +03:00
|
|
|
context: context,
|
2022-05-20 12:11:20 +03:00
|
|
|
builder: (context) => AddFingerprintDialog(node.path),
|
2022-04-05 12:46:22 +03:00
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
2022-07-07 21:20:04 +03:00
|
|
|
buildMenuItem(
|
|
|
|
title: const Text('Change 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),
|
|
|
|
);
|
2022-05-20 12:11:20 +03:00
|
|
|
},
|
|
|
|
),
|
|
|
|
];
|
2022-04-03 12:05:37 +03:00
|
|
|
}
|