com.stytch.java.consumer.api.cryptowallets.CryptoWallets.kt Maven / Gradle / Ivy
package com.stytch.java.consumer.api.cryptowallets
// !!!
// WARNING: This file is autogenerated
// Only modify code within MANUAL() sections
// or your changes may be overwritten later!
// !!!
import com.squareup.moshi.Moshi
import com.stytch.java.common.InstantAdapter
import com.stytch.java.common.StytchResult
import com.stytch.java.consumer.models.cryptowallets.AuthenticateRequest
import com.stytch.java.consumer.models.cryptowallets.AuthenticateResponse
import com.stytch.java.consumer.models.cryptowallets.AuthenticateStartRequest
import com.stytch.java.consumer.models.cryptowallets.AuthenticateStartResponse
import com.stytch.java.http.HttpClient
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.async
import kotlinx.coroutines.future.asCompletableFuture
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import java.util.concurrent.CompletableFuture
public interface CryptoWallets {
/**
* Initiate the authentication of a crypto wallet. After calling this endpoint, the user will need to sign a message
* containing only the returned `challenge` field.
*/
public suspend fun authenticateStart(data: AuthenticateStartRequest): StytchResult
/**
* Initiate the authentication of a crypto wallet. After calling this endpoint, the user will need to sign a message
* containing only the returned `challenge` field.
*/
public fun authenticateStart(
data: AuthenticateStartRequest,
callback: (StytchResult) -> Unit,
)
/**
* Initiate the authentication of a crypto wallet. After calling this endpoint, the user will need to sign a message
* containing only the returned `challenge` field.
*/
public fun authenticateStartCompletable(data: AuthenticateStartRequest): CompletableFuture>
/**
* Complete the authentication of a crypto wallet by passing the signature.
*/
public suspend fun authenticate(data: AuthenticateRequest): StytchResult
/**
* Complete the authentication of a crypto wallet by passing the signature.
*/
public fun authenticate(
data: AuthenticateRequest,
callback: (StytchResult) -> Unit,
)
/**
* Complete the authentication of a crypto wallet by passing the signature.
*/
public fun authenticateCompletable(data: AuthenticateRequest): CompletableFuture>
}
internal class CryptoWalletsImpl(
private val httpClient: HttpClient,
private val coroutineScope: CoroutineScope,
) : CryptoWallets {
private val moshi = Moshi.Builder().add(InstantAdapter()).build()
override suspend fun authenticateStart(data: AuthenticateStartRequest): StytchResult =
withContext(Dispatchers.IO) {
var headers = emptyMap()
val asJson = moshi.adapter(AuthenticateStartRequest::class.java).toJson(data)
httpClient.post("/v1/crypto_wallets/authenticate/start", asJson, headers)
}
override fun authenticateStart(
data: AuthenticateStartRequest,
callback: (StytchResult) -> Unit,
) {
coroutineScope.launch {
callback(authenticateStart(data))
}
}
override fun authenticateStartCompletable(data: AuthenticateStartRequest): CompletableFuture> =
coroutineScope.async {
authenticateStart(data)
}.asCompletableFuture()
override suspend fun authenticate(data: AuthenticateRequest): StytchResult =
withContext(Dispatchers.IO) {
var headers = emptyMap()
val asJson = moshi.adapter(AuthenticateRequest::class.java).toJson(data)
httpClient.post("/v1/crypto_wallets/authenticate", asJson, headers)
}
override fun authenticate(
data: AuthenticateRequest,
callback: (StytchResult) -> Unit,
) {
coroutineScope.launch {
callback(authenticate(data))
}
}
override fun authenticateCompletable(data: AuthenticateRequest): CompletableFuture> =
coroutineScope.async {
authenticate(data)
}.asCompletableFuture()
}