element-ios/Riot/Modules/SetPinCode/PinCodePreferences.swift
2020-09-17 14:01:29 +03:00

157 lines
4.8 KiB
Swift

/*
Copyright 2018 New Vector Ltd
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 Foundation
import KeychainAccess
import LocalAuthentication
/// Pin code preferences.
@objcMembers
final class PinCodePreferences: NSObject {
// MARK: - Constants
private struct PinConstants {
static let pinCodeKeychainService: String = BuildSettings.baseBundleIdentifier + ".pin-service"
}
private struct StoreKeys {
static let pin: String = "pin"
static let biometricsEnabled: String = "biometricsEnabled"
}
static let shared = PinCodePreferences()
/// Store. Defaults to `KeychainStore`
private let store: KeyValueStore
override init() {
store = KeychainStore(withKeychain: Keychain(service: PinConstants.pinCodeKeychainService,
accessGroup: BuildSettings.keychainAccessGroup))
super.init()
}
// MARK: - Public
/// Setting to force protection by pin code
var forcePinProtection: Bool {
return BuildSettings.forcePinProtection
}
/// Blocked pin codes. User won't be able to select one of the pin in the list.
var blockedPINs: [String] {
return BuildSettings.blockedPINs
}
var isBiometricsAvailable: Bool {
return LAContext().canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: nil)
}
/// Allowed number of PIN trials before showing forgot help alert
let allowedNumberOfTrialsBeforeAlert: Int = 5
/// Max allowed time to continue using the app without prompting PIN
var graceTimeInSeconds: TimeInterval {
return BuildSettings.pinCodeGraceTimeInSeconds
}
/// Number of digits for the PIN
let numberOfDigits: Int = 4
/// Is user has set a pin
var isPinSet: Bool {
return pin != nil
}
/// Saved user PIN
var pin: String? {
get {
do {
return try store.string(forKey: StoreKeys.pin)
} catch let error {
NSLog("[PinCodePreferences] Error when reading user pin from store: \(error)")
return nil
}
} set {
do {
try store.set(newValue, forKey: StoreKeys.pin)
} catch let error {
NSLog("[PinCodePreferences] Error when storing user pin to the store: \(error)")
}
}
}
var biometricsEnabled: Bool? {
get {
do {
return try store.bool(forKey: StoreKeys.biometricsEnabled)
} catch let error {
NSLog("[PinCodePreferences] Error when reading biometrics enabled from store: \(error)")
return nil
}
} set {
do {
try store.set(newValue, forKey: StoreKeys.biometricsEnabled)
} catch let error {
NSLog("[PinCodePreferences] Error when storing biometrics enabled to the store: \(error)")
}
}
}
var isBiometricsSet: Bool {
return biometricsEnabled == true
}
func localizedBiometricsName() -> String? {
if isBiometricsAvailable {
let context = LAContext()
// canEvaluatePolicy should be called for biometryType to be set
_ = context.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: nil)
switch context.biometryType {
case .touchID:
return VectorL10n.biometricsModeTouchId
case .faceID:
return VectorL10n.biometricsModeFaceId
default:
return nil
}
}
return nil
}
func biometricsIcon() -> UIImage? {
if isBiometricsAvailable {
let context = LAContext()
// canEvaluatePolicy should be called for biometryType to be set
_ = context.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: nil)
switch context.biometryType {
case .touchID:
return Asset.Images.touchidIcon.image
case .faceID:
return Asset.Images.faceidIcon.image
default:
return nil
}
}
return nil
}
/// Resets user PIN
func reset() {
pin = nil
biometricsEnabled = nil
}
}