* New LICENSE-COMMERCIAL file * Apply dual licenses: AGPL + Element Commercial to file headers * Update README with dual licensing
89 lines
2.9 KiB
Swift
89 lines
2.9 KiB
Swift
//
|
|
// Copyright 2022-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum AppLockSetupPINScreenViewModelAction {
|
|
/// The user succeeded PIN entry.
|
|
case complete
|
|
/// The user cancelled PIN entry.
|
|
case cancel
|
|
/// The user failed to remember their PIN to unlock.
|
|
case forceLogout
|
|
}
|
|
|
|
enum AppLockSetupPINScreenMode {
|
|
/// Creating a new PIN.
|
|
case create
|
|
/// Confirming the new PIN.
|
|
case confirm
|
|
/// Unlocking with the current PIN.
|
|
case unlock
|
|
}
|
|
|
|
struct AppLockSetupPINScreenViewState: BindableState {
|
|
/// The number of attempts allowed to enter the PIN.
|
|
let maximumAttempts = 3
|
|
|
|
/// The current mode that the screen is in.
|
|
var mode: AppLockSetupPINScreenMode
|
|
/// Whether the screen is mandatory or can be cancelled.
|
|
let isMandatory: Bool
|
|
/// The number of attempts the user has made in the `confirm` mode.
|
|
var numberOfConfirmAttempts = 0
|
|
/// The number of attempts the user has made in the `unlock` mode.
|
|
var numberOfUnlockAttempts = 0
|
|
/// The user failed to unlock the app (or forgot their PIN) and the log out is in progress.
|
|
var isLoggingOut = false
|
|
|
|
var title: String {
|
|
switch mode {
|
|
case .create: return L10n.screenAppLockSetupChoosePin
|
|
case .confirm: return L10n.screenAppLockSetupConfirmPin
|
|
case .unlock: return L10n.commonEnterYourPin
|
|
}
|
|
}
|
|
|
|
/// Whether the subtitle is in a warning state or not.
|
|
var isSubtitleWarning: Bool { mode == .unlock && numberOfUnlockAttempts > 0 }
|
|
var subtitle: String {
|
|
guard mode == .unlock else { return L10n.screenAppLockSetupPinContext(InfoPlistReader.main.bundleDisplayName) }
|
|
if !isSubtitleWarning {
|
|
return L10n.screenAppLockSubtitle(maximumAttempts)
|
|
} else {
|
|
return L10n.screenAppLockSubtitleWrongPin(maximumAttempts - numberOfUnlockAttempts)
|
|
}
|
|
}
|
|
|
|
var bindings: AppLockSetupPINScreenViewStateBindings
|
|
}
|
|
|
|
struct AppLockSetupPINScreenViewStateBindings {
|
|
var pinCode: String
|
|
var alertInfo: AlertInfo<AppLockSetupPINScreenAlertType>?
|
|
}
|
|
|
|
enum AppLockSetupPINScreenAlertType {
|
|
/// The user entered a weak PIN and it has been rejected.
|
|
case weakPIN
|
|
/// The user entered the wrong PIN when confirming the creation.
|
|
case pinMismatch
|
|
/// An error occurred setting the PIN code in the App Lock service.
|
|
case failedToSetPIN
|
|
/// The user has forgotten their PIN, confirm they're happy to sign out.
|
|
case confirmResetPIN
|
|
/// The user failed to unlock the app (or forgot their PIN).
|
|
case forceLogout
|
|
}
|
|
|
|
enum AppLockSetupPINScreenViewAction {
|
|
/// Stop entering a PIN.
|
|
case cancel
|
|
/// The user didn't heed the warnings and can't remember their PIN.
|
|
case forgotPIN
|
|
}
|