yubioath-flutter/lib/fido/state.dart

68 lines
2.3 KiB
Dart
Raw Normal View History

2022-10-04 13:12:54 +03:00
/*
* Copyright (C) 2022 Yubico.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import 'package:flutter/foundation.dart';
2022-03-15 19:16:14 +03:00
import 'package:flutter_riverpod/flutter_riverpod.dart';
import '../app/models.dart';
import '../core/state.dart';
import 'models.dart';
final fidoStateProvider = StateNotifierProvider.autoDispose
.family<FidoStateNotifier, AsyncValue<FidoState>, DevicePath>(
2022-03-15 19:16:14 +03:00
(ref, devicePath) => throw UnimplementedError(),
);
abstract class FidoStateNotifier extends ApplicationStateNotifier<FidoState> {
2022-03-17 22:10:10 +03:00
Stream<InteractionEvent> reset();
2022-03-17 15:06:48 +03:00
Future<PinResult> setPin(String newPin, {String? oldPin});
Future<PinResult> unlock(String pin);
2022-03-15 19:16:14 +03:00
}
2022-03-23 19:50:49 +03:00
abstract class LockedCollectionNotifier<T>
extends StateNotifier<AsyncValue<List<T>>> {
LockedCollectionNotifier() : super(const AsyncValue.loading());
@protected
2022-03-23 19:50:49 +03:00
void setItems(List<T> items) {
if (mounted) {
state = AsyncValue.data(List.unmodifiable(items));
2022-03-23 19:50:49 +03:00
}
}
2022-03-23 19:50:49 +03:00
}
2022-03-23 19:50:49 +03:00
final fingerprintProvider = StateNotifierProvider.autoDispose.family<
FidoFingerprintsNotifier, AsyncValue<List<Fingerprint>>, DevicePath>(
2022-03-23 19:50:49 +03:00
(ref, arg) => throw UnimplementedError(),
);
abstract class FidoFingerprintsNotifier
extends LockedCollectionNotifier<Fingerprint> {
2022-03-23 11:49:20 +03:00
Stream<FingerprintEvent> registerFingerprint({String? name});
Future<Fingerprint> renameFingerprint(Fingerprint fingerprint, String name);
Future<void> deleteFingerprint(Fingerprint fingerprint);
}
2022-03-23 19:50:49 +03:00
final credentialProvider = StateNotifierProvider.autoDispose.family<
FidoCredentialsNotifier, AsyncValue<List<FidoCredential>>, DevicePath>(
(ref, arg) => throw UnimplementedError(),
);
abstract class FidoCredentialsNotifier
2022-03-23 19:50:49 +03:00
extends LockedCollectionNotifier<FidoCredential> {
Future<void> deleteCredential(FidoCredential credential);
}