123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- //
- // NCLoginQRCode.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 04/03/2019.
- // Copyright © 2019 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // 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 UIKit
- import QRCodeReader
- @objc public protocol NCLoginQRCodeDelegate {
- @objc func dismissQRCode(_ value: String?, metadataType: String?)
- }
- class NCLoginQRCode: NSObject, QRCodeReaderViewControllerDelegate {
-
- lazy var reader: QRCodeReader = QRCodeReader()
-
- weak var delegate: UIViewController?
-
- lazy var readerVC: QRCodeReaderViewController = {
- let builder = QRCodeReaderViewControllerBuilder {
- $0.reader = QRCodeReader(metadataObjectTypes: [.qr], captureDevicePosition: .back)
- $0.showTorchButton = true
- $0.preferredStatusBarStyle = .lightContent
- $0.showOverlayView = true
- $0.rectOfInterest = CGRect(x: 0.2, y: 0.2, width: 0.6, height: 0.6)
-
- $0.reader.stopScanningWhenCodeIsFound = false
- }
-
- return QRCodeReaderViewController(builder: builder)
- }()
- override init() {
-
- }
-
- @objc public init(delegate: UIViewController) {
- self.delegate = delegate
- }
-
- @objc func scan() {
- guard checkScanPermissions() else { return }
-
- readerVC.modalPresentationStyle = .formSheet
- readerVC.delegate = self
-
- readerVC.completionBlock = { (result: QRCodeReaderResult?) in
- self.readerVC.dismiss(animated: true, completion: nil)
- }
-
- delegate?.present(readerVC, animated: true, completion: nil)
- }
-
- private func checkScanPermissions() -> Bool {
- do {
- return try QRCodeReader.supportsMetadataObjectTypes()
- } catch let error as NSError {
- let alert: UIAlertController
-
- switch error.code {
- case -11852:
- alert = UIAlertController(title: NSLocalizedString("_error_", comment: ""), message: NSLocalizedString("_qrcode_not_authorized_", comment: ""), preferredStyle: .alert)
-
- alert.addAction(UIAlertAction(title: NSLocalizedString("_settings_", comment: ""), style: .default, handler: { (_) in
- DispatchQueue.main.async {
- if let settingsURL = URL(string: UIApplication.openSettingsURLString) {
- UIApplication.shared.open(settingsURL, options: [:], completionHandler: nil)
- }
- }
- }))
-
- alert.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel, handler: nil))
- default:
- alert = UIAlertController(title: NSLocalizedString("_error_", comment: ""), message: NSLocalizedString("_qrcode_not_supported_", comment: ""), preferredStyle: .alert)
- alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .cancel, handler: nil))
- }
-
- delegate?.present(alert, animated: true, completion: nil)
-
- return false
- }
- }
-
- func reader(_ reader: QRCodeReaderViewController, didScanResult result: QRCodeReaderResult) {
- reader.stopScanning()
-
- (self.delegate as? NCLoginQRCodeDelegate)?.dismissQRCode(result.value, metadataType: result.metadataType)
- }
-
- func readerDidCancel(_ reader: QRCodeReaderViewController) {
- reader.stopScanning()
-
- (self.delegate as? NCLoginQRCodeDelegate)?.dismissQRCode(nil, metadataType: nil)
- }
- }
|