Skip to content
Snippets Groups Projects
Commit 56b18725 authored by Taras's avatar Taras
Browse files

Add default terms item

parent e2de1bb5
No related branches found
No related tags found
No related merge requests found
...@@ -10,4 +10,5 @@ const val AUTH_EXCEPTION_REASON_KEY = "reason" ...@@ -10,4 +10,5 @@ const val AUTH_EXCEPTION_REASON_KEY = "reason"
const val PENDING_SESSION_PROPERTY_NAME = "pendingSessionData" const val PENDING_SESSION_PROPERTY_NAME = "pendingSessionData"
const val CURRENT_SESSION_PROPERTY_NAME = "currentSession" const val CURRENT_SESSION_PROPERTY_NAME = "currentSession"
const val DEFAULT_TERMS_NAME = "Terms and Conditions" const val DEFAULT_TERMS_NAME = "Terms and Conditions"
\ No newline at end of file const val TERMS_URL_EXTENSION = "_matrix/consent"
...@@ -2,6 +2,9 @@ package com.futo.circles.feature.terms.data_source ...@@ -2,6 +2,9 @@ package com.futo.circles.feature.terms.data_source
import androidx.lifecycle.MutableLiveData import androidx.lifecycle.MutableLiveData
import com.futo.circles.BuildConfig
import com.futo.circles.core.DEFAULT_TERMS_NAME
import com.futo.circles.core.TERMS_URL_EXTENSION
import com.futo.circles.extensions.Response import com.futo.circles.extensions.Response
import com.futo.circles.extensions.createResult import com.futo.circles.extensions.createResult
import com.futo.circles.extensions.toTermsListItems import com.futo.circles.extensions.toTermsListItems
...@@ -15,7 +18,7 @@ class AcceptTermsDataSource( ...@@ -15,7 +18,7 @@ class AcceptTermsDataSource(
private val signUpDataSource: SignUpDataSource private val signUpDataSource: SignUpDataSource
) { ) {
val termsListLiveData = MutableLiveData<List<TermsListItem>>(getTermsList()) val termsListLiveData = MutableLiveData(getTermsList())
private val wizard by lazy { private val wizard by lazy {
MatrixInstanceProvider.matrix.authenticationService().getRegistrationWizard() MatrixInstanceProvider.matrix.authenticationService().getRegistrationWizard()
...@@ -36,5 +39,12 @@ class AcceptTermsDataSource( ...@@ -36,5 +39,12 @@ class AcceptTermsDataSource(
private fun getTermsList() = private fun getTermsList() =
(signUpDataSource.currentStage as? Stage.Terms)?.policies?.toTermsListItems() (signUpDataSource.currentStage as? Stage.Terms)?.policies?.toTermsListItems()
?.takeIf { it.isNotEmpty() }
?: listOf(
TermsListItem(
1, DEFAULT_TERMS_NAME,
BuildConfig.MATRIX_HOME_SERVER_URL + TERMS_URL_EXTENSION
)
)
} }
\ No newline at end of file
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