This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sealed interface SallyResponseResource<out T> { | |
data class Success<T>(val data: T) : SallyResponseResource<T> | |
data class Error(val exception: AppException, val errorCode: String? = null) : | |
SallyResponseResource<Nothing> | |
data class Loading(val status: Boolean) : SallyResponseResource<Nothing> | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open class AppException(message: String? = null, cause: Throwable? = null) : | |
Throwable(message, cause) | |
class NetworkException(message: String? = null, cause: Throwable? = null) : | |
AppException(message, cause) | |
class ServerException(message: String? = null, cause: Throwable? = null) : | |
AppException(message, cause) | |
class ClientException(message: String? = null, cause: Throwable? = null) : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
suspend fun <T> asSallyResponseResourceSuspend(apiCall: suspend () -> T): SallyResponseResource<T> { | |
return try { | |
SallyResponseResource.Loading(true) | |
val response = apiCall.invoke() | |
SallyResponseResource.Success(response) | |
} catch (error: Throwable) { | |
val exception = when (error) { | |
is HttpException -> { | |
when (error.code()) { | |
in 400..499 -> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun <T> Flow<T>.asSallyResponseResourceFlow(): Flow<SallyResponseResource<T>> { | |
return this | |
.map<T, SallyResponseResource<T>> { | |
SallyResponseResource.Success(it) | |
} | |
.onStart { emit(SallyResponseResource.Loading(true)) } | |
.onCompletion { emit(SallyResponseResource.Loading(false)) } | |
.catch { error -> | |
val exception = when (error) { | |
is HttpException -> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const val CLIENT_ERROR = "Terjadi kesalahan, mohon periksa masukan anda" | |
const val SERVER_ERROR = "Terjadi kesalahan pada Server, coba lagi nanti" | |
const val NETWORK_ERROR = "Koneksi internet bermasalah, coba lagi nanti" | |
const val HTTP_UNKNOWN_ERROR = "HTTP Error tidak diketahui (exc: 4xx/5xx)" | |
const val UNKNOWN_ERROR = "Error tidak diketahui" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@GET("list/{id}") | |
suspend fun getDetailAgentVisitWithFullResponse( | |
@Header("Authorization") token: String, | |
@Path(value = "id", encoded = true) id: Int | |
): BaseResponse<GetAgentDetailResponse> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
suspend fun getDetailAgentVisitFullResponse( | |
token: String, | |
id: Int | |
): SallyResponseResource<BaseResponse<GetAgentDetailResponse>> { | |
return asSallyResponseResourceSuspend { | |
agentVisitService.getDetailAgentVisitWithFullResponse( | |
token = token, | |
id = id | |
) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun getDetailAgentVisitFullResponseFlow( | |
token: String, | |
id: Int | |
): Flow<BaseResponse<GetAgentDetailResponse>> { | |
return flow { | |
while (true) { | |
val getDetailAgent = agentVisitService.getDetailAgentVisitWithFullResponse( | |
token = token, | |
id = id | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
override suspend fun getDetailAgentVisitWithFullResponse(id: Int): SallyResponseResource<BaseResponse<GetAgentDetailResponse>> { | |
return agentVisitDataSource.getDetailAgentVisitFullResponse( | |
token = "", | |
id = id | |
) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
override fun getDetailAgentVisitFullResponseFlow(id: Int): Flow<SallyResponseResource<BaseResponse<GetAgentDetailResponse>>> { | |
return agentVisitDataSource.getDetailAgentVisitFullResponseFlow( | |
token = "", | |
id = id | |
).asSallyResponseResourceFlow() | |
} |