com.lithic.api.services.blocking.AuthRuleServiceImpl.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.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.models.AuthRule
import com.lithic.api.models.AuthRuleApplyParams
import com.lithic.api.models.AuthRuleCreateParams
import com.lithic.api.models.AuthRuleListPage
import com.lithic.api.models.AuthRuleListParams
import com.lithic.api.models.AuthRuleMigrateV1ToV2Params
import com.lithic.api.models.AuthRuleRemoveParams
import com.lithic.api.models.AuthRuleRemoveResponse
import com.lithic.api.models.AuthRuleRetrieveParams
import com.lithic.api.models.AuthRuleRetrieveResponse
import com.lithic.api.models.AuthRuleUpdateParams
import com.lithic.api.services.blocking.authRules.V2Service
import com.lithic.api.services.blocking.authRules.V2ServiceImpl
import com.lithic.api.services.errorHandler
import com.lithic.api.services.json
import com.lithic.api.services.jsonHandler
import com.lithic.api.services.withErrorHandler
class AuthRuleServiceImpl
constructor(
private val clientOptions: ClientOptions,
) : AuthRuleService {
private val errorHandler: Handler = errorHandler(clientOptions.jsonMapper)
private val v2: V2Service by lazy { V2ServiceImpl(clientOptions) }
override fun v2(): V2Service = v2
private val createHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/**
* Creates an authorization rule (Auth Rule) and applies it at the program, account, or card
* level.
*/
override fun create(params: AuthRuleCreateParams, requestOptions: RequestOptions): AuthRule {
val request =
HttpRequest.builder()
.method(HttpMethod.POST)
.addPathSegments("v1", "auth_rules")
.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)
/**
* Detail the properties and entities (program, accounts, and cards) associated with an existing
* authorization rule (Auth Rule).
*/
override fun retrieve(
params: AuthRuleRetrieveParams,
requestOptions: RequestOptions
): AuthRuleRetrieveResponse {
val request =
HttpRequest.builder()
.method(HttpMethod.GET)
.addPathSegments("v1", "auth_rules", 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 the properties associated with an existing authorization rule (Auth Rule). */
override fun update(params: AuthRuleUpdateParams, requestOptions: RequestOptions): AuthRule {
val request =
HttpRequest.builder()
.method(HttpMethod.PUT)
.addPathSegments("v1", "auth_rules", 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)
/** Return all of the Auth Rules under the program. */
override fun list(
params: AuthRuleListParams,
requestOptions: RequestOptions
): AuthRuleListPage {
val request =
HttpRequest.builder()
.method(HttpMethod.GET)
.addPathSegments("v1", "auth_rules")
.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 { AuthRuleListPage.of(this, params, it) }
}
}
private val applyHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/** Applies an existing authorization rule (Auth Rule) to an program, account, or card level. */
override fun apply(params: AuthRuleApplyParams, requestOptions: RequestOptions): AuthRule {
val request =
HttpRequest.builder()
.method(HttpMethod.POST)
.addPathSegments("v1", "auth_rules", params.getPathParam(0), "apply")
.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 { applyHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
}
}
private val migrateV1ToV2Handler: Handler> =
jsonHandler>(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/**
* Migrates an existing V1 authorization rule to a V2 authorization rule. Depending on the
* configuration of the V1 Auth Rule, this will yield one or two V2 authorization rules. This
* endpoint will alter the internal structure of the Auth Rule such that the resulting rules
* become a V2 Authorization Rule that can be operated on through the /v2/auth_rules endpoints.
*
* After a V1 Auth Rule has been migrated, it can no longer be operated on through the
* /v1/auth_rules/\* endpoints. Eventually, Lithic will deprecate the /v1/auth_rules endpoints
* and migrate all existing V1 Auth Rules to V2 Auth Rules.
*/
override fun migrateV1ToV2(
params: AuthRuleMigrateV1ToV2Params,
requestOptions: RequestOptions
): List {
val request =
HttpRequest.builder()
.method(HttpMethod.POST)
.addPathSegments("v1", "auth_rules", params.getPathParam(0), "migrate")
.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 { migrateV1ToV2Handler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
forEach { it.validate() }
}
}
}
}
private val removeHandler: Handler =
jsonHandler(clientOptions.jsonMapper).withErrorHandler(errorHandler)
/**
* Remove an existing authorization rule (Auth Rule) from an program, account, or card-level.
*/
override fun remove(
params: AuthRuleRemoveParams,
requestOptions: RequestOptions
): AuthRuleRemoveResponse {
val request =
HttpRequest.builder()
.method(HttpMethod.DELETE)
.addPathSegments("v1", "auth_rules", "remove")
.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 { removeHandler.handle(it) }
.apply {
if (requestOptions.responseValidation ?: clientOptions.responseValidation) {
validate()
}
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy