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.
|
|
|
|
*/
|
|
|
|
|
2022-09-21 16:29:34 +03:00
|
|
|
import 'package:flutter/material.dart';
|
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-09-21 16:29:34 +03:00
|
|
|
import 'app_methods.dart';
|
2022-08-16 15:05:53 +03:00
|
|
|
import 'devices.dart';
|
|
|
|
|
2022-08-19 10:36:45 +03:00
|
|
|
const _contextChannel = MethodChannel('android.state.appContext');
|
2022-09-08 13:17:44 +03:00
|
|
|
|
|
|
|
final androidAllowScreenshotsProvider =
|
|
|
|
StateNotifierProvider<AllowScreenshotsNotifier, bool>(
|
|
|
|
(ref) => AllowScreenshotsNotifier(),
|
|
|
|
);
|
|
|
|
|
|
|
|
class AllowScreenshotsNotifier extends StateNotifier<bool> {
|
|
|
|
AllowScreenshotsNotifier() : super(false);
|
|
|
|
|
|
|
|
void setAllowScreenshots(bool value) async {
|
2022-09-08 14:15:38 +03:00
|
|
|
final result =
|
2022-09-21 16:29:34 +03:00
|
|
|
await appMethodsChannel.invokeMethod('allowScreenshots', value);
|
2022-09-08 14:15:38 +03:00
|
|
|
if (mounted) {
|
|
|
|
state = result;
|
|
|
|
}
|
2022-09-08 13:17:44 +03:00
|
|
|
}
|
|
|
|
}
|
2022-03-03 18:43:36 +03:00
|
|
|
|
2022-09-21 16:29:34 +03:00
|
|
|
final androidClipboardProvider = Provider<AppClipboard>(
|
|
|
|
(ref) => _AndroidClipboard(ref),
|
|
|
|
);
|
|
|
|
|
|
|
|
class _AndroidClipboard extends AppClipboard {
|
|
|
|
final ProviderRef<AppClipboard> _ref;
|
|
|
|
|
|
|
|
const _AndroidClipboard(this._ref);
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool platformGivesFeedback() {
|
2022-09-22 18:28:52 +03:00
|
|
|
return _ref.read(androidSdkVersionProvider) >= 33;
|
2022-09-21 16:29:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> setText(String toClipboard, {bool isSensitive = false}) async {
|
|
|
|
await setPrimaryClip(toClipboard, isSensitive);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-22 18:28:52 +03:00
|
|
|
final androidSdkVersionProvider = Provider<int>((ref) => -1);
|
2022-09-21 16:29:34 +03:00
|
|
|
|
|
|
|
final androidSupportedThemesProvider = StateProvider<List<ThemeMode>>((ref) {
|
2022-09-22 18:28:52 +03:00
|
|
|
if (ref.read(androidSdkVersionProvider) < 29) {
|
2022-09-21 16:29:34 +03:00
|
|
|
/// the user can select from light or dark theme of the app
|
|
|
|
return [ThemeMode.light, ThemeMode.dark];
|
|
|
|
} else {
|
|
|
|
/// the user can also select system theme on newer Android versions
|
|
|
|
return ThemeMode.values;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
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) {
|
2022-08-19 10:36:45 +03:00
|
|
|
final provider =
|
|
|
|
_AndroidCurrentDeviceNotifier(ref.watch(androidYubikeyProvider));
|
2022-03-21 11:34:45 +03:00
|
|
|
return provider;
|
|
|
|
});
|
|
|
|
|
|
|
|
class _AndroidCurrentDeviceNotifier extends CurrentDeviceNotifier {
|
2022-08-19 10:36:45 +03:00
|
|
|
_AndroidCurrentDeviceNotifier(AsyncValue<YubiKeyData> device)
|
|
|
|
: super(device.whenOrNull(data: (data) => data.node));
|
2022-03-21 11:34:45 +03:00
|
|
|
|
|
|
|
@override
|
2022-06-07 16:13:11 +03:00
|
|
|
setCurrentDevice(DeviceNode? device) {
|
2022-03-21 11:34:45 +03:00
|
|
|
state = device;
|
|
|
|
}
|
|
|
|
}
|