com.lithic.api.services.blocking.DisputeServiceImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lithic-java-core Show documentation
Show all versions of lithic-java-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.blocking
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.DisputeListEvidencesPage
import com.lithic.api.models.DisputeListEvidencesParams
import com.lithic.api.models.DisputeListPage
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 DisputeServiceImpl
constructor(
private val clientOptions: ClientOptions,
) : DisputeService {
private val errorHandler: Handler = errorHandler(clientOptions.jsonMapper)
private val createHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/** Initiate a dispute. */
override fun create(params: DisputeCreateParams, requestOptions: RequestOptions): Dispute {
val request =
HttpRequest.builder()
.method(HttpMethod.POST)
.addPathSegments("v1", "disputes")
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.body(json(clientOptions.jsonMapper, params.getBody()))
.build()
return clientOptions.httpClient.execute(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 fun retrieve(params: DisputeRetrieveParams, requestOptions: RequestOptions): Dispute {
val request =
HttpRequest.builder()
.method(HttpMethod.GET)
.addPathSegments("v1", "disputes", params.getPathParam(0))
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.build()
return clientOptions.httpClient.execute(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 fun update(params: DisputeUpdateParams, requestOptions: RequestOptions): Dispute {
val request =
HttpRequest.builder()
.method(HttpMethod.PATCH)
.addPathSegments("v1", "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.execute(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 fun list(params: DisputeListParams, requestOptions: RequestOptions): DisputeListPage {
val request =
HttpRequest.builder()
.method(HttpMethod.GET)
.addPathSegments("v1", "disputes")
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.build()
return clientOptions.httpClient.execute(request, requestOptions).let { response ->
response
.use { listHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
.let { DisputeListPage.of(this, params, it) }
}
}
private val deleteHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/** Withdraw dispute. */
override fun delete(params: DisputeDeleteParams, requestOptions: RequestOptions): Dispute {
val request =
HttpRequest.builder()
.method(HttpMethod.DELETE)
.addPathSegments("v1", "disputes", params.getPathParam(0))
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.apply { params.getBody().ifPresent { body(json(clientOptions.jsonMapper, it)) } }
.build()
return clientOptions.httpClient.execute(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 fun deleteEvidence(
params: DisputeDeleteEvidenceParams,
requestOptions: RequestOptions
): DisputeEvidence {
val request =
HttpRequest.builder()
.method(HttpMethod.DELETE)
.addPathSegments(
"v1",
"disputes",
params.getPathParam(0),
"evidences",
params.getPathParam(1)
)
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.apply { params.getBody().ifPresent { body(json(clientOptions.jsonMapper, it)) } }
.build()
return clientOptions.httpClient.execute(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 fun initiateEvidenceUpload(
params: DisputeInitiateEvidenceUploadParams,
requestOptions: RequestOptions
): DisputeEvidence {
val request =
HttpRequest.builder()
.method(HttpMethod.POST)
.addPathSegments("v1", "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.execute(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 fun listEvidences(
params: DisputeListEvidencesParams,
requestOptions: RequestOptions
): DisputeListEvidencesPage {
val request =
HttpRequest.builder()
.method(HttpMethod.GET)
.addPathSegments("v1", "disputes", params.getPathParam(0), "evidences")
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.build()
return clientOptions.httpClient.execute(request, requestOptions).let { response ->
response
.use { listEvidencesHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
.let { DisputeListEvidencesPage.of(this, params, it) }
}
}
private val retrieveEvidenceHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/** Get a dispute's evidence metadata. */
override fun retrieveEvidence(
params: DisputeRetrieveEvidenceParams,
requestOptions: RequestOptions
): DisputeEvidence {
val request =
HttpRequest.builder()
.method(HttpMethod.GET)
.addPathSegments(
"v1",
"disputes",
params.getPathParam(0),
"evidences",
params.getPathParam(1)
)
.putAllQueryParams(clientOptions.queryParams)
.putAllQueryParams(params.getQueryParams())
.putAllHeaders(clientOptions.headers)
.putAllHeaders(params.getHeaders())
.build()
return clientOptions.httpClient.execute(request, requestOptions).let { response ->
response
.use { retrieveEvidenceHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
}
}
override fun uploadEvidence(disputeToken: String, file: ByteArray) {
val initiateParams =
DisputeInitiateEvidenceUploadParams.builder().disputeToken(disputeToken).build()
val initiateResponse = initiateEvidenceUpload(initiateParams)
val uploadUrl =
initiateResponse.uploadUrl().orElseThrow {
LithicInvalidDataException("Missing 'upload_url' from response payload")
}
val fileParams = MultipartFormValue.fromByteArray("file", file, ContentTypes.DefaultBinary)
val uploadRequest =
HttpRequest.builder()
.method(HttpMethod.PUT)
.url(uploadUrl)
.body(multipartFormData(clientOptions.jsonMapper, arrayOf(fileParams)))
.build()
clientOptions.httpClient.execute(uploadRequest).let { response ->
response.let { emptyHandler().handle(it) }
}
}
}