yubioath-flutter/lib/desktop/qr_scanner.dart

40 lines
1.2 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.
*/
2022-02-10 17:24:28 +03:00
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:yubico_authenticator/app/state.dart';
import 'package:yubico_authenticator/desktop/state.dart';
import 'rpc.dart';
class RpcQrScanner implements QrScanner {
final RpcSession _rpc;
RpcQrScanner(this._rpc);
@override
2022-06-13 17:45:26 +03:00
Future<String?> scanQr([String? imageData]) async {
2022-03-29 14:57:08 +03:00
final result = await _rpc.command('qr', [], params: {'image': imageData});
return result['result'];
2022-02-10 17:24:28 +03:00
}
}
final desktopQrScannerProvider = Provider<QrScanner?>(
2022-12-20 16:14:14 +03:00
(ref) {
final rpc = ref.watch(rpcProvider).valueOrNull;
return rpc != null ? RpcQrScanner(rpc) : null;
},
2022-02-10 17:24:28 +03:00
);