mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 00:12:09 +03:00
95 lines
2.9 KiB
Dart
95 lines
2.9 KiB
Dart
/*
|
|
* Copyright (C) 2022-2024 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 'dart:convert';
|
|
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../theme.dart';
|
|
import 'state.dart';
|
|
|
|
const appMethodsChannel = MethodChannel('app.methods');
|
|
|
|
Future<bool> getHasCamera() async {
|
|
return await appMethodsChannel.invokeMethod('hasCamera');
|
|
}
|
|
|
|
Future<bool> getHasNfc() async {
|
|
return await appMethodsChannel.invokeMethod('hasNfc');
|
|
}
|
|
|
|
Future<bool> isNfcEnabled() async {
|
|
return await appMethodsChannel.invokeMethod('isNfcEnabled');
|
|
}
|
|
|
|
/// The next onPause/onResume lifecycle event will not stop and start
|
|
/// USB/NFC discovery which will preserve the current YubiKey connection.
|
|
///
|
|
/// This function should be called before showing system dialogs, such as
|
|
/// native file picker or permission request dialogs.
|
|
/// The state automatically resets during onResume call.
|
|
Future<void> preserveConnectedDeviceWhenPaused() async {
|
|
await appMethodsChannel.invokeMethod('preserveConnectionOnPause');
|
|
}
|
|
|
|
Future<void> openNfcSettings() async {
|
|
await appMethodsChannel.invokeMethod('openNfcSettings');
|
|
}
|
|
|
|
Future<int> getAndroidSdkVersion() async {
|
|
return await appMethodsChannel.invokeMethod('getAndroidSdkVersion');
|
|
}
|
|
|
|
Future<bool> getAndroidIsArc() async {
|
|
return await appMethodsChannel.invokeMethod('isArc');
|
|
}
|
|
|
|
Future<Color> getPrimaryColor() async {
|
|
final value = await appMethodsChannel.invokeMethod('getPrimaryColor');
|
|
return value != null ? Color(value) : defaultPrimaryColor;
|
|
}
|
|
|
|
Future<void> setPrimaryClip(String toClipboard, bool isSensitive) async {
|
|
await appMethodsChannel.invokeMethod('setPrimaryClip',
|
|
{'toClipboard': toClipboard, 'isSensitive': isSensitive});
|
|
}
|
|
|
|
void setupAppMethodsChannel(WidgetRef ref) {
|
|
appMethodsChannel.setMethodCallHandler((call) async {
|
|
final args = jsonDecode(call.arguments);
|
|
switch (call.method) {
|
|
case 'nfcAdapterStateChanged':
|
|
{
|
|
var enabled = args['enabled'];
|
|
ref.read(androidNfcAdapterState.notifier).enable(enabled);
|
|
break;
|
|
}
|
|
case 'nfcStateChanged':
|
|
{
|
|
var nfcState = args['state'];
|
|
ref.read(androidNfcState.notifier).set(nfcState);
|
|
break;
|
|
}
|
|
default:
|
|
throw PlatformException(
|
|
code: 'NotImplemented',
|
|
message: 'Method ${call.method} is not implemented',
|
|
);
|
|
}
|
|
});
|
|
}
|