Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
This commit is contained in:
sowjanyakch 2024-11-17 22:02:56 +01:00 коммит произвёл Marcel Hibbe
Родитель 3de36ebec3
Коммит 013195465c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C793F8B59F43CE7B
2 изменённых файлов: 13 добавлений и 23 удалений

Просмотреть файл

@ -76,10 +76,10 @@ class GuestAccessHelper(
}
}
is ConversationInfoViewModel.AllowGuestsUIState.Error -> {
val exception = uiState.message
val exception = uiState.exception
val message = context.getString(R.string.nc_guest_access_allow_failed)
Snackbar.make(binding.root, message, Snackbar.LENGTH_LONG).show()
Log.e(TAG, exception)
Log.e(TAG, message, exception)
}
ConversationInfoViewModel.AllowGuestsUIState.None -> {
}
@ -111,10 +111,10 @@ class GuestAccessHelper(
// unused atm
}
is ConversationInfoViewModel.PasswordUiState.Error -> {
val exception = uiState.message
val exception = uiState.exception
val message = context.getString(R.string.nc_guest_access_password_failed)
Snackbar.make(binding.root, message, Snackbar.LENGTH_LONG).show()
Log.e(TAG, exception)
Log.e(TAG, message, exception)
}
is ConversationInfoViewModel.PasswordUiState.None -> {
// unused atm

Просмотреть файл

@ -18,11 +18,9 @@ import com.nextcloud.talk.chat.data.network.ChatNetworkDataSource
import com.nextcloud.talk.data.user.model.User
import com.nextcloud.talk.models.domain.ConversationModel
import com.nextcloud.talk.models.json.capabilities.SpreedCapability
import com.nextcloud.talk.models.json.generic.GenericMeta
import com.nextcloud.talk.models.json.generic.GenericOverall
import com.nextcloud.talk.models.json.participants.TalkBan
import com.nextcloud.talk.repositories.conversations.ConversationsRepository
import com.nextcloud.talk.repositories.conversations.ConversationsRepositoryImpl.Companion.STATUS_CODE_OK
import com.nextcloud.talk.utils.ApiUtils
import io.reactivex.Observer
import io.reactivex.android.schedulers.AndroidSchedulers
@ -249,14 +247,10 @@ class ConversationInfoViewModel @Inject constructor(
fun allowGuests(token: String, allow: Boolean) {
viewModelScope.launch {
try {
val allowGuestsResult = conversationsRepository.allowGuests(token, allow)
val statusCode: GenericMeta? = allowGuestsResult.ocs?.meta
val result = statusCode?.statusCode == STATUS_CODE_OK
if (result) {
_allowGuestsViewState.value = AllowGuestsUIState.Success(allow)
}
conversationsRepository.allowGuests(token, allow)
_allowGuestsViewState.value = AllowGuestsUIState.Success(allow)
} catch (exception: Exception) {
_allowGuestsViewState.value = AllowGuestsUIState.Error(exception.message ?: "")
_allowGuestsViewState.value = AllowGuestsUIState.Error(exception)
}
}
}
@ -265,14 +259,10 @@ class ConversationInfoViewModel @Inject constructor(
fun setPassword(password: String, token: String) {
viewModelScope.launch {
try {
val setPasswordResult = conversationsRepository.setPassword(password, token)
val statusCode: GenericMeta? = setPasswordResult.ocs?.meta
val result = statusCode?.statusCode == STATUS_CODE_OK
if (result) {
_passwordViewState.value = PasswordUiState.Success(result)
}
conversationsRepository.setPassword(password, token)
_passwordViewState.value = PasswordUiState.Success
} catch (exception: Exception) {
_passwordViewState.value = PasswordUiState.Error(exception.message ?: "")
_passwordViewState.value = PasswordUiState.Error(exception)
}
}
}
@ -315,12 +305,12 @@ class ConversationInfoViewModel @Inject constructor(
sealed class AllowGuestsUIState {
data object None : AllowGuestsUIState()
data class Success(val allow: Boolean) : AllowGuestsUIState()
data class Error(val message: String) : AllowGuestsUIState()
data class Error(val exception: Exception) : AllowGuestsUIState()
}
sealed class PasswordUiState {
data object None : PasswordUiState()
data class Success(val result: Boolean) : PasswordUiState()
data class Error(val message: String) : PasswordUiState()
data object Success : PasswordUiState()
data class Error(val exception: Exception) : PasswordUiState()
}
}