Skip to content
Snippets Groups Projects
Commit 8a0509b9 authored by Taras's avatar Taras
Browse files

Create public extension for findStageForType

parent c90bc99f
No related branches found
No related tags found
No related merge requests found
package org.matrix.android.sdk.internal.auth
import org.matrix.android.sdk.api.auth.data.LoginFlowTypes
import org.matrix.android.sdk.api.auth.registration.Stage
//Added to support few registration flows
fun List<Stage>.findStageForType(type: String): Stage? = when (type) {
LoginFlowTypes.RECAPTCHA -> firstOrNull { it is Stage.ReCaptcha }
LoginFlowTypes.DUMMY -> firstOrNull { it is Stage.Dummy }
LoginFlowTypes.TERMS -> firstOrNull { it is Stage.Terms }
LoginFlowTypes.EMAIL_IDENTITY -> firstOrNull { it is Stage.Email }
LoginFlowTypes.MSISDN -> firstOrNull { it is Stage.Msisdn }
else -> firstOrNull { (it as? Stage.Other)?.type == type }
}
\ No newline at end of file
...@@ -33,6 +33,7 @@ import org.matrix.android.sdk.internal.auth.AuthAPI ...@@ -33,6 +33,7 @@ import org.matrix.android.sdk.internal.auth.AuthAPI
import org.matrix.android.sdk.internal.auth.PendingSessionStore import org.matrix.android.sdk.internal.auth.PendingSessionStore
import org.matrix.android.sdk.internal.auth.SessionCreator import org.matrix.android.sdk.internal.auth.SessionCreator
import org.matrix.android.sdk.internal.auth.db.PendingSessionData import org.matrix.android.sdk.internal.auth.db.PendingSessionData
import org.matrix.android.sdk.internal.auth.findStageForType
/** /**
* This class execute the registration request and is responsible to keep the session of interactive authentication. * This class execute the registration request and is responsible to keep the session of interactive authentication.
...@@ -295,16 +296,6 @@ internal class DefaultRegistrationWizard( ...@@ -295,16 +296,6 @@ internal class DefaultRegistrationWizard(
return emptyList() return emptyList()
} }
//Added to support few registration flows
private fun List<Stage>.findStageForType(type: String): Stage? = when (type) {
LoginFlowTypes.RECAPTCHA -> firstOrNull { it is Stage.ReCaptcha }
LoginFlowTypes.DUMMY -> firstOrNull { it is Stage.Dummy }
LoginFlowTypes.TERMS -> firstOrNull { it is Stage.Terms }
LoginFlowTypes.EMAIL_IDENTITY -> firstOrNull { it is Stage.Email }
LoginFlowTypes.MSISDN -> firstOrNull { it is Stage.Msisdn }
else -> firstOrNull { (it as? Stage.Other)?.type == type }
}
override suspend fun registrationSwiclops( override suspend fun registrationSwiclops(
authParams: JsonDict, authParams: JsonDict,
userName: String?, userName: String?,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment