NCPasscode.swift 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. //
  2. // NCPasscode.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 13/02/24.
  6. // Copyright © 2024 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import UIKit
  24. import LocalAuthentication
  25. import TOPasscodeViewController
  26. public protocol NCPasscodeDelegate: AnyObject {
  27. func evaluatePolicy(_ passcodeViewController: TOPasscodeViewController, isCorrectCode: Bool)
  28. func passcodeReset(_ passcodeViewController: TOPasscodeViewController)
  29. func requestedAccount()
  30. }
  31. // optional func
  32. public extension NCPasscodeDelegate {
  33. func evaluatePolicy(_ passcodeViewController: TOPasscodeViewController, isCorrectCode: Bool) {}
  34. func passcodeReset() {}
  35. func requestedAccount() {}
  36. }
  37. class NCPasscode: NSObject, TOPasscodeViewControllerDelegate {
  38. public static let shared: NCPasscode = {
  39. let instance = NCPasscode()
  40. return instance
  41. }()
  42. var isPasscodeReset: Bool {
  43. let passcodeCounterFailReset = NCKeychain().passcodeCounterFailReset
  44. return NCKeychain().resetAppCounterFail && passcodeCounterFailReset >= NCBrandOptions.shared.resetAppPasscodeAttempts
  45. }
  46. var isPasscodeCounterFail: Bool {
  47. let passcodeCounterFail = NCKeychain().passcodeCounterFail
  48. return passcodeCounterFail > 0 && passcodeCounterFail.isMultiple(of: 3)
  49. }
  50. var isPasscodePresented: Bool {
  51. return privacyProtectionWindow?.rootViewController?.presentedViewController is TOPasscodeViewController
  52. }
  53. var privacyProtectionWindow: UIWindow?
  54. var passcodeViewController: TOPasscodeViewController!
  55. var delegate: NCPasscodeDelegate?
  56. func presentPasscode(viewController: UIViewController? = nil, delegate: NCPasscodeDelegate?, completion: @escaping () -> Void) {
  57. var error: NSError?
  58. var viewController = viewController
  59. self.delegate = delegate
  60. defer {
  61. self.delegate?.requestedAccount()
  62. }
  63. guard NCKeychain().passcode != nil, NCKeychain().requestPasscodeAtStart else { return }
  64. #if !EXTENSION
  65. let appDelegate = UIApplication.shared.delegate as? AppDelegate
  66. let presentedViewController = appDelegate?.window?.rootViewController?.presentedViewController
  67. guard !(presentedViewController is NCLoginNavigationController) else { return }
  68. // Make sure we have a privacy window (in case it's not enabled) only for App
  69. self.showPrivacyProtectionWindow()
  70. // show passcode on top of privacy window only for App
  71. viewController = self.privacyProtectionWindow?.rootViewController
  72. #endif
  73. passcodeViewController = TOPasscodeViewController(passcodeType: .sixDigits, allowCancel: false)
  74. passcodeViewController.delegate = self
  75. passcodeViewController.keypadButtonShowLettering = false
  76. if NCKeychain().touchFaceID, LAContext().canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  77. if error == nil {
  78. if LAContext().biometryType == .faceID {
  79. passcodeViewController.biometryType = .faceID
  80. } else if LAContext().biometryType == .touchID {
  81. passcodeViewController.biometryType = .touchID
  82. }
  83. passcodeViewController.allowBiometricValidation = true
  84. passcodeViewController.automaticallyPromptForBiometricValidation = false
  85. }
  86. }
  87. viewController?.present(passcodeViewController, animated: true, completion: {
  88. self.openAlert(passcodeViewController: self.passcodeViewController)
  89. completion()
  90. })
  91. }
  92. func enableTouchFaceID() {
  93. guard NCKeychain().touchFaceID,
  94. NCKeychain().passcode != nil,
  95. NCKeychain().requestPasscodeAtStart,
  96. !isPasscodeCounterFail,
  97. let passcodeViewController
  98. else { return }
  99. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  100. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { success, evaluateError in
  101. if success {
  102. DispatchQueue.main.async {
  103. passcodeViewController.dismiss(animated: true) {
  104. NCKeychain().passcodeCounterFail = 0
  105. NCKeychain().passcodeCounterFailReset = 0
  106. self.hidePrivacyProtectionWindow()
  107. self.delegate?.evaluatePolicy(passcodeViewController, isCorrectCode: true)
  108. self.delegate?.requestedAccount()
  109. }
  110. }
  111. } else {
  112. if let error = evaluateError {
  113. switch error._code {
  114. case LAError.userFallback.rawValue, LAError.authenticationFailed.rawValue:
  115. if LAContext().biometryType == .faceID {
  116. NCKeychain().passcodeCounterFail = 2
  117. NCKeychain().passcodeCounterFailReset += 2
  118. } else {
  119. NCKeychain().passcodeCounterFail = 3
  120. NCKeychain().passcodeCounterFailReset += 3
  121. }
  122. self.openAlert(passcodeViewController: passcodeViewController)
  123. case LAError.biometryLockout.rawValue:
  124. LAContext().evaluatePolicy(LAPolicy.deviceOwnerAuthentication, localizedReason: NSLocalizedString("_deviceOwnerAuthentication_", comment: ""), reply: { success, _ in
  125. if success {
  126. DispatchQueue.main.async {
  127. NCKeychain().passcodeCounterFail = 0
  128. self.enableTouchFaceID()
  129. }
  130. }
  131. })
  132. case LAError.userCancel.rawValue:
  133. NCKeychain().passcodeCounterFail += 1
  134. NCKeychain().passcodeCounterFailReset += 1
  135. default:
  136. break
  137. }
  138. }
  139. }
  140. }
  141. }
  142. }
  143. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  144. DispatchQueue.main.async {
  145. passcodeViewController.dismiss(animated: true) {
  146. NCKeychain().passcodeCounterFail = 0
  147. NCKeychain().passcodeCounterFailReset = 0
  148. self.hidePrivacyProtectionWindow()
  149. self.delegate?.requestedAccount()
  150. }
  151. }
  152. }
  153. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  154. if code == NCKeychain().passcode {
  155. self.delegate?.evaluatePolicy(passcodeViewController, isCorrectCode: true)
  156. return true
  157. } else {
  158. NCKeychain().passcodeCounterFail += 1
  159. NCKeychain().passcodeCounterFailReset += 1
  160. openAlert(passcodeViewController: passcodeViewController)
  161. self.delegate?.evaluatePolicy(passcodeViewController, isCorrectCode: false)
  162. return false
  163. }
  164. }
  165. func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
  166. enableTouchFaceID()
  167. }
  168. func openAlert(passcodeViewController: TOPasscodeViewController) {
  169. DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
  170. if self.isPasscodeReset {
  171. passcodeViewController.setContentHidden(true, animated: true)
  172. let alertController = UIAlertController(title: NSLocalizedString("_reset_wrong_passcode_", comment: ""), message: nil, preferredStyle: .alert)
  173. passcodeViewController.present(alertController, animated: true, completion: { })
  174. self.delegate?.passcodeReset()
  175. } else if self.isPasscodeCounterFail {
  176. passcodeViewController.setContentHidden(true, animated: true)
  177. let alertController = UIAlertController(title: NSLocalizedString("_passcode_counter_fail_", comment: ""), message: nil, preferredStyle: .alert)
  178. passcodeViewController.present(alertController, animated: true, completion: { })
  179. var seconds = NCBrandOptions.shared.passcodeSecondsFail
  180. _ = Timer.scheduledTimer(withTimeInterval: 1.0, repeats: true) { timer in
  181. alertController.message = "\(seconds) " + NSLocalizedString("_seconds_", comment: "")
  182. seconds -= 1
  183. if seconds < 0 {
  184. timer.invalidate()
  185. alertController.dismiss(animated: true)
  186. passcodeViewController.setContentHidden(false, animated: true)
  187. NCKeychain().passcodeCounterFail = 0
  188. self.enableTouchFaceID()
  189. }
  190. }
  191. }
  192. }
  193. }
  194. // MARK: - Privacy Protection
  195. func showPrivacyProtectionWindow() {
  196. guard privacyProtectionWindow == nil else {
  197. privacyProtectionWindow?.isHidden = false
  198. return
  199. }
  200. privacyProtectionWindow = UIWindow(frame: UIScreen.main.bounds)
  201. let storyboard = UIStoryboard(name: "LaunchScreen", bundle: nil)
  202. let initialViewController = storyboard.instantiateInitialViewController()
  203. self.privacyProtectionWindow?.rootViewController = initialViewController
  204. privacyProtectionWindow?.windowLevel = .alert + 1
  205. privacyProtectionWindow?.makeKeyAndVisible()
  206. }
  207. func hidePrivacyProtectionWindow() {
  208. guard !(privacyProtectionWindow?.rootViewController?.presentedViewController is TOPasscodeViewController) else { return }
  209. UIWindow.animate(withDuration: 0.25) {
  210. self.privacyProtectionWindow?.alpha = 0
  211. } completion: { _ in
  212. self.privacyProtectionWindow?.isHidden = true
  213. self.privacyProtectionWindow = nil
  214. }
  215. }
  216. }