element-ios/RiotSwiftUI/Modules/Authentication/SoftLogout/AuthenticationSoftLogoutModels.swift

120 lines
3.3 KiB
Swift
Raw Normal View History

2022-06-07 16:22:24 +00:00
//
// Copyright 2021 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 SwiftUI
2022-06-08 13:00:25 +00:00
// MARK: Data
struct SoftLogoutCredentials {
let userId: String
let homeserverName: String
let userDisplayName: String
let deviceId: String?
}
2022-06-07 16:22:24 +00:00
// MARK: View model
enum AuthenticationSoftLogoutViewModelResult: CustomStringConvertible {
2022-06-07 16:22:24 +00:00
/// Login with password
case login(String)
/// Forgot password
case forgotPassword
/// Clear all user data
case clearAllData
2022-06-08 13:00:25 +00:00
/// Continue using the supplied SSO provider.
case continueWithSSO(SSOIdentityProvider)
/// Continue using the fallback page
case fallback
/// A string representation of the result, ignoring any associated values that could leak PII.
var description: String {
switch self {
case .login:
return "login"
case .forgotPassword:
return "forgotPassword"
case .clearAllData:
return "clearAllData"
case .continueWithSSO(let provider):
return "continueWithSSO: \(provider)"
case .fallback:
return "fallback"
}
}
2022-06-07 16:22:24 +00:00
}
// MARK: View
struct AuthenticationSoftLogoutViewState: BindableState {
/// Soft logout credentials
2022-06-08 13:00:25 +00:00
var credentials: SoftLogoutCredentials
/// Data about the selected homeserver.
var homeserver: AuthenticationHomeserverViewData
/// Flag indicating soft logged out user needs backup for some keys
var keyBackupNeeded: Bool
2022-06-07 16:22:24 +00:00
/// View state that can be bound to from SwiftUI.
var bindings: AuthenticationSoftLogoutBindings
2022-06-08 13:00:25 +00:00
/// Whether to show login form.
var showLoginForm: Bool {
homeserver.showLoginForm
}
/// Whether to show any SSO buttons.
var showSSOButtons: Bool {
!homeserver.ssoIdentityProviders.isEmpty
}
/// Whether to show recover encryption keys message
var showRecoverEncryptionKeysMessage: Bool {
keyBackupNeeded
}
2022-06-07 16:22:24 +00:00
/// Whether the password is valid and the user can continue.
var hasInvalidPassword: Bool {
bindings.password.isEmpty
}
}
struct AuthenticationSoftLogoutBindings {
/// The password input by the user.
var password: String
/// Information describing the currently displayed alert.
var alertInfo: AlertInfo<AuthenticationSoftLogoutErrorType>?
}
enum AuthenticationSoftLogoutViewAction {
/// Login.
case login
/// Forgot password
case forgotPassword
/// Clear all user data.
case clearAllData
2022-06-08 13:00:25 +00:00
/// Continue using the supplied SSO provider.
case continueWithSSO(SSOIdentityProvider)
/// Continue using the fallback page
case fallback
2022-06-07 16:22:24 +00:00
}
enum AuthenticationSoftLogoutErrorType: Hashable {
/// An error response from the homeserver.
case mxError(String)
/// An unknown error occurred.
case unknown
}