* Move the AuthenticationStartScreen into the Authentication directory.
* Commit the updated Sentry license.
No idea why they dropped the 2024 🤷♂️
* Use StateStoreViewModelV2 in BugReportScreen.
* Use StateStoreViewModelV2 in UserDetailsEditScreen.
* Use StateStoreViewModelV2 in NotificationSettingsScreen.
* Use StateStoreViewModelV2 in NotificationSettingsEditScreen.
* Use StateStoreViewModelV2 in LegalInformationScreen.
* Use StateStoreViewModelV2 in LogViewerScreen.
* Use StateStoreViewModelV2 in AnalyticsSettingsScreen.
* Rename AdvancedSettingsScreen directory.
* Use StateStoreViewModelV2 in EncryptionResetScreen.
* Use StateStoreViewModelV2 in EncryptionResetPasswordScreen.
* Use StateStoreViewModelV2 in SecureBackup…Screens.
* Use StateStoreViewModelV2 in LoginScreen.
Seems this one was ignored waiting on the fulfillment transitionValues implementation.
* Use StateStoreViewModelV2 in DeactivateAccountScreen.
* Move DeactivateAccountScreen into the Settings directory.
132 lines
5.8 KiB
Swift
132 lines
5.8 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 Combine
|
|
import SwiftUI
|
|
|
|
typealias AuthenticationStartScreenViewModelType = StateStoreViewModelV2<AuthenticationStartScreenViewState, AuthenticationStartScreenViewAction>
|
|
|
|
class AuthenticationStartScreenViewModel: AuthenticationStartScreenViewModelType, AuthenticationStartScreenViewModelProtocol {
|
|
private let authenticationService: AuthenticationServiceProtocol
|
|
private let provisioningParameters: AccountProvisioningParameters?
|
|
private let appSettings: AppSettings
|
|
private let userIndicatorController: UserIndicatorControllerProtocol
|
|
|
|
private var actionsSubject: PassthroughSubject<AuthenticationStartScreenViewModelAction, Never> = .init()
|
|
|
|
var actions: AnyPublisher<AuthenticationStartScreenViewModelAction, Never> {
|
|
actionsSubject.eraseToAnyPublisher()
|
|
}
|
|
|
|
init(authenticationService: AuthenticationServiceProtocol,
|
|
provisioningParameters: AccountProvisioningParameters?,
|
|
isBugReportServiceEnabled: Bool,
|
|
appSettings: AppSettings,
|
|
userIndicatorController: UserIndicatorControllerProtocol) {
|
|
self.authenticationService = authenticationService
|
|
self.provisioningParameters = provisioningParameters
|
|
self.appSettings = appSettings
|
|
self.userIndicatorController = userIndicatorController
|
|
|
|
let isQRCodeScanningSupported = !ProcessInfo.processInfo.isiOSAppOnMac
|
|
|
|
let initialViewState = if !appSettings.allowOtherAccountProviders {
|
|
// We don't show the create account button when custom providers are disallowed.
|
|
// The assumption here being that if you're running a custom app, your users will already be created.
|
|
AuthenticationStartScreenViewState(serverName: appSettings.accountProviders.count == 1 ? appSettings.accountProviders[0] : nil,
|
|
showCreateAccountButton: false,
|
|
showQRCodeLoginButton: isQRCodeScanningSupported,
|
|
showReportProblemButton: isBugReportServiceEnabled)
|
|
} else if let provisioningParameters {
|
|
// We only show the "Sign in to …" button when using a provisioning link.
|
|
AuthenticationStartScreenViewState(serverName: provisioningParameters.accountProvider,
|
|
showCreateAccountButton: false,
|
|
showQRCodeLoginButton: false,
|
|
showReportProblemButton: isBugReportServiceEnabled)
|
|
} else {
|
|
// The default configuration.
|
|
AuthenticationStartScreenViewState(serverName: nil,
|
|
showCreateAccountButton: appSettings.showCreateAccountButton,
|
|
showQRCodeLoginButton: isQRCodeScanningSupported,
|
|
showReportProblemButton: isBugReportServiceEnabled)
|
|
}
|
|
|
|
super.init(initialViewState: initialViewState)
|
|
}
|
|
|
|
override func process(viewAction: AuthenticationStartScreenViewAction) {
|
|
switch viewAction {
|
|
case .updateWindow(let window):
|
|
guard state.window != window else { return }
|
|
state.window = window
|
|
case .loginWithQR:
|
|
actionsSubject.send(.loginWithQR)
|
|
case .login:
|
|
Task { await login() }
|
|
case .register:
|
|
actionsSubject.send(.register)
|
|
case .reportProblem:
|
|
actionsSubject.send(.reportProblem)
|
|
}
|
|
}
|
|
|
|
// MARK: - Private
|
|
|
|
private func login() async {
|
|
if let serverName = state.serverName {
|
|
await configureAccountProvider(serverName, loginHint: provisioningParameters?.loginHint)
|
|
} else {
|
|
actionsSubject.send(.login) // No need to configure anything here, continue the flow.
|
|
}
|
|
}
|
|
|
|
private func configureAccountProvider(_ accountProvider: String, loginHint: String? = nil) async {
|
|
startLoading()
|
|
defer { stopLoading() }
|
|
|
|
guard case .success = await authenticationService.configure(for: accountProvider, flow: .login) else {
|
|
// As the server was provisioned, we don't worry about the specifics and show a generic error to the user.
|
|
displayError()
|
|
return
|
|
}
|
|
|
|
guard authenticationService.homeserver.value.loginMode.supportsOIDCFlow else {
|
|
actionsSubject.send(.loginDirectlyWithPassword(loginHint: loginHint))
|
|
return
|
|
}
|
|
|
|
guard let window = state.window else {
|
|
displayError()
|
|
return
|
|
}
|
|
|
|
switch await authenticationService.urlForOIDCLogin(loginHint: loginHint) {
|
|
case .success(let oidcData):
|
|
actionsSubject.send(.loginDirectlyWithOIDC(data: oidcData, window: window))
|
|
case .failure:
|
|
displayError()
|
|
}
|
|
}
|
|
|
|
private let loadingIndicatorID = "\(AuthenticationStartScreenViewModel.self)-Loading"
|
|
|
|
private func startLoading() {
|
|
userIndicatorController.submitIndicator(UserIndicator(id: loadingIndicatorID,
|
|
type: .modal,
|
|
title: L10n.commonLoading,
|
|
persistent: true))
|
|
}
|
|
|
|
private func stopLoading() {
|
|
userIndicatorController.retractIndicatorWithId(loadingIndicatorID)
|
|
}
|
|
|
|
private func displayError() {
|
|
state.bindings.alertInfo = AlertInfo(id: .genericError)
|
|
}
|
|
}
|