BayernMessenger/matrix-sdk-android/src/main/java/im/vector/matrix/android/internal/network/Request.kt

68 lines
2.4 KiB
Kotlin
Raw Normal View History

2019-01-18 10:12:08 +00:00
/*
*
* * Copyright 2019 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.matrix.android.internal.network
2018-10-03 15:56:33 +00:00
import arrow.core.Try
import arrow.core.failure
import arrow.core.recoverWith
import arrow.effects.IO
import arrow.effects.fix
import arrow.effects.instances.io.async.async
import arrow.integrations.retrofit.adapter.runAsync
2018-10-03 15:56:33 +00:00
import com.squareup.moshi.Moshi
import im.vector.matrix.android.api.failure.Failure
import im.vector.matrix.android.api.failure.MatrixError
2018-10-13 09:18:49 +00:00
import im.vector.matrix.android.internal.di.MoshiProvider
2018-10-03 15:56:33 +00:00
import okhttp3.ResponseBody
import retrofit2.Call
2018-10-03 15:56:33 +00:00
import java.io.IOException
internal inline fun <DATA> executeRequest(block: Request<DATA>.() -> Unit) = Request<DATA>().apply(block).execute()
2018-10-03 15:56:33 +00:00
internal class Request<DATA> {
2018-10-03 15:56:33 +00:00
private val moshi: Moshi = MoshiProvider.providesMoshi()
lateinit var apiCall: Call<DATA>
fun execute(): Try<DATA> {
return Try {
val response = apiCall.runAsync(IO.async()).fix().unsafeRunSync()
2018-10-03 15:56:33 +00:00
if (response.isSuccessful) {
response.body() ?: throw IllegalStateException("The request returned a null body")
2018-10-03 15:56:33 +00:00
} else {
throw manageFailure(response.errorBody())
2018-10-03 15:56:33 +00:00
}
}.recoverWith {
when (it) {
is IOException -> Failure.NetworkConnection(it)
is Failure.ServerError -> it
else -> Failure.Unknown(it)
}.failure()
2018-10-03 15:56:33 +00:00
}
}
private fun manageFailure(errorBody: ResponseBody?): Throwable {
val matrixError = errorBody?.let {
val matrixErrorAdapter = moshi.adapter(MatrixError::class.java)
matrixErrorAdapter.fromJson(errorBody.source())
} ?: return RuntimeException("Matrix error should not be null")
return Failure.ServerError(matrixError)
2018-10-03 15:56:33 +00:00
}
}