com.lithic.api.services.async.DisputeServiceAsyncImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lithic-kotlin-core Show documentation
Show all versions of lithic-kotlin-core Show documentation
The Lithic Developer API is designed to provide a predictable programmatic
interface for accessing your Lithic account through an API and transaction
webhooks. Note that your API key is a secret and should be treated as such.
Don't share it with anyone, including us. We will never ask you for it.
// File generated from our OpenAPI spec by Stainless.
package com.lithic.api.services.async
import com.lithic.api.core.ClientOptions
import com.lithic.api.core.ContentTypes
import com.lithic.api.core.MultipartFormValue
import com.lithic.api.core.RequestOptions
import com.lithic.api.core.http.HttpMethod
import com.lithic.api.core.http.HttpRequest
import com.lithic.api.core.http.HttpResponse.Handler
import com.lithic.api.errors.LithicError
import com.lithic.api.errors.LithicInvalidDataException
import com.lithic.api.models.Dispute
import com.lithic.api.models.DisputeCreateParams
import com.lithic.api.models.DisputeDeleteEvidenceParams
import com.lithic.api.models.DisputeDeleteParams
import com.lithic.api.models.DisputeEvidence
import com.lithic.api.models.DisputeInitiateEvidenceUploadParams
import com.lithic.api.models.DisputeListEvidencesPageAsync
import com.lithic.api.models.DisputeListEvidencesParams
import com.lithic.api.models.DisputeListPageAsync
import com.lithic.api.models.DisputeListParams
import com.lithic.api.models.DisputeRetrieveEvidenceParams
import com.lithic.api.models.DisputeRetrieveParams
import com.lithic.api.models.DisputeUpdateParams
import com.lithic.api.services.emptyHandler
import com.lithic.api.services.errorHandler
import com.lithic.api.services.json
import com.lithic.api.services.jsonHandler
import com.lithic.api.services.multipartFormData
import com.lithic.api.services.withErrorHandler
class DisputeServiceAsyncImpl
constructor(
private val clientOptions: ClientOptions,
) : DisputeServiceAsync {
private val errorHandler: Handler = errorHandler(clientOptions.jsonMapper)
private val createHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/** Initiate a dispute. */
override suspend fun create(
params: DisputeCreateParams,
requestOptions: RequestOptions
): Dispute {
val request =
HttpRequest.builder()
.method(HttpMethod.POST)
.addPathSegments("disputes")
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.body(json(clientOptions.jsonMapper, params.getBody()))
.build()
return clientOptions.httpClient.executeAsync(request, requestOptions).let { response ->
response
.use { createHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
}
}
private val retrieveHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/** Get dispute. */
override suspend fun retrieve(
params: DisputeRetrieveParams,
requestOptions: RequestOptions
): Dispute {
val request =
HttpRequest.builder()
.method(HttpMethod.GET)
.addPathSegments("disputes", params.getPathParam(0))
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.build()
return clientOptions.httpClient.executeAsync(request, requestOptions).let { response ->
response
.use { retrieveHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
}
}
private val updateHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/** Update dispute. Can only be modified if status is `NEW`. */
override suspend fun update(
params: DisputeUpdateParams,
requestOptions: RequestOptions
): Dispute {
val request =
HttpRequest.builder()
.method(HttpMethod.PATCH)
.addPathSegments("disputes", params.getPathParam(0))
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.body(json(clientOptions.jsonMapper, params.getBody()))
.build()
return clientOptions.httpClient.executeAsync(request, requestOptions).let { response ->
response
.use { updateHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
}
}
private val listHandler: Handler =
jsonHandler(clientOptions.jsonMapper)
.withErrorHandler(errorHandler)
/** List disputes. */
override suspend fun list(
params: DisputeListParams,
requestOptions: RequestOptions
): DisputeListPageAsync {
val request =
HttpRequest.builder()
.method(HttpMethod.GET)
.addPathSegments("disputes")
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.build()
return clientOptions.httpClient.executeAsync(request, requestOptions).let { response ->
response
.use { listHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
.let { DisputeListPageAsync.of(this, params, it) }
}
}
private val deleteHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/** Withdraw dispute. */
override suspend fun delete(
params: DisputeDeleteParams,
requestOptions: RequestOptions
): Dispute {
val request =
HttpRequest.builder()
.method(HttpMethod.DELETE)
.addPathSegments("disputes", params.getPathParam(0))
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.apply { params.getBody()?.also { body(json(clientOptions.jsonMapper, it)) } }
.build()
return clientOptions.httpClient.executeAsync(request, requestOptions).let { response ->
response
.use { deleteHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
}
}
private val deleteEvidenceHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/**
* Soft delete evidence for a dispute. Evidence will not be reviewed or submitted by Lithic
* after it is withdrawn.
*/
override suspend fun deleteEvidence(
params: DisputeDeleteEvidenceParams,
requestOptions: RequestOptions
): DisputeEvidence {
val request =
HttpRequest.builder()
.method(HttpMethod.DELETE)
.addPathSegments(
"disputes",
params.getPathParam(0),
"evidences",
params.getPathParam(1)
)
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.apply { params.getBody()?.also { body(json(clientOptions.jsonMapper, it)) } }
.build()
return clientOptions.httpClient.executeAsync(request, requestOptions).let { response ->
response
.use { deleteEvidenceHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
}
}
private val initiateEvidenceUploadHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/**
* Use this endpoint to upload evidences for the dispute. It will return a URL to upload your
* documents to. The URL will expire in 30 minutes.
*
* Uploaded documents must either be a `jpg`, `png` or `pdf` file, and each must be less than 5
* GiB.
*/
override suspend fun initiateEvidenceUpload(
params: DisputeInitiateEvidenceUploadParams,
requestOptions: RequestOptions
): DisputeEvidence {
val request =
HttpRequest.builder()
.method(HttpMethod.POST)
.addPathSegments("disputes", params.getPathParam(0), "evidences")
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.body(json(clientOptions.jsonMapper, params.getBody()))
.build()
return clientOptions.httpClient.executeAsync(request, requestOptions).let { response ->
response
.use { initiateEvidenceUploadHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
}
}
private val listEvidencesHandler: Handler =
jsonHandler(clientOptions.jsonMapper)
.withErrorHandler(errorHandler)
/** List evidence metadata for a dispute. */
override suspend fun listEvidences(
params: DisputeListEvidencesParams,
requestOptions: RequestOptions
): DisputeListEvidencesPageAsync {
val request =
HttpRequest.builder()
.method(HttpMethod.GET)
.addPathSegments("disputes", params.getPathParam(0), "evidences")
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.build()
return clientOptions.httpClient.executeAsync(request, requestOptions).let { response ->
response
.use { listEvidencesHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
.let { DisputeListEvidencesPageAsync.of(this, params, it) }
}
}
private val retrieveEvidenceHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/** Get a dispute's evidence metadata. */
override suspend fun retrieveEvidence(
params: DisputeRetrieveEvidenceParams,
requestOptions: RequestOptions
): DisputeEvidence {
val request =
HttpRequest.builder()
.method(HttpMethod.GET)
.addPathSegments(
"disputes",
params.getPathParam(0),
"evidences",
params.getPathParam(1)
)
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.build()
return clientOptions.httpClient.executeAsync(request, requestOptions).let { response ->
response
.use { retrieveEvidenceHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
}
}
override suspend fun uploadEvidence(disputeToken: String, file: ByteArray) {
val initiateParams =
DisputeInitiateEvidenceUploadParams.builder().disputeToken(disputeToken).build()
val initiateResponse = initiateEvidenceUpload(initiateParams)
val uploadUrl =
initiateResponse.uploadUrl()
?: throw LithicInvalidDataException("Missing 'upload_url' from response payload")
val fileParam = MultipartFormValue.fromByteArray("file", file, ContentTypes.DefaultBinary)
val uploadRequest =
HttpRequest.builder()
.method(HttpMethod.PUT)
.url(uploadUrl)
.body(multipartFormData(clientOptions.jsonMapper, arrayOf(fileParam)))
.build()
clientOptions.httpClient.executeAsync(uploadRequest).let { response ->
response.let { emptyHandler().handle(it) }
}
}
}