refactors FtueAuthVariant with new feature flag on registration and signin
This commit is contained in:
parent
713248805c
commit
f18808b4d7
|
@ -0,0 +1,20 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2022 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package im.vector.lib.core.utils.extensions
|
||||||
|
|
||||||
|
@Suppress("UNUSED_PARAMETER")
|
||||||
|
fun doNothing(reason: String = "") = Unit
|
|
@ -52,6 +52,7 @@ import im.vector.app.features.onboarding.OnboardingViewModel
|
||||||
import im.vector.app.features.onboarding.OnboardingViewState
|
import im.vector.app.features.onboarding.OnboardingViewState
|
||||||
import im.vector.app.features.onboarding.ftueauth.terms.FtueAuthTermsFragment
|
import im.vector.app.features.onboarding.ftueauth.terms.FtueAuthTermsFragment
|
||||||
import im.vector.app.features.onboarding.ftueauth.terms.FtueAuthTermsFragmentArgument
|
import im.vector.app.features.onboarding.ftueauth.terms.FtueAuthTermsFragmentArgument
|
||||||
|
import im.vector.lib.core.utils.extensions.doNothing
|
||||||
import org.matrix.android.sdk.api.auth.registration.FlowResult
|
import org.matrix.android.sdk.api.auth.registration.FlowResult
|
||||||
import org.matrix.android.sdk.api.auth.registration.Stage
|
import org.matrix.android.sdk.api.auth.registration.Stage
|
||||||
import org.matrix.android.sdk.api.extensions.tryOrNull
|
import org.matrix.android.sdk.api.extensions.tryOrNull
|
||||||
|
@ -109,7 +110,7 @@ class FtueAuthVariant(
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun setIsLoading(isLoading: Boolean) {
|
override fun setIsLoading(isLoading: Boolean) {
|
||||||
// do nothing
|
doNothing()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun addFirstFragment() {
|
private fun addFirstFragment() {
|
||||||
|
@ -134,11 +135,7 @@ class FtueAuthVariant(
|
||||||
// First ask for login and password
|
// First ask for login and password
|
||||||
// I add a tag to indicate that this fragment is a registration stage.
|
// I add a tag to indicate that this fragment is a registration stage.
|
||||||
// This way it will be automatically popped in when starting the next registration stage
|
// This way it will be automatically popped in when starting the next registration stage
|
||||||
activity.addFragmentToBackstack(views.loginFragmentContainer,
|
openAuthLoginFragmentWithTag(FRAGMENT_REGISTRATION_STAGE_TAG)
|
||||||
FtueAuthLoginFragment::class.java,
|
|
||||||
tag = FRAGMENT_REGISTRATION_STAGE_TAG,
|
|
||||||
option = commonOption
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -228,6 +225,19 @@ class FtueAuthVariant(
|
||||||
private fun OnboardingViewEvents.RegistrationFlowResult.containsUnsupportedRegistrationFlow() =
|
private fun OnboardingViewEvents.RegistrationFlowResult.containsUnsupportedRegistrationFlow() =
|
||||||
flowResult.missingStages.any { !it.isSupported() }
|
flowResult.missingStages.any { !it.isSupported() }
|
||||||
|
|
||||||
|
private fun onRegistrationStageNotSupported() {
|
||||||
|
MaterialAlertDialogBuilder(activity)
|
||||||
|
.setTitle(R.string.app_name)
|
||||||
|
.setMessage(activity.getString(R.string.login_registration_not_supported))
|
||||||
|
.setPositiveButton(R.string.yes) { _, _ ->
|
||||||
|
activity.addFragmentToBackstack(views.loginFragmentContainer,
|
||||||
|
FtueAuthWebFragment::class.java,
|
||||||
|
option = commonOption)
|
||||||
|
}
|
||||||
|
.setNegativeButton(R.string.no, null)
|
||||||
|
.show()
|
||||||
|
}
|
||||||
|
|
||||||
private fun updateWithState(viewState: OnboardingViewState) {
|
private fun updateWithState(viewState: OnboardingViewState) {
|
||||||
if (viewState.isUserLogged()) {
|
if (viewState.isUserLogged()) {
|
||||||
val intent = HomeActivity.newIntent(
|
val intent = HomeActivity.newIntent(
|
||||||
|
@ -270,29 +280,56 @@ class FtueAuthVariant(
|
||||||
// state.signMode could not be ready yet. So use value from the ViewEvent
|
// state.signMode could not be ready yet. So use value from the ViewEvent
|
||||||
when (OnboardingViewEvents.signMode) {
|
when (OnboardingViewEvents.signMode) {
|
||||||
SignMode.Unknown -> error("Sign mode has to be set before calling this method")
|
SignMode.Unknown -> error("Sign mode has to be set before calling this method")
|
||||||
SignMode.SignUp -> {
|
SignMode.SignUp -> doNothing("This is managed by the OnboardingViewEvents")
|
||||||
// This is managed by the OnboardingViewEvents
|
SignMode.SignIn -> handleSignInSelected(state)
|
||||||
}
|
SignMode.SignInWithMatrixId -> handleSignInWithMatrixId(state)
|
||||||
SignMode.SignIn -> {
|
|
||||||
// It depends on the LoginMode
|
|
||||||
when (state.loginMode) {
|
|
||||||
LoginMode.Unknown,
|
|
||||||
is LoginMode.Sso -> error("Developer error")
|
|
||||||
is LoginMode.SsoAndPassword,
|
|
||||||
LoginMode.Password -> activity.addFragmentToBackstack(views.loginFragmentContainer,
|
|
||||||
FtueAuthLoginFragment::class.java,
|
|
||||||
tag = FRAGMENT_LOGIN_TAG,
|
|
||||||
option = commonOption)
|
|
||||||
LoginMode.Unsupported -> onLoginModeNotSupported(state.loginModeSupportedTypes)
|
|
||||||
}.exhaustive
|
|
||||||
}
|
|
||||||
SignMode.SignInWithMatrixId -> activity.addFragmentToBackstack(views.loginFragmentContainer,
|
|
||||||
FtueAuthLoginFragment::class.java,
|
|
||||||
tag = FRAGMENT_LOGIN_TAG,
|
|
||||||
option = commonOption)
|
|
||||||
}.exhaustive
|
}.exhaustive
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun handleSignInSelected(state: OnboardingViewState) {
|
||||||
|
if (vectorFeatures.isForceLoginFallbackEnabled())
|
||||||
|
onLoginModeNotSupported(state.loginModeSupportedTypes)
|
||||||
|
else
|
||||||
|
disambiguateLoginMode(state)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun disambiguateLoginMode(state: OnboardingViewState) = when (state.loginMode) {
|
||||||
|
LoginMode.Unknown,
|
||||||
|
is LoginMode.Sso -> error("Developer error")
|
||||||
|
is LoginMode.SsoAndPassword,
|
||||||
|
LoginMode.Password -> openAuthLoginFragmentWithTag(FRAGMENT_LOGIN_TAG)
|
||||||
|
LoginMode.Unsupported -> onLoginModeNotSupported(state.loginModeSupportedTypes)
|
||||||
|
}.exhaustive
|
||||||
|
|
||||||
|
private fun openAuthLoginFragmentWithTag(tag: String) {
|
||||||
|
activity.addFragmentToBackstack(views.loginFragmentContainer,
|
||||||
|
FtueAuthLoginFragment::class.java,
|
||||||
|
tag = tag,
|
||||||
|
option = commonOption)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun onLoginModeNotSupported(supportedTypes: List<String>) {
|
||||||
|
MaterialAlertDialogBuilder(activity)
|
||||||
|
.setTitle(R.string.app_name)
|
||||||
|
.setMessage(activity.getString(R.string.login_mode_not_supported, supportedTypes.joinToString { "'$it'" }))
|
||||||
|
.setPositiveButton(R.string.yes) { _, _ -> openAuthWebFragment() }
|
||||||
|
.setNegativeButton(R.string.no, null)
|
||||||
|
.show()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun handleSignInWithMatrixId(state: OnboardingViewState) {
|
||||||
|
if (vectorFeatures.isForceLoginFallbackEnabled())
|
||||||
|
onLoginModeNotSupported(state.loginModeSupportedTypes)
|
||||||
|
else
|
||||||
|
openAuthLoginFragmentWithTag(FRAGMENT_LOGIN_TAG)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun openAuthWebFragment() {
|
||||||
|
activity.addFragmentToBackstack(views.loginFragmentContainer,
|
||||||
|
FtueAuthWebFragment::class.java,
|
||||||
|
option = commonOption)
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the SSO redirection here
|
* Handle the SSO redirection here
|
||||||
*/
|
*/
|
||||||
|
@ -302,32 +339,6 @@ class FtueAuthVariant(
|
||||||
?.let { onboardingViewModel.handle(OnboardingAction.LoginWithToken(it)) }
|
?.let { onboardingViewModel.handle(OnboardingAction.LoginWithToken(it)) }
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun onRegistrationStageNotSupported() {
|
|
||||||
MaterialAlertDialogBuilder(activity)
|
|
||||||
.setTitle(R.string.app_name)
|
|
||||||
.setMessage(activity.getString(R.string.login_registration_not_supported))
|
|
||||||
.setPositiveButton(R.string.yes) { _, _ ->
|
|
||||||
activity.addFragmentToBackstack(views.loginFragmentContainer,
|
|
||||||
FtueAuthWebFragment::class.java,
|
|
||||||
option = commonOption)
|
|
||||||
}
|
|
||||||
.setNegativeButton(R.string.no, null)
|
|
||||||
.show()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun onLoginModeNotSupported(supportedTypes: List<String>) {
|
|
||||||
MaterialAlertDialogBuilder(activity)
|
|
||||||
.setTitle(R.string.app_name)
|
|
||||||
.setMessage(activity.getString(R.string.login_mode_not_supported, supportedTypes.joinToString { "'$it'" }))
|
|
||||||
.setPositiveButton(R.string.yes) { _, _ ->
|
|
||||||
activity.addFragmentToBackstack(views.loginFragmentContainer,
|
|
||||||
FtueAuthWebFragment::class.java,
|
|
||||||
option = commonOption)
|
|
||||||
}
|
|
||||||
.setNegativeButton(R.string.no, null)
|
|
||||||
.show()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun handleRegistrationNavigation(flowResult: FlowResult) {
|
private fun handleRegistrationNavigation(flowResult: FlowResult) {
|
||||||
// Complete all mandatory stages first
|
// Complete all mandatory stages first
|
||||||
val mandatoryStage = flowResult.missingStages.firstOrNull { it.mandatory }
|
val mandatoryStage = flowResult.missingStages.firstOrNull { it.mandatory }
|
||||||
|
|
Loading…
Reference in New Issue