mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
91 lines
2.7 KiB
Swift
91 lines
2.7 KiB
Swift
/*
|
|
* Copyright (c) 2010-2023 Belledonne Communications SARL.
|
|
*
|
|
* This file is part of Linphone
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
import AVFoundation
|
|
|
|
struct QRScanner: UIViewControllerRepresentable {
|
|
|
|
@Binding var result: String
|
|
|
|
func makeUIViewController(context: Context) -> QRScannerController {
|
|
let controller = QRScannerController()
|
|
controller.delegate = context.coordinator
|
|
|
|
return controller
|
|
}
|
|
|
|
func makeCoordinator() -> Coordinator {
|
|
Coordinator($result)
|
|
}
|
|
|
|
func updateUIViewController(_ uiViewController: QRScannerController, context: Context) {
|
|
}
|
|
}
|
|
|
|
class Coordinator: NSObject, AVCaptureMetadataOutputObjectsDelegate {
|
|
|
|
private var coreContext = CoreContext.shared
|
|
|
|
@Binding var scanResult: String
|
|
private var lastResult: String = ""
|
|
|
|
init(_ scanResult: Binding<String>) {
|
|
self._scanResult = scanResult
|
|
}
|
|
|
|
func metadataOutput(_ output: AVCaptureMetadataOutput, didOutput metadataObjects: [AVMetadataObject], from connection: AVCaptureConnection) {
|
|
|
|
// Check if the metadataObjects array is not nil and it contains at least one object.
|
|
if metadataObjects.isEmpty {
|
|
scanResult = "Scan a QR code"
|
|
return
|
|
}
|
|
|
|
// Get the metadata object.
|
|
guard let metadataObj = metadataObjects[0] as? AVMetadataMachineReadableCodeObject else {
|
|
return
|
|
}
|
|
|
|
if metadataObj.type == AVMetadataObject.ObjectType.qr,
|
|
let result = metadataObj.stringValue {
|
|
if !result.isEmpty && result != lastResult {
|
|
if let url = NSURL(string: result) {
|
|
if UIApplication.shared.canOpenURL(url as URL) {
|
|
lastResult = result
|
|
coreContext.doOnCoreQueue { core in
|
|
try? core.setProvisioninguri(newValue: result)
|
|
core.stop()
|
|
try? core.start()
|
|
}
|
|
ToastViewModel.shared.toastMessage = "Success_qr_code_validated"
|
|
ToastViewModel.shared.displayToast = true
|
|
} else {
|
|
ToastViewModel.shared.toastMessage = "Invalide URI"
|
|
ToastViewModel.shared.displayToast.toggle()
|
|
}
|
|
} else {
|
|
ToastViewModel.shared.toastMessage = "Invalide URI"
|
|
ToastViewModel.shared.displayToast.toggle()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|