mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 04:04:43 +08:00
feat(router): adding generic tokenization endpoint (#7905)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
174
crates/storage_impl/src/tokenization.rs
Normal file
174
crates/storage_impl/src/tokenization.rs
Normal file
@ -0,0 +1,174 @@
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
use async_bb8_diesel::AsyncRunQueryDsl;
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
use common_utils::{
|
||||
errors::CustomResult,
|
||||
ext_traits::OptionExt,
|
||||
id_type::{CellId, GlobalTokenId, MerchantId},
|
||||
types::keymanager::KeyManagerState,
|
||||
};
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
use diesel::{ExpressionMethods, Insertable, RunQueryDsl};
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
use diesel_models::{
|
||||
enums::TokenizationFlag as DbTokenizationFlag,
|
||||
schema_v2::tokenization::dsl as tokenization_dsl, tokenization, PgPooledConn,
|
||||
};
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
use error_stack::{report, Report, ResultExt};
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
use hyperswitch_domain_models::tokenization::Tokenization;
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
use hyperswitch_domain_models::{
|
||||
behaviour::{Conversion, ReverseConversion},
|
||||
merchant_key_store::MerchantKeyStore,
|
||||
};
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
use tokio::time;
|
||||
|
||||
use super::MockDb;
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
use crate::{
|
||||
connection, diesel_error_to_data_error, errors,
|
||||
kv_router_store::{
|
||||
FilterResourceParams, FindResourceBy, InsertResourceParams, UpdateResourceParams,
|
||||
},
|
||||
redis::kv_store::{Op, PartitionKey},
|
||||
utils::{pg_connection_read, pg_connection_write},
|
||||
};
|
||||
use crate::{kv_router_store::KVRouterStore, DatabaseStore, RouterStore};
|
||||
|
||||
#[cfg(not(all(feature = "v2", feature = "tokenization_v2")))]
|
||||
pub trait TokenizationInterface {}
|
||||
|
||||
#[async_trait::async_trait]
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
pub trait TokenizationInterface {
|
||||
async fn insert_tokenization(
|
||||
&self,
|
||||
tokenization: hyperswitch_domain_models::tokenization::Tokenization,
|
||||
merchant_key_store: &MerchantKeyStore,
|
||||
key_manager_state: &KeyManagerState,
|
||||
) -> CustomResult<hyperswitch_domain_models::tokenization::Tokenization, errors::StorageError>;
|
||||
|
||||
async fn get_entity_id_vault_id_by_token_id(
|
||||
&self,
|
||||
token: &common_utils::id_type::GlobalTokenId,
|
||||
merchant_key_store: &MerchantKeyStore,
|
||||
key_manager_state: &KeyManagerState,
|
||||
) -> CustomResult<hyperswitch_domain_models::tokenization::Tokenization, errors::StorageError>;
|
||||
}
|
||||
|
||||
#[async_trait::async_trait]
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
impl<T: DatabaseStore> TokenizationInterface for RouterStore<T> {
|
||||
async fn insert_tokenization(
|
||||
&self,
|
||||
tokenization: hyperswitch_domain_models::tokenization::Tokenization,
|
||||
merchant_key_store: &MerchantKeyStore,
|
||||
key_manager_state: &KeyManagerState,
|
||||
) -> CustomResult<hyperswitch_domain_models::tokenization::Tokenization, errors::StorageError>
|
||||
{
|
||||
let conn = connection::pg_connection_write(self).await?;
|
||||
|
||||
tokenization
|
||||
.construct_new()
|
||||
.await
|
||||
.change_context(errors::StorageError::EncryptionError)?
|
||||
.insert(&conn)
|
||||
.await
|
||||
.map_err(|error| report!(errors::StorageError::from(error)))?
|
||||
.convert(
|
||||
key_manager_state,
|
||||
merchant_key_store.key.get_inner(),
|
||||
merchant_key_store.merchant_id.clone().into(),
|
||||
)
|
||||
.await
|
||||
.change_context(errors::StorageError::DecryptionError)
|
||||
}
|
||||
|
||||
async fn get_entity_id_vault_id_by_token_id(
|
||||
&self,
|
||||
token: &common_utils::id_type::GlobalTokenId,
|
||||
merchant_key_store: &MerchantKeyStore,
|
||||
key_manager_state: &KeyManagerState,
|
||||
) -> CustomResult<hyperswitch_domain_models::tokenization::Tokenization, errors::StorageError>
|
||||
{
|
||||
let conn = connection::pg_connection_read(self).await?;
|
||||
|
||||
let tokenization = diesel_models::tokenization::Tokenization::find_by_id(&conn, token)
|
||||
.await
|
||||
.map_err(|error| report!(errors::StorageError::from(error)))?;
|
||||
|
||||
let domain = tokenization
|
||||
.convert(
|
||||
key_manager_state,
|
||||
merchant_key_store.key.get_inner(),
|
||||
merchant_key_store.merchant_id.clone().into(),
|
||||
)
|
||||
.await
|
||||
.change_context(errors::StorageError::DecryptionError)?;
|
||||
|
||||
Ok(domain)
|
||||
}
|
||||
}
|
||||
|
||||
#[async_trait::async_trait]
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
impl<T: DatabaseStore> TokenizationInterface for KVRouterStore<T> {
|
||||
async fn insert_tokenization(
|
||||
&self,
|
||||
tokenization: hyperswitch_domain_models::tokenization::Tokenization,
|
||||
merchant_key_store: &MerchantKeyStore,
|
||||
key_manager_state: &KeyManagerState,
|
||||
) -> CustomResult<hyperswitch_domain_models::tokenization::Tokenization, errors::StorageError>
|
||||
{
|
||||
self.router_store
|
||||
.insert_tokenization(tokenization, merchant_key_store, key_manager_state)
|
||||
.await
|
||||
}
|
||||
|
||||
async fn get_entity_id_vault_id_by_token_id(
|
||||
&self,
|
||||
token: &common_utils::id_type::GlobalTokenId,
|
||||
merchant_key_store: &MerchantKeyStore,
|
||||
key_manager_state: &KeyManagerState,
|
||||
) -> CustomResult<hyperswitch_domain_models::tokenization::Tokenization, errors::StorageError>
|
||||
{
|
||||
self.router_store
|
||||
.get_entity_id_vault_id_by_token_id(token, merchant_key_store, key_manager_state)
|
||||
.await
|
||||
}
|
||||
}
|
||||
|
||||
#[async_trait::async_trait]
|
||||
#[cfg(all(feature = "v2", feature = "tokenization_v2"))]
|
||||
impl TokenizationInterface for MockDb {
|
||||
async fn insert_tokenization(
|
||||
&self,
|
||||
tokenization: hyperswitch_domain_models::tokenization::Tokenization,
|
||||
merchant_key_store: &MerchantKeyStore,
|
||||
key_manager_state: &KeyManagerState,
|
||||
) -> CustomResult<hyperswitch_domain_models::tokenization::Tokenization, errors::StorageError>
|
||||
{
|
||||
Err(errors::StorageError::MockDbError)?
|
||||
}
|
||||
async fn get_entity_id_vault_id_by_token_id(
|
||||
&self,
|
||||
token: &common_utils::id_type::GlobalTokenId,
|
||||
merchant_key_store: &MerchantKeyStore,
|
||||
key_manager_state: &KeyManagerState,
|
||||
) -> CustomResult<hyperswitch_domain_models::tokenization::Tokenization, errors::StorageError>
|
||||
{
|
||||
Err(errors::StorageError::MockDbError)?
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(all(feature = "v2", feature = "tokenization_v2")))]
|
||||
impl TokenizationInterface for MockDb {}
|
||||
|
||||
#[cfg(not(all(feature = "v2", feature = "tokenization_v2")))]
|
||||
impl<T: DatabaseStore> TokenizationInterface for KVRouterStore<T> {}
|
||||
|
||||
#[cfg(not(all(feature = "v2", feature = "tokenization_v2")))]
|
||||
impl<T: DatabaseStore> TokenizationInterface for RouterStore<T> {}
|
||||
Reference in New Issue
Block a user