2022-08-16 15:05:53 +03:00
|
|
|
import 'package:flutter/services.dart';
|
2022-03-03 18:43:36 +03:00
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
|
|
|
|
import '../app/models.dart';
|
|
|
|
import '../app/state.dart';
|
2022-08-16 15:05:53 +03:00
|
|
|
import 'devices.dart';
|
|
|
|
|
|
|
|
const _contextChannel =
|
|
|
|
MethodChannel('com.yubico.authenticator.channel.appContext');
|
2022-03-03 18:43:36 +03:00
|
|
|
|
2022-03-04 19:01:55 +03:00
|
|
|
final androidSubPageProvider =
|
2022-03-14 13:48:39 +03:00
|
|
|
StateNotifierProvider<CurrentAppNotifier, Application>((ref) {
|
|
|
|
return _AndroidSubPageNotifier(ref.watch(supportedAppsProvider));
|
2022-03-04 19:01:55 +03:00
|
|
|
});
|
2022-03-03 18:43:36 +03:00
|
|
|
|
2022-03-14 13:48:39 +03:00
|
|
|
class _AndroidSubPageNotifier extends CurrentAppNotifier {
|
2022-05-12 10:56:55 +03:00
|
|
|
_AndroidSubPageNotifier(super.supportedApps) {
|
2022-03-14 13:48:39 +03:00
|
|
|
_handleSubPage(state);
|
2022-03-03 18:43:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2022-03-14 13:48:39 +03:00
|
|
|
void setCurrentApp(Application app) {
|
|
|
|
super.setCurrentApp(app);
|
|
|
|
_handleSubPage(app);
|
2022-03-03 18:43:36 +03:00
|
|
|
}
|
|
|
|
|
2022-03-14 13:48:39 +03:00
|
|
|
void _handleSubPage(Application subPage) async {
|
2022-08-16 15:05:53 +03:00
|
|
|
await _contextChannel.invokeMethod('setContext', {'index': subPage.index});
|
2022-03-03 18:43:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-11 15:53:28 +03:00
|
|
|
final androidAttachedDevicesProvider =
|
|
|
|
StateNotifierProvider<AttachedDevicesNotifier, List<DeviceNode>>((ref) {
|
2022-03-03 18:43:36 +03:00
|
|
|
var currentDeviceData = ref.watch(androidDeviceDataProvider);
|
2022-06-28 20:51:58 +03:00
|
|
|
List<DeviceNode> devs = currentDeviceData.maybeWhen(
|
|
|
|
data: (data) => [data.node], orElse: () => []);
|
|
|
|
return _AndroidAttachedDevicesNotifier(devs);
|
2022-03-03 18:43:36 +03:00
|
|
|
});
|
|
|
|
|
2022-03-11 15:53:28 +03:00
|
|
|
class _AndroidAttachedDevicesNotifier extends AttachedDevicesNotifier {
|
2022-05-12 10:56:55 +03:00
|
|
|
_AndroidAttachedDevicesNotifier(super.state);
|
2022-03-11 15:53:28 +03:00
|
|
|
}
|
|
|
|
|
2022-06-28 20:51:58 +03:00
|
|
|
final androidDeviceDataProvider = Provider<AsyncValue<YubiKeyData>>(
|
|
|
|
(ref) => ref.watch(androidYubikeyProvider));
|
2022-03-21 11:34:45 +03:00
|
|
|
|
|
|
|
final androidCurrentDeviceProvider =
|
|
|
|
StateNotifierProvider<CurrentDeviceNotifier, DeviceNode?>((ref) {
|
|
|
|
final provider = _AndroidCurrentDeviceNotifier();
|
|
|
|
ref.listen(attachedDevicesProvider, provider._updateAttachedDevices);
|
|
|
|
return provider;
|
|
|
|
});
|
|
|
|
|
|
|
|
class _AndroidCurrentDeviceNotifier extends CurrentDeviceNotifier {
|
|
|
|
_AndroidCurrentDeviceNotifier() : super(null);
|
|
|
|
|
|
|
|
_updateAttachedDevices(
|
|
|
|
List<DeviceNode>? previous, List<DeviceNode?> devices) {
|
|
|
|
if (devices.isNotEmpty) {
|
|
|
|
state = devices.first;
|
|
|
|
} else {
|
|
|
|
state = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2022-06-07 16:13:11 +03:00
|
|
|
setCurrentDevice(DeviceNode? device) {
|
2022-03-21 11:34:45 +03:00
|
|
|
state = device;
|
|
|
|
}
|
|
|
|
}
|