mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-21 12:35:30 +03:00
convert rxjava to coroutines - set conversation read only
Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
This commit is contained in:
parent
ab313adfd5
commit
452a4c72f4
12 changed files with 110 additions and 124 deletions
|
@ -142,8 +142,13 @@ interface NcApiCoroutines {
|
|||
): GenericOverall
|
||||
|
||||
@DELETE
|
||||
suspend fun clearChatHistory(
|
||||
suspend fun clearChatHistory(@Header("Authorization") authorization: String, @Url url: String): GenericOverall
|
||||
|
||||
@FormUrlEncoded
|
||||
@PUT
|
||||
suspend fun setConversationReadOnly(
|
||||
@Header("Authorization") authorization: String,
|
||||
@Url url: String
|
||||
@Url url: String,
|
||||
@Field("state") state: Int
|
||||
): GenericOverall
|
||||
}
|
||||
|
|
|
@ -172,7 +172,6 @@ class RenameConversationDialogFragment : DialogFragment() {
|
|||
viewModel.renameRoomUiState.observe(viewLifecycleOwner) { state ->
|
||||
when (state) {
|
||||
is ConversationInfoEditViewModel.RenameRoomUiState.None -> {
|
||||
|
||||
}
|
||||
is ConversationInfoEditViewModel.RenameRoomUiState.Success -> {
|
||||
handleSuccess()
|
||||
|
|
|
@ -23,8 +23,6 @@ class ConversationRepositoryImpl(private val ncApi: NcApi, currentUserProvider:
|
|||
val currentUser: User = currentUserProvider.currentUser.blockingGet()
|
||||
val credentials: String = ApiUtils.getCredentials(currentUser.username, currentUser.token)!!
|
||||
|
||||
|
||||
|
||||
override fun createConversation(
|
||||
roomName: String,
|
||||
conversationType: ConversationEnums.ConversationType?
|
||||
|
|
|
@ -260,12 +260,13 @@ class ConversationInfoActivity :
|
|||
|
||||
viewModel.getConversationReadOnlyState.observe(this) { state ->
|
||||
when (state) {
|
||||
is ConversationInfoViewModel.SetConversationReadOnlySuccessState -> {
|
||||
is ConversationInfoViewModel.SetConversationReadOnlyViewState.Success -> {
|
||||
}
|
||||
is ConversationInfoViewModel.SetConversationReadOnlyErrorState -> {
|
||||
is ConversationInfoViewModel.SetConversationReadOnlyViewState.Error -> {
|
||||
Snackbar.make(binding.root, R.string.conversation_read_only_failed, Snackbar.LENGTH_LONG).show()
|
||||
}
|
||||
else -> {
|
||||
is ConversationInfoViewModel.SetConversationReadOnlyViewState.None -> {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -273,7 +274,6 @@ class ConversationInfoActivity :
|
|||
viewModel.clearChatHistoryViewState.observe(this) { uiState ->
|
||||
when (uiState) {
|
||||
is ConversationInfoViewModel.ClearChatHistoryViewState.None -> {
|
||||
|
||||
}
|
||||
is ConversationInfoViewModel.ClearChatHistoryViewState.Success -> {
|
||||
Snackbar.make(
|
||||
|
@ -281,16 +281,12 @@ class ConversationInfoActivity :
|
|||
context.getString(R.string.nc_clear_history_success),
|
||||
Snackbar.LENGTH_LONG
|
||||
).show()
|
||||
|
||||
|
||||
}
|
||||
is ConversationInfoViewModel.ClearChatHistoryViewState.Error -> {
|
||||
Snackbar.make(binding.root, R.string.nc_common_error_sorry, Snackbar.LENGTH_LONG).show()
|
||||
Log.e(TAG, "failed to clear chat history", uiState.exception)
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -842,7 +838,7 @@ class ConversationInfoActivity :
|
|||
binding.lockConversationSwitch.isChecked = !isLocked
|
||||
databaseStorageModule!!.saveBoolean("lock_switch", !isLocked)
|
||||
val state = if (isLocked) 0 else 1
|
||||
makeConversationReadOnly(conversationUser, conversationToken, state)
|
||||
makeConversationReadOnly(conversationToken, state)
|
||||
}
|
||||
} else {
|
||||
binding.lockConversation.visibility = GONE
|
||||
|
@ -922,8 +918,8 @@ class ConversationInfoActivity :
|
|||
}
|
||||
}
|
||||
|
||||
private fun makeConversationReadOnly(conversationUser: User, roomToken: String, state: Int) {
|
||||
viewModel.setConversationReadOnly(conversationUser, roomToken, state)
|
||||
private fun makeConversationReadOnly(roomToken: String, state: Int) {
|
||||
viewModel.setConversationReadOnly( roomToken, state)
|
||||
}
|
||||
|
||||
private fun initRecordingConsentOption() {
|
||||
|
|
|
@ -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
|
||||
|
@ -81,13 +79,6 @@ class ConversationInfoViewModel @Inject constructor(
|
|||
val getUnBanActorState: LiveData<ViewState>
|
||||
get() = _getUnBanActorState
|
||||
|
||||
object SetConversationReadOnlySuccessState : ViewState
|
||||
object SetConversationReadOnlyErrorState : ViewState
|
||||
|
||||
private val _getConversationReadOnlyState: MutableLiveData<ViewState> = MutableLiveData()
|
||||
val getConversationReadOnlyState: LiveData<ViewState>
|
||||
get() = _getConversationReadOnlyState
|
||||
|
||||
object GetRoomStartState : ViewState
|
||||
object GetRoomErrorState : ViewState
|
||||
open class GetRoomSuccessState(val conversationModel: ConversationModel) : ViewState
|
||||
|
@ -112,10 +103,16 @@ class ConversationInfoViewModel @Inject constructor(
|
|||
val getCapabilitiesViewState: LiveData<ViewState>
|
||||
get() = _getCapabilitiesViewState
|
||||
|
||||
private val _clearChatHistoryViewState:MutableLiveData<ClearChatHistoryViewState> = MutableLiveData(ClearChatHistoryViewState.None)
|
||||
private val _clearChatHistoryViewState: MutableLiveData<ClearChatHistoryViewState> =
|
||||
MutableLiveData(ClearChatHistoryViewState.None)
|
||||
val clearChatHistoryViewState: LiveData<ClearChatHistoryViewState>
|
||||
get() = _clearChatHistoryViewState
|
||||
|
||||
private val _getConversationReadOnlyState: MutableLiveData<SetConversationReadOnlyViewState> =
|
||||
MutableLiveData(SetConversationReadOnlyViewState.None)
|
||||
val getConversationReadOnlyState: LiveData<SetConversationReadOnlyViewState>
|
||||
get() = _getConversationReadOnlyState
|
||||
|
||||
fun getRoom(user: User, token: String) {
|
||||
_viewState.value = GetRoomStartState
|
||||
chatNetworkDataSource.getRoom(user, token)
|
||||
|
@ -202,28 +199,15 @@ class ConversationInfoViewModel @Inject constructor(
|
|||
})
|
||||
}
|
||||
|
||||
fun setConversationReadOnly(user: User, token: String, state: Int) {
|
||||
val apiVersion = ApiUtils.getConversationApiVersion(user, intArrayOf(ApiUtils.API_V4, ApiUtils.API_V1))
|
||||
val url = ApiUtils.getUrlForConversationReadOnly(apiVersion, user.baseUrl!!, token)
|
||||
conversationsRepository.setConversationReadOnly(user.getCredentials(), url, state)
|
||||
.subscribeOn(Schedulers.io())
|
||||
?.observeOn(AndroidSchedulers.mainThread())
|
||||
?.subscribe(object : Observer<GenericOverall> {
|
||||
override fun onSubscribe(p0: Disposable) {
|
||||
fun setConversationReadOnly(roomToken: String, state: Int) {
|
||||
viewModelScope.launch {
|
||||
try {
|
||||
conversationsRepository.setConversationReadOnly(roomToken, state)
|
||||
_getConversationReadOnlyState.value = SetConversationReadOnlyViewState.Success
|
||||
} catch (exception: Exception) {
|
||||
_getConversationReadOnlyState.value = SetConversationReadOnlyViewState.Error(exception)
|
||||
}
|
||||
|
||||
override fun onError(error: Throwable) {
|
||||
_getConversationReadOnlyState.value = SetConversationReadOnlyErrorState
|
||||
}
|
||||
|
||||
override fun onComplete() {
|
||||
// unused atm
|
||||
}
|
||||
|
||||
override fun onNext(p0: GenericOverall) {
|
||||
_getConversationReadOnlyState.value = SetConversationReadOnlySuccessState
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
fun unbanActor(user: User, token: String, banId: Int) {
|
||||
|
@ -288,12 +272,8 @@ class ConversationInfoViewModel @Inject constructor(
|
|||
fun clearChatHistory(apiVersion: Int, roomToken: String) {
|
||||
viewModelScope.launch {
|
||||
try {
|
||||
val clearChatResult = conversationsRepository.clearChatHistory(apiVersion,roomToken)
|
||||
val statusCode: GenericMeta? = clearChatResult.ocs?.meta
|
||||
val result = statusCode?.statusCode == STATUS_CODE_OK
|
||||
if (result) {
|
||||
conversationsRepository.clearChatHistory(apiVersion, roomToken)
|
||||
_clearChatHistoryViewState.value = ClearChatHistoryViewState.Success
|
||||
}
|
||||
} catch (exception: Exception) {
|
||||
_clearChatHistoryViewState.value = ClearChatHistoryViewState.Error(exception)
|
||||
}
|
||||
|
@ -329,6 +309,12 @@ class ConversationInfoViewModel @Inject constructor(
|
|||
data class Error(val exception: Exception) : ClearChatHistoryViewState()
|
||||
}
|
||||
|
||||
sealed class SetConversationReadOnlyViewState {
|
||||
data object None : SetConversationReadOnlyViewState()
|
||||
data object Success : SetConversationReadOnlyViewState()
|
||||
data class Error(val exception: Exception) : SetConversationReadOnlyViewState()
|
||||
}
|
||||
|
||||
sealed class AllowGuestsUIState {
|
||||
data object None : AllowGuestsUIState()
|
||||
data class Success(val allow: Boolean) : AllowGuestsUIState()
|
||||
|
|
|
@ -170,7 +170,6 @@ class ConversationInfoEditActivity : BaseActivity() {
|
|||
conversationInfoEditViewModel.renameRoomUiState.observe(this) { uiState ->
|
||||
when (uiState) {
|
||||
is ConversationInfoEditViewModel.RenameRoomUiState.None -> {
|
||||
|
||||
}
|
||||
is ConversationInfoEditViewModel.RenameRoomUiState.Success -> {
|
||||
if (CapabilitiesUtil.isConversationDescriptionEndpointAvailable(spreedCapabilities)) {
|
||||
|
@ -193,7 +192,6 @@ class ConversationInfoEditActivity : BaseActivity() {
|
|||
conversationInfoEditViewModel.setConversationDescriptionUiState.observe(this) { uiState ->
|
||||
when (uiState) {
|
||||
is ConversationInfoEditViewModel.SetConversationDescriptionUiState.None -> {
|
||||
|
||||
}
|
||||
is ConversationInfoEditViewModel.SetConversationDescriptionUiState.Success -> {
|
||||
finish()
|
||||
|
@ -205,12 +203,9 @@ class ConversationInfoEditActivity : BaseActivity() {
|
|||
Snackbar.LENGTH_LONG
|
||||
).show()
|
||||
Log.e(TAG, "Error while saving conversation description", uiState.exception)
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private fun setupAvatarOptions() {
|
||||
|
|
|
@ -20,9 +20,11 @@ import okhttp3.MultipartBody
|
|||
import okhttp3.RequestBody.Companion.asRequestBody
|
||||
import java.io.File
|
||||
|
||||
class ConversationInfoEditRepositoryImpl(private val ncApi: NcApi,
|
||||
class ConversationInfoEditRepositoryImpl(
|
||||
private val ncApi: NcApi,
|
||||
private val ncApiCoroutines: NcApiCoroutines,
|
||||
currentUserProvider: CurrentUserProviderNew) :
|
||||
currentUserProvider: CurrentUserProviderNew
|
||||
) :
|
||||
ConversationInfoEditRepository {
|
||||
|
||||
val currentUser: User = currentUserProvider.currentUser.blockingGet()
|
||||
|
|
|
@ -50,7 +50,8 @@ class ConversationInfoEditViewModel @Inject constructor(
|
|||
val renameRoomUiState: LiveData<RenameRoomUiState>
|
||||
get() = _renameRoomUiState
|
||||
|
||||
private val _setConversationDescriptionUiState = MutableLiveData<SetConversationDescriptionUiState>(SetConversationDescriptionUiState.None)
|
||||
private val _setConversationDescriptionUiState =
|
||||
MutableLiveData<SetConversationDescriptionUiState>(SetConversationDescriptionUiState.None)
|
||||
val setConversationDescriptionUiState: LiveData<SetConversationDescriptionUiState>
|
||||
get() = _setConversationDescriptionUiState
|
||||
|
||||
|
@ -94,7 +95,10 @@ class ConversationInfoEditViewModel @Inject constructor(
|
|||
fun setConversationDescription(roomToken: String, conversationDescription: String?) {
|
||||
viewModelScope.launch {
|
||||
try {
|
||||
val setConversationDescriptionResult = conversationInfoEditRepository.setConversationDescription(roomToken, conversationDescription)
|
||||
val setConversationDescriptionResult = conversationInfoEditRepository.setConversationDescription(
|
||||
roomToken,
|
||||
conversationDescription
|
||||
)
|
||||
val statusCode: GenericMeta? = setConversationDescriptionResult.ocs?.meta
|
||||
val result = statusCode?.statusCode == STATUS_CODE_OK
|
||||
if (result) {
|
||||
|
|
|
@ -25,7 +25,7 @@ interface ConversationsRepository {
|
|||
|
||||
suspend fun setPassword(password: String, token: String): GenericOverall
|
||||
|
||||
fun setConversationReadOnly(credentials: String, url: String, state: Int): Observable<GenericOverall>
|
||||
suspend fun setConversationReadOnly(roomToken: String, state: Int): GenericOverall
|
||||
|
||||
suspend fun clearChatHistory(apiVersion: Int, roomToken: String): GenericOverall
|
||||
}
|
||||
|
|
|
@ -74,8 +74,10 @@ class ConversationsRepositoryImpl(
|
|||
return coroutineApi.unarchiveConversation(credentials, url)
|
||||
}
|
||||
|
||||
override fun setConversationReadOnly(credentials: String, url: String, state: Int): Observable<GenericOverall> {
|
||||
return api.setConversationReadOnly(credentials, url, state)
|
||||
override suspend fun setConversationReadOnly(roomToken: String, state: Int): GenericOverall {
|
||||
val apiVersion = ApiUtils.getConversationApiVersion(user, intArrayOf(ApiUtils.API_V4, ApiUtils.API_V1))
|
||||
val url = ApiUtils.getUrlForConversationReadOnly(apiVersion, user.baseUrl!!, roomToken)
|
||||
return coroutineApi.setConversationReadOnly(credentials, url, state)
|
||||
}
|
||||
|
||||
override suspend fun setPassword(password: String, token: String): GenericOverall {
|
||||
|
@ -91,7 +93,6 @@ class ConversationsRepositoryImpl(
|
|||
return result
|
||||
}
|
||||
|
||||
override suspend fun clearChatHistory(roomToken:String): GenericOverall {
|
||||
override suspend fun clearChatHistory(apiVersion:Int,roomToken:String): GenericOverall {
|
||||
return coroutineApi.clearChatHistory(
|
||||
credentials,
|
||||
|
|
Loading…
Reference in a new issue