diff --git a/config/config.example.toml b/config/config.example.toml index 052b10d0b9..afdbdc954b 100644 --- a/config/config.example.toml +++ b/config/config.example.toml @@ -253,6 +253,7 @@ stax.base_url = "https://apiprod.fattlabs.com/" stripe.base_url = "https://api.stripe.com/" taxjar.base_url = "https://api.sandbox.taxjar.com/v2/" threedsecureio.base_url = "https://service.sandbox.3dsecure.io" +thunes.base_url = "https://api.limonetikqualif.com/" stripe.base_url_file_upload = "https://files.stripe.com/" trustpay.base_url = "https://test-tpgw.trustpay.eu/" trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/" @@ -318,6 +319,7 @@ cards = [ "stax", "stripe", "threedsecureio", + "thunes", "worldpay", "zen", "zsl", diff --git a/config/deployments/integration_test.toml b/config/deployments/integration_test.toml index 1680329589..142eaaa6c0 100644 --- a/config/deployments/integration_test.toml +++ b/config/deployments/integration_test.toml @@ -93,6 +93,7 @@ stax.base_url = "https://apiprod.fattlabs.com/" stripe.base_url = "https://api.stripe.com/" stripe.base_url_file_upload = "https://files.stripe.com/" taxjar.base_url = "https://api.sandbox.taxjar.com/v2/" +thunes.base_url = "https://api.limonetikqualif.com/" trustpay.base_url = "https://test-tpgw.trustpay.eu/" trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/" tsys.base_url = "https://stagegw.transnox.com/" diff --git a/config/deployments/production.toml b/config/deployments/production.toml index cc16d88c16..e1b4f0a36f 100644 --- a/config/deployments/production.toml +++ b/config/deployments/production.toml @@ -97,6 +97,7 @@ stax.base_url = "https://apiprod.fattlabs.com/" stripe.base_url = "https://api.stripe.com/" stripe.base_url_file_upload = "https://files.stripe.com/" taxjar.base_url = "https://api.taxjar.com/v2/" +thunes.base_url = "https://api.limonetik.com/" trustpay.base_url = "https://tpgw.trustpay.eu/" trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/" tsys.base_url = "https://gateway.transit-pass.com/" diff --git a/config/deployments/sandbox.toml b/config/deployments/sandbox.toml index 8a8030db05..3b7993b4b1 100644 --- a/config/deployments/sandbox.toml +++ b/config/deployments/sandbox.toml @@ -97,6 +97,7 @@ stax.base_url = "https://apiprod.fattlabs.com/" stripe.base_url = "https://api.stripe.com/" stripe.base_url_file_upload = "https://files.stripe.com/" taxjar.base_url = "https://api.sandbox.taxjar.com/v2/" +thunes.base_url = "https://api.limonetikqualif.com/" trustpay.base_url = "https://test-tpgw.trustpay.eu/" trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/" tsys.base_url = "https://stagegw.transnox.com/" diff --git a/config/development.toml b/config/development.toml index 27ac5bb3f5..687f0dc1ec 100644 --- a/config/development.toml +++ b/config/development.toml @@ -155,6 +155,7 @@ cards = [ "stripe", "taxjar", "threedsecureio", + "thunes", "trustpay", "tsys", "volt", @@ -261,6 +262,7 @@ stax.base_url = "https://apiprod.fattlabs.com/" stripe.base_url = "https://api.stripe.com/" taxjar.base_url = "https://api.sandbox.taxjar.com/v2/" threedsecureio.base_url = "https://service.sandbox.3dsecure.io" +thunes.base_url = "https://api.limonetikqualif.com/" stripe.base_url_file_upload = "https://files.stripe.com/" wise.base_url = "https://api.sandbox.transferwise.tech/" worldline.base_url = "https://eu.sandbox.api-ingenico.com/" diff --git a/config/docker_compose.toml b/config/docker_compose.toml index 98da1c3098..e3587986ee 100644 --- a/config/docker_compose.toml +++ b/config/docker_compose.toml @@ -182,6 +182,7 @@ stax.base_url = "https://apiprod.fattlabs.com/" stripe.base_url = "https://api.stripe.com/" taxjar.base_url = "https://api.sandbox.taxjar.com/v2/" threedsecureio.base_url = "https://service.sandbox.3dsecure.io" +thunes.base_url = "https://api.limonetikqualif.com/" stripe.base_url_file_upload = "https://files.stripe.com/" trustpay.base_url = "https://test-tpgw.trustpay.eu/" trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/" @@ -264,6 +265,7 @@ cards = [ "stripe", "taxjar", "threedsecureio", + "thunes", "trustpay", "tsys", "volt", diff --git a/crates/api_models/src/enums.rs b/crates/api_models/src/enums.rs index 5db816305b..5bee91843b 100644 --- a/crates/api_models/src/enums.rs +++ b/crates/api_models/src/enums.rs @@ -137,6 +137,7 @@ pub enum Connector { Stripe, Taxjar, Threedsecureio, + //Thunes, Trustpay, Tsys, Volt, @@ -265,6 +266,7 @@ impl Connector { | Self::Square | Self::Stax | Self::Taxjar + //| Self::Thunes | Self::Trustpay | Self::Tsys | Self::Volt diff --git a/crates/common_enums/src/enums.rs b/crates/common_enums/src/enums.rs index eef23ff5b8..61acfa2330 100644 --- a/crates/common_enums/src/enums.rs +++ b/crates/common_enums/src/enums.rs @@ -251,6 +251,7 @@ pub enum RoutableConnectors { Stripe, // Taxjar, Trustpay, + // Thunes // Tsys, Tsys, Volt, diff --git a/crates/hyperswitch_connectors/src/connectors.rs b/crates/hyperswitch_connectors/src/connectors.rs index 7902441132..037f91e90c 100644 --- a/crates/hyperswitch_connectors/src/connectors.rs +++ b/crates/hyperswitch_connectors/src/connectors.rs @@ -11,12 +11,13 @@ pub mod novalnet; pub mod powertranz; pub mod stax; pub mod taxjar; +pub mod thunes; pub mod tsys; pub mod worldline; pub use self::{ bambora::Bambora, bitpay::Bitpay, deutschebank::Deutschebank, fiserv::Fiserv, fiservemea::Fiservemea, fiuu::Fiuu, globepay::Globepay, helcim::Helcim, nexixpay::Nexixpay, - novalnet::Novalnet, powertranz::Powertranz, stax::Stax, taxjar::Taxjar, tsys::Tsys, - worldline::Worldline, + novalnet::Novalnet, powertranz::Powertranz, stax::Stax, taxjar::Taxjar, thunes::Thunes, + tsys::Tsys, worldline::Worldline, }; diff --git a/crates/hyperswitch_connectors/src/connectors/thunes.rs b/crates/hyperswitch_connectors/src/connectors/thunes.rs new file mode 100644 index 0000000000..972ba0d7dd --- /dev/null +++ b/crates/hyperswitch_connectors/src/connectors/thunes.rs @@ -0,0 +1,563 @@ +pub mod transformers; + +use common_utils::{ + errors::CustomResult, + ext_traits::BytesExt, + request::{Method, Request, RequestBuilder, RequestContent}, + types::{AmountConvertor, StringMinorUnit, StringMinorUnitForConnector}, +}; +use error_stack::{report, ResultExt}; +use hyperswitch_domain_models::{ + router_data::{AccessToken, ConnectorAuthType, ErrorResponse, RouterData}, + router_flow_types::{ + access_token_auth::AccessTokenAuth, + payments::{Authorize, Capture, PSync, PaymentMethodToken, Session, SetupMandate, Void}, + refunds::{Execute, RSync}, + }, + router_request_types::{ + AccessTokenRequestData, PaymentMethodTokenizationData, PaymentsAuthorizeData, + PaymentsCancelData, PaymentsCaptureData, PaymentsSessionData, PaymentsSyncData, + RefundsData, SetupMandateRequestData, + }, + router_response_types::{PaymentsResponseData, RefundsResponseData}, + types::{ + PaymentsAuthorizeRouterData, PaymentsCaptureRouterData, PaymentsSyncRouterData, + RefundSyncRouterData, RefundsRouterData, + }, +}; +use hyperswitch_interfaces::{ + api::{self, ConnectorCommon, ConnectorCommonExt, ConnectorIntegration, ConnectorValidation}, + configs::Connectors, + errors, + events::connector_api_logs::ConnectorEvent, + types::{self, Response}, + webhooks, +}; +use masking::{ExposeInterface, Mask}; +use transformers as thunes; + +use crate::{constants::headers, types::ResponseRouterData, utils}; + +#[derive(Clone)] +pub struct Thunes { + amount_converter: &'static (dyn AmountConvertor + Sync), +} + +impl Thunes { + pub fn new() -> &'static Self { + &Self { + amount_converter: &StringMinorUnitForConnector, + } + } +} + +impl api::Payment for Thunes {} +impl api::PaymentSession for Thunes {} +impl api::ConnectorAccessToken for Thunes {} +impl api::MandateSetup for Thunes {} +impl api::PaymentAuthorize for Thunes {} +impl api::PaymentSync for Thunes {} +impl api::PaymentCapture for Thunes {} +impl api::PaymentVoid for Thunes {} +impl api::Refund for Thunes {} +impl api::RefundExecute for Thunes {} +impl api::RefundSync for Thunes {} +impl api::PaymentToken for Thunes {} + +impl ConnectorIntegration + for Thunes +{ + // Not Implemented (R) +} + +impl ConnectorCommonExt for Thunes +where + Self: ConnectorIntegration, +{ + fn build_headers( + &self, + req: &RouterData, + _connectors: &Connectors, + ) -> CustomResult)>, errors::ConnectorError> { + let mut header = vec![( + headers::CONTENT_TYPE.to_string(), + self.get_content_type().to_string().into(), + )]; + let mut api_key = self.get_auth_header(&req.connector_auth_type)?; + header.append(&mut api_key); + Ok(header) + } +} + +impl ConnectorCommon for Thunes { + fn id(&self) -> &'static str { + "thunes" + } + + fn get_currency_unit(&self) -> api::CurrencyUnit { + api::CurrencyUnit::Base + // TODO! Check connector documentation, on which unit they are processing the currency. + // If the connector accepts amount in lower unit ( i.e cents for USD) then return api::CurrencyUnit::Minor, + // if connector accepts amount in base unit (i.e dollars for USD) then return api::CurrencyUnit::Base + } + + fn common_get_content_type(&self) -> &'static str { + "application/json" + } + + fn base_url<'a>(&self, connectors: &'a Connectors) -> &'a str { + connectors.thunes.base_url.as_ref() + } + + fn get_auth_header( + &self, + auth_type: &ConnectorAuthType, + ) -> CustomResult)>, errors::ConnectorError> { + let auth = thunes::ThunesAuthType::try_from(auth_type) + .change_context(errors::ConnectorError::FailedToObtainAuthType)?; + Ok(vec![( + headers::AUTHORIZATION.to_string(), + auth.api_key.expose().into_masked(), + )]) + } + + fn build_error_response( + &self, + res: Response, + event_builder: Option<&mut ConnectorEvent>, + ) -> CustomResult { + let response: thunes::ThunesErrorResponse = res + .response + .parse_struct("ThunesErrorResponse") + .change_context(errors::ConnectorError::ResponseDeserializationFailed)?; + + event_builder.map(|i| i.set_response_body(&response)); + router_env::logger::info!(connector_response=?response); + + Ok(ErrorResponse { + status_code: res.status_code, + code: response.code, + message: response.message, + reason: response.reason, + attempt_status: None, + connector_transaction_id: None, + }) + } +} + +impl ConnectorValidation for Thunes { + //TODO: implement functions when support enabled +} + +impl ConnectorIntegration for Thunes { + //TODO: implement sessions flow +} + +impl ConnectorIntegration for Thunes {} + +impl ConnectorIntegration for Thunes {} + +impl ConnectorIntegration for Thunes { + fn get_headers( + &self, + req: &PaymentsAuthorizeRouterData, + connectors: &Connectors, + ) -> CustomResult)>, errors::ConnectorError> { + self.build_headers(req, connectors) + } + + fn get_content_type(&self) -> &'static str { + self.common_get_content_type() + } + + fn get_url( + &self, + _req: &PaymentsAuthorizeRouterData, + _connectors: &Connectors, + ) -> CustomResult { + Err(errors::ConnectorError::NotImplemented("get_url method".to_string()).into()) + } + + fn get_request_body( + &self, + req: &PaymentsAuthorizeRouterData, + _connectors: &Connectors, + ) -> CustomResult { + let amount = utils::convert_amount( + self.amount_converter, + req.request.minor_amount, + req.request.currency, + )?; + + let connector_router_data = thunes::ThunesRouterData::from((amount, req)); + let connector_req = thunes::ThunesPaymentsRequest::try_from(&connector_router_data)?; + Ok(RequestContent::Json(Box::new(connector_req))) + } + + fn build_request( + &self, + req: &PaymentsAuthorizeRouterData, + connectors: &Connectors, + ) -> CustomResult, errors::ConnectorError> { + Ok(Some( + RequestBuilder::new() + .method(Method::Post) + .url(&types::PaymentsAuthorizeType::get_url( + self, req, connectors, + )?) + .attach_default_headers() + .headers(types::PaymentsAuthorizeType::get_headers( + self, req, connectors, + )?) + .set_body(types::PaymentsAuthorizeType::get_request_body( + self, req, connectors, + )?) + .build(), + )) + } + + fn handle_response( + &self, + data: &PaymentsAuthorizeRouterData, + event_builder: Option<&mut ConnectorEvent>, + res: Response, + ) -> CustomResult { + let response: thunes::ThunesPaymentsResponse = res + .response + .parse_struct("Thunes PaymentsAuthorizeResponse") + .change_context(errors::ConnectorError::ResponseDeserializationFailed)?; + event_builder.map(|i| i.set_response_body(&response)); + router_env::logger::info!(connector_response=?response); + RouterData::try_from(ResponseRouterData { + response, + data: data.clone(), + http_code: res.status_code, + }) + } + + fn get_error_response( + &self, + res: Response, + event_builder: Option<&mut ConnectorEvent>, + ) -> CustomResult { + self.build_error_response(res, event_builder) + } +} + +impl ConnectorIntegration for Thunes { + fn get_headers( + &self, + req: &PaymentsSyncRouterData, + connectors: &Connectors, + ) -> CustomResult)>, errors::ConnectorError> { + self.build_headers(req, connectors) + } + + fn get_content_type(&self) -> &'static str { + self.common_get_content_type() + } + + fn get_url( + &self, + _req: &PaymentsSyncRouterData, + _connectors: &Connectors, + ) -> CustomResult { + Err(errors::ConnectorError::NotImplemented("get_url method".to_string()).into()) + } + + fn build_request( + &self, + req: &PaymentsSyncRouterData, + connectors: &Connectors, + ) -> CustomResult, errors::ConnectorError> { + Ok(Some( + RequestBuilder::new() + .method(Method::Get) + .url(&types::PaymentsSyncType::get_url(self, req, connectors)?) + .attach_default_headers() + .headers(types::PaymentsSyncType::get_headers(self, req, connectors)?) + .build(), + )) + } + + fn handle_response( + &self, + data: &PaymentsSyncRouterData, + event_builder: Option<&mut ConnectorEvent>, + res: Response, + ) -> CustomResult { + let response: thunes::ThunesPaymentsResponse = res + .response + .parse_struct("thunes PaymentsSyncResponse") + .change_context(errors::ConnectorError::ResponseDeserializationFailed)?; + event_builder.map(|i| i.set_response_body(&response)); + router_env::logger::info!(connector_response=?response); + RouterData::try_from(ResponseRouterData { + response, + data: data.clone(), + http_code: res.status_code, + }) + } + + fn get_error_response( + &self, + res: Response, + event_builder: Option<&mut ConnectorEvent>, + ) -> CustomResult { + self.build_error_response(res, event_builder) + } +} + +impl ConnectorIntegration for Thunes { + fn get_headers( + &self, + req: &PaymentsCaptureRouterData, + connectors: &Connectors, + ) -> CustomResult)>, errors::ConnectorError> { + self.build_headers(req, connectors) + } + + fn get_content_type(&self) -> &'static str { + self.common_get_content_type() + } + + fn get_url( + &self, + _req: &PaymentsCaptureRouterData, + _connectors: &Connectors, + ) -> CustomResult { + Err(errors::ConnectorError::NotImplemented("get_url method".to_string()).into()) + } + + fn get_request_body( + &self, + _req: &PaymentsCaptureRouterData, + _connectors: &Connectors, + ) -> CustomResult { + Err(errors::ConnectorError::NotImplemented("get_request_body method".to_string()).into()) + } + + fn build_request( + &self, + req: &PaymentsCaptureRouterData, + connectors: &Connectors, + ) -> CustomResult, errors::ConnectorError> { + Ok(Some( + RequestBuilder::new() + .method(Method::Post) + .url(&types::PaymentsCaptureType::get_url(self, req, connectors)?) + .attach_default_headers() + .headers(types::PaymentsCaptureType::get_headers( + self, req, connectors, + )?) + .set_body(types::PaymentsCaptureType::get_request_body( + self, req, connectors, + )?) + .build(), + )) + } + + fn handle_response( + &self, + data: &PaymentsCaptureRouterData, + event_builder: Option<&mut ConnectorEvent>, + res: Response, + ) -> CustomResult { + let response: thunes::ThunesPaymentsResponse = res + .response + .parse_struct("Thunes PaymentsCaptureResponse") + .change_context(errors::ConnectorError::ResponseDeserializationFailed)?; + event_builder.map(|i| i.set_response_body(&response)); + router_env::logger::info!(connector_response=?response); + RouterData::try_from(ResponseRouterData { + response, + data: data.clone(), + http_code: res.status_code, + }) + } + + fn get_error_response( + &self, + res: Response, + event_builder: Option<&mut ConnectorEvent>, + ) -> CustomResult { + self.build_error_response(res, event_builder) + } +} + +impl ConnectorIntegration for Thunes {} + +impl ConnectorIntegration for Thunes { + fn get_headers( + &self, + req: &RefundsRouterData, + connectors: &Connectors, + ) -> CustomResult)>, errors::ConnectorError> { + self.build_headers(req, connectors) + } + + fn get_content_type(&self) -> &'static str { + self.common_get_content_type() + } + + fn get_url( + &self, + _req: &RefundsRouterData, + _connectors: &Connectors, + ) -> CustomResult { + Err(errors::ConnectorError::NotImplemented("get_url method".to_string()).into()) + } + + fn get_request_body( + &self, + req: &RefundsRouterData, + _connectors: &Connectors, + ) -> CustomResult { + let refund_amount = utils::convert_amount( + self.amount_converter, + req.request.minor_refund_amount, + req.request.currency, + )?; + + let connector_router_data = thunes::ThunesRouterData::from((refund_amount, req)); + let connector_req = thunes::ThunesRefundRequest::try_from(&connector_router_data)?; + Ok(RequestContent::Json(Box::new(connector_req))) + } + + fn build_request( + &self, + req: &RefundsRouterData, + connectors: &Connectors, + ) -> CustomResult, errors::ConnectorError> { + let request = RequestBuilder::new() + .method(Method::Post) + .url(&types::RefundExecuteType::get_url(self, req, connectors)?) + .attach_default_headers() + .headers(types::RefundExecuteType::get_headers( + self, req, connectors, + )?) + .set_body(types::RefundExecuteType::get_request_body( + self, req, connectors, + )?) + .build(); + Ok(Some(request)) + } + + fn handle_response( + &self, + data: &RefundsRouterData, + event_builder: Option<&mut ConnectorEvent>, + res: Response, + ) -> CustomResult, errors::ConnectorError> { + let response: thunes::RefundResponse = + res.response + .parse_struct("thunes RefundResponse") + .change_context(errors::ConnectorError::ResponseDeserializationFailed)?; + event_builder.map(|i| i.set_response_body(&response)); + router_env::logger::info!(connector_response=?response); + RouterData::try_from(ResponseRouterData { + response, + data: data.clone(), + http_code: res.status_code, + }) + } + + fn get_error_response( + &self, + res: Response, + event_builder: Option<&mut ConnectorEvent>, + ) -> CustomResult { + self.build_error_response(res, event_builder) + } +} + +impl ConnectorIntegration for Thunes { + fn get_headers( + &self, + req: &RefundSyncRouterData, + connectors: &Connectors, + ) -> CustomResult)>, errors::ConnectorError> { + self.build_headers(req, connectors) + } + + fn get_content_type(&self) -> &'static str { + self.common_get_content_type() + } + + fn get_url( + &self, + _req: &RefundSyncRouterData, + _connectors: &Connectors, + ) -> CustomResult { + Err(errors::ConnectorError::NotImplemented("get_url method".to_string()).into()) + } + + fn build_request( + &self, + req: &RefundSyncRouterData, + connectors: &Connectors, + ) -> CustomResult, errors::ConnectorError> { + Ok(Some( + RequestBuilder::new() + .method(Method::Get) + .url(&types::RefundSyncType::get_url(self, req, connectors)?) + .attach_default_headers() + .headers(types::RefundSyncType::get_headers(self, req, connectors)?) + .set_body(types::RefundSyncType::get_request_body( + self, req, connectors, + )?) + .build(), + )) + } + + fn handle_response( + &self, + data: &RefundSyncRouterData, + event_builder: Option<&mut ConnectorEvent>, + res: Response, + ) -> CustomResult { + let response: thunes::RefundResponse = res + .response + .parse_struct("thunes RefundSyncResponse") + .change_context(errors::ConnectorError::ResponseDeserializationFailed)?; + event_builder.map(|i| i.set_response_body(&response)); + router_env::logger::info!(connector_response=?response); + RouterData::try_from(ResponseRouterData { + response, + data: data.clone(), + http_code: res.status_code, + }) + } + + fn get_error_response( + &self, + res: Response, + event_builder: Option<&mut ConnectorEvent>, + ) -> CustomResult { + self.build_error_response(res, event_builder) + } +} + +#[async_trait::async_trait] +impl webhooks::IncomingWebhook for Thunes { + fn get_webhook_object_reference_id( + &self, + _request: &webhooks::IncomingWebhookRequestDetails<'_>, + ) -> CustomResult { + Err(report!(errors::ConnectorError::WebhooksNotImplemented)) + } + + fn get_webhook_event_type( + &self, + _request: &webhooks::IncomingWebhookRequestDetails<'_>, + ) -> CustomResult { + Err(report!(errors::ConnectorError::WebhooksNotImplemented)) + } + + fn get_webhook_resource_object( + &self, + _request: &webhooks::IncomingWebhookRequestDetails<'_>, + ) -> CustomResult, errors::ConnectorError> { + Err(report!(errors::ConnectorError::WebhooksNotImplemented)) + } +} diff --git a/crates/hyperswitch_connectors/src/connectors/thunes/transformers.rs b/crates/hyperswitch_connectors/src/connectors/thunes/transformers.rs new file mode 100644 index 0000000000..c0ee0fdae9 --- /dev/null +++ b/crates/hyperswitch_connectors/src/connectors/thunes/transformers.rs @@ -0,0 +1,228 @@ +use common_enums::enums; +use common_utils::types::StringMinorUnit; +use hyperswitch_domain_models::{ + payment_method_data::PaymentMethodData, + router_data::{ConnectorAuthType, RouterData}, + router_flow_types::refunds::{Execute, RSync}, + router_request_types::ResponseId, + router_response_types::{PaymentsResponseData, RefundsResponseData}, + types::{PaymentsAuthorizeRouterData, RefundsRouterData}, +}; +use hyperswitch_interfaces::errors; +use masking::Secret; +use serde::{Deserialize, Serialize}; + +use crate::{ + types::{RefundsResponseRouterData, ResponseRouterData}, + utils::PaymentsAuthorizeRequestData, +}; + +//TODO: Fill the struct with respective fields +pub struct ThunesRouterData { + pub amount: StringMinorUnit, // The type of amount that a connector accepts, for example, String, i64, f64, etc. + pub router_data: T, +} + +impl From<(StringMinorUnit, T)> for ThunesRouterData { + fn from((amount, item): (StringMinorUnit, T)) -> Self { + //Todo : use utils to convert the amount to the type of amount that a connector accepts + Self { + amount, + router_data: item, + } + } +} + +//TODO: Fill the struct with respective fields +#[derive(Default, Debug, Serialize, PartialEq)] +pub struct ThunesPaymentsRequest { + amount: StringMinorUnit, + card: ThunesCard, +} + +#[derive(Default, Debug, Serialize, Eq, PartialEq)] +pub struct ThunesCard { + number: cards::CardNumber, + expiry_month: Secret, + expiry_year: Secret, + cvc: Secret, + complete: bool, +} + +impl TryFrom<&ThunesRouterData<&PaymentsAuthorizeRouterData>> for ThunesPaymentsRequest { + type Error = error_stack::Report; + fn try_from( + item: &ThunesRouterData<&PaymentsAuthorizeRouterData>, + ) -> Result { + match item.router_data.request.payment_method_data.clone() { + PaymentMethodData::Card(req_card) => { + let card = ThunesCard { + number: req_card.card_number, + expiry_month: req_card.card_exp_month, + expiry_year: req_card.card_exp_year, + cvc: req_card.card_cvc, + complete: item.router_data.request.is_auto_capture()?, + }; + Ok(Self { + amount: item.amount.clone(), + card, + }) + } + _ => Err(errors::ConnectorError::NotImplemented("Payment methods".to_string()).into()), + } + } +} + +//TODO: Fill the struct with respective fields +// Auth Struct +pub struct ThunesAuthType { + pub(super) api_key: Secret, +} + +impl TryFrom<&ConnectorAuthType> for ThunesAuthType { + type Error = error_stack::Report; + fn try_from(auth_type: &ConnectorAuthType) -> Result { + match auth_type { + ConnectorAuthType::HeaderKey { api_key } => Ok(Self { + api_key: api_key.to_owned(), + }), + _ => Err(errors::ConnectorError::FailedToObtainAuthType.into()), + } + } +} +// PaymentsResponse +//TODO: Append the remaining status flags +#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum ThunesPaymentStatus { + Succeeded, + Failed, + #[default] + Processing, +} + +impl From for common_enums::AttemptStatus { + fn from(item: ThunesPaymentStatus) -> Self { + match item { + ThunesPaymentStatus::Succeeded => Self::Charged, + ThunesPaymentStatus::Failed => Self::Failure, + ThunesPaymentStatus::Processing => Self::Authorizing, + } + } +} + +//TODO: Fill the struct with respective fields +#[derive(Default, Debug, Clone, Serialize, Deserialize, PartialEq)] +pub struct ThunesPaymentsResponse { + status: ThunesPaymentStatus, + id: String, +} + +impl TryFrom> + for RouterData +{ + type Error = error_stack::Report; + fn try_from( + item: ResponseRouterData, + ) -> Result { + Ok(Self { + status: common_enums::AttemptStatus::from(item.response.status), + response: Ok(PaymentsResponseData::TransactionResponse { + resource_id: ResponseId::ConnectorTransactionId(item.response.id), + redirection_data: None, + mandate_reference: None, + connector_metadata: None, + network_txn_id: None, + connector_response_reference_id: None, + incremental_authorization_allowed: None, + charge_id: None, + }), + ..item.data + }) + } +} + +//TODO: Fill the struct with respective fields +// REFUND : +// Type definition for RefundRequest +#[derive(Default, Debug, Serialize)] +pub struct ThunesRefundRequest { + pub amount: StringMinorUnit, +} + +impl TryFrom<&ThunesRouterData<&RefundsRouterData>> for ThunesRefundRequest { + type Error = error_stack::Report; + fn try_from(item: &ThunesRouterData<&RefundsRouterData>) -> Result { + Ok(Self { + amount: item.amount.to_owned(), + }) + } +} + +// Type definition for Refund Response + +#[allow(dead_code)] +#[derive(Debug, Serialize, Default, Deserialize, Clone)] +pub enum RefundStatus { + Succeeded, + Failed, + #[default] + Processing, +} + +impl From for enums::RefundStatus { + fn from(item: RefundStatus) -> Self { + match item { + RefundStatus::Succeeded => Self::Success, + RefundStatus::Failed => Self::Failure, + RefundStatus::Processing => Self::Pending, + //TODO: Review mapping + } + } +} + +//TODO: Fill the struct with respective fields +#[derive(Default, Debug, Clone, Serialize, Deserialize)] +pub struct RefundResponse { + id: String, + status: RefundStatus, +} + +impl TryFrom> for RefundsRouterData { + type Error = error_stack::Report; + fn try_from( + item: RefundsResponseRouterData, + ) -> Result { + Ok(Self { + response: Ok(RefundsResponseData { + connector_refund_id: item.response.id.to_string(), + refund_status: enums::RefundStatus::from(item.response.status), + }), + ..item.data + }) + } +} + +impl TryFrom> for RefundsRouterData { + type Error = error_stack::Report; + fn try_from( + item: RefundsResponseRouterData, + ) -> Result { + Ok(Self { + response: Ok(RefundsResponseData { + connector_refund_id: item.response.id.to_string(), + refund_status: enums::RefundStatus::from(item.response.status), + }), + ..item.data + }) + } +} + +//TODO: Fill the struct with respective fields +#[derive(Default, Debug, Serialize, Deserialize, PartialEq)] +pub struct ThunesErrorResponse { + pub status_code: u16, + pub code: String, + pub message: String, + pub reason: Option, +} diff --git a/crates/hyperswitch_connectors/src/default_implementations.rs b/crates/hyperswitch_connectors/src/default_implementations.rs index 0210bfa551..40aa36cc8b 100644 --- a/crates/hyperswitch_connectors/src/default_implementations.rs +++ b/crates/hyperswitch_connectors/src/default_implementations.rs @@ -102,6 +102,7 @@ default_imp_for_authorize_session_token!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -133,6 +134,7 @@ default_imp_for_calculate_tax!( connectors::Globepay, connectors::Worldline, connectors::Powertranz, + connectors::Thunes, connectors::Tsys, connectors::Deutschebank ); @@ -165,6 +167,7 @@ default_imp_for_session_update!( connectors::Globepay, connectors::Worldline, connectors::Powertranz, + connectors::Thunes, connectors::Tsys, connectors::Deutschebank ); @@ -197,6 +200,7 @@ default_imp_for_complete_authorize!( connectors::Nexixpay, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -230,6 +234,7 @@ default_imp_for_incremental_authorization!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -262,6 +267,7 @@ default_imp_for_create_customer!( connectors::Nexixpay, connectors::Powertranz, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -296,6 +302,7 @@ default_imp_for_connector_redirect_response!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -329,6 +336,7 @@ default_imp_for_pre_processing_steps!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -362,6 +370,7 @@ default_imp_for_post_processing_steps!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -395,6 +404,7 @@ default_imp_for_approve!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -428,6 +438,7 @@ default_imp_for_reject!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -461,6 +472,7 @@ default_imp_for_webhook_source_verification!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -495,6 +507,7 @@ default_imp_for_accept_dispute!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -528,6 +541,7 @@ default_imp_for_submit_evidence!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -561,6 +575,7 @@ default_imp_for_defend_dispute!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -603,6 +618,7 @@ default_imp_for_file_upload!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -638,6 +654,7 @@ default_imp_for_payouts_create!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -673,6 +690,7 @@ default_imp_for_payouts_retrieve!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -708,6 +726,7 @@ default_imp_for_payouts_eligibility!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -743,6 +762,7 @@ default_imp_for_payouts_fulfill!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -778,6 +798,7 @@ default_imp_for_payouts_cancel!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -813,6 +834,7 @@ default_imp_for_payouts_quote!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -848,6 +870,7 @@ default_imp_for_payouts_recipient!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -883,6 +906,7 @@ default_imp_for_payouts_recipient_account!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -918,6 +942,7 @@ default_imp_for_frm_sale!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -953,6 +978,7 @@ default_imp_for_frm_checkout!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -988,6 +1014,7 @@ default_imp_for_frm_transaction!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -1023,6 +1050,7 @@ default_imp_for_frm_fulfillment!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -1058,6 +1086,7 @@ default_imp_for_frm_record_return!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -1090,6 +1119,7 @@ default_imp_for_revoking_mandates!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); diff --git a/crates/hyperswitch_connectors/src/default_implementations_v2.rs b/crates/hyperswitch_connectors/src/default_implementations_v2.rs index e23f8fdb29..95c7ffec00 100644 --- a/crates/hyperswitch_connectors/src/default_implementations_v2.rs +++ b/crates/hyperswitch_connectors/src/default_implementations_v2.rs @@ -209,6 +209,7 @@ default_imp_for_new_connector_integration_payment!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -243,6 +244,7 @@ default_imp_for_new_connector_integration_refund!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -272,6 +274,7 @@ default_imp_for_new_connector_integration_connector_access_token!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -307,6 +310,7 @@ default_imp_for_new_connector_integration_accept_dispute!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -341,6 +345,7 @@ default_imp_for_new_connector_integration_submit_evidence!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -375,6 +380,7 @@ default_imp_for_new_connector_integration_defend_dispute!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -419,6 +425,7 @@ default_imp_for_new_connector_integration_file_upload!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -455,6 +462,7 @@ default_imp_for_new_connector_integration_payouts_create!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -491,6 +499,7 @@ default_imp_for_new_connector_integration_payouts_eligibility!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -527,6 +536,7 @@ default_imp_for_new_connector_integration_payouts_fulfill!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -563,6 +573,7 @@ default_imp_for_new_connector_integration_payouts_cancel!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -599,6 +610,7 @@ default_imp_for_new_connector_integration_payouts_quote!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -635,6 +647,7 @@ default_imp_for_new_connector_integration_payouts_recipient!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -671,6 +684,7 @@ default_imp_for_new_connector_integration_payouts_sync!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -707,6 +721,7 @@ default_imp_for_new_connector_integration_payouts_recipient_account!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -741,6 +756,7 @@ default_imp_for_new_connector_integration_webhook_source_verification!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -777,6 +793,7 @@ default_imp_for_new_connector_integration_frm_sale!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -813,6 +830,7 @@ default_imp_for_new_connector_integration_frm_checkout!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -849,6 +867,7 @@ default_imp_for_new_connector_integration_frm_transaction!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -885,6 +904,7 @@ default_imp_for_new_connector_integration_frm_fulfillment!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -921,6 +941,7 @@ default_imp_for_new_connector_integration_frm_record_return!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); @@ -954,6 +975,7 @@ default_imp_for_new_connector_integration_revoking_mandates!( connectors::Powertranz, connectors::Stax, connectors::Taxjar, + connectors::Thunes, connectors::Tsys, connectors::Worldline ); diff --git a/crates/hyperswitch_interfaces/src/configs.rs b/crates/hyperswitch_interfaces/src/configs.rs index 37e5eecea6..eae30eeb67 100644 --- a/crates/hyperswitch_interfaces/src/configs.rs +++ b/crates/hyperswitch_interfaces/src/configs.rs @@ -78,6 +78,7 @@ pub struct Connectors { pub stripe: ConnectorParamsWithFileUploadUrl, pub taxjar: ConnectorParams, pub threedsecureio: ConnectorParams, + pub thunes: ConnectorParams, pub trustpay: ConnectorParamsWithMoreUrls, pub tsys: ConnectorParams, pub volt: ConnectorParams, diff --git a/crates/router/src/connector.rs b/crates/router/src/connector.rs index 1fea8015de..caa5b13b51 100644 --- a/crates/router/src/connector.rs +++ b/crates/router/src/connector.rs @@ -68,7 +68,7 @@ pub use hyperswitch_connectors::connectors::{ fiserv, fiserv::Fiserv, fiservemea, fiservemea::Fiservemea, fiuu, fiuu::Fiuu, globepay, globepay::Globepay, helcim, helcim::Helcim, nexixpay, nexixpay::Nexixpay, novalnet, novalnet::Novalnet, powertranz, powertranz::Powertranz, stax, stax::Stax, taxjar, - taxjar::Taxjar, tsys, tsys::Tsys, worldline, worldline::Worldline, + taxjar::Taxjar, thunes, thunes::Thunes, tsys, tsys::Tsys, worldline, worldline::Worldline, }; #[cfg(feature = "dummy_connector")] diff --git a/crates/router/src/core/payments/connector_integration_v2_impls.rs b/crates/router/src/core/payments/connector_integration_v2_impls.rs index 0a4aa8348d..a1a3cecd8f 100644 --- a/crates/router/src/core/payments/connector_integration_v2_impls.rs +++ b/crates/router/src/core/payments/connector_integration_v2_impls.rs @@ -1287,6 +1287,7 @@ default_imp_for_new_connector_integration_payouts!( connector::Taxjar, connector::Trustpay, connector::Threedsecureio, + connector::Thunes, connector::Tsys, connector::Volt, connector::Wellsfargo, @@ -2100,6 +2101,7 @@ default_imp_for_new_connector_integration_frm!( connector::Taxjar, connector::Trustpay, connector::Threedsecureio, + connector::Thunes, connector::Tsys, connector::Volt, connector::Wellsfargo, @@ -2704,6 +2706,7 @@ default_imp_for_new_connector_integration_connector_authentication!( connector::Taxjar, connector::Trustpay, connector::Threedsecureio, + connector::Thunes, connector::Tsys, connector::Volt, connector::Wellsfargo, diff --git a/crates/router/src/types/api.rs b/crates/router/src/types/api.rs index 1c5e6eb5e9..598db0bdcc 100644 --- a/crates/router/src/types/api.rs +++ b/crates/router/src/types/api.rs @@ -482,14 +482,17 @@ impl ConnectorData { enums::Connector::Paypal => { Ok(ConnectorEnum::Old(Box::new(connector::Paypal::new()))) } + // enums::Connector::Thunes => Ok(ConnectorEnum::Old(Box::new(connector::Thunes))), enums::Connector::Trustpay => { Ok(ConnectorEnum::Old(Box::new(connector::Trustpay::new()))) } enums::Connector::Tsys => Ok(ConnectorEnum::Old(Box::new(&connector::Tsys))), + enums::Connector::Volt => Ok(ConnectorEnum::Old(Box::new(connector::Volt::new()))), enums::Connector::Wellsfargo => { Ok(ConnectorEnum::Old(Box::new(&connector::Wellsfargo))) } + // enums::Connector::Wellsfargopayout => { // Ok(Box::new(connector::Wellsfargopayout::new())) // } diff --git a/crates/router/src/types/transformers.rs b/crates/router/src/types/transformers.rs index de897c816d..f302cb0095 100644 --- a/crates/router/src/types/transformers.rs +++ b/crates/router/src/types/transformers.rs @@ -333,6 +333,8 @@ impl ForeignTryFrom for common_enums::RoutableConnectors { api_enums::Connector::Square => Self::Square, api_enums::Connector::Stax => Self::Stax, api_enums::Connector::Stripe => Self::Stripe, + // api_enums::Connector::Taxjar => Self::Taxjar, + // api_enums::Connector::Thunes => Self::Thunes, api_enums::Connector::Trustpay => Self::Trustpay, api_enums::Connector::Tsys => Self::Tsys, api_enums::Connector::Volt => Self::Volt, diff --git a/crates/router/tests/connectors/sample_auth.toml b/crates/router/tests/connectors/sample_auth.toml index fe5820d34e..6ed9bd7103 100644 --- a/crates/router/tests/connectors/sample_auth.toml +++ b/crates/router/tests/connectors/sample_auth.toml @@ -276,4 +276,7 @@ api_key = "API Key" api_key="API Key" [deutschebank] +api_key="API Key" + +[thunes] api_key="API Key" \ No newline at end of file diff --git a/crates/router/tests/connectors/thunes.rs b/crates/router/tests/connectors/thunes.rs new file mode 100644 index 0000000000..379e102a53 --- /dev/null +++ b/crates/router/tests/connectors/thunes.rs @@ -0,0 +1,402 @@ +use masking::Secret; +// use router::{ +// types::{self, api, storage::enums, +// }}; + +use crate::utils::{self, ConnectorActions}; +use test_utils::connector_auth; + +#[derive(Clone, Copy)] +struct ThunesTest; +impl ConnectorActions for ThunesTest {} +impl utils::Connector for ThunesTest { + fn get_data(&self) -> api::ConnectorData { + use router::connector::Thunes; + api::ConnectorData { + connector: Box::new(Thunes::new()), + connector_name: types::Connector::Thunes, + get_token: types::api::GetToken::Connector, + merchant_connector_id: None, + } + } + + fn get_auth_token(&self) -> types::ConnectorAuthType { + utils::to_connector_auth_type( + connector_auth::ConnectorAuthentication::new() + .thunes + .expect("Missing connector authentication configuration").into(), + ) + } + + fn get_name(&self) -> String { + "thunes".to_string() + } +} + +static CONNECTOR: ThunesTest = ThunesTest {}; + +fn get_default_payment_info() -> Option { + None +} + +fn payment_method_details() -> Option { + None +} + +// Cards Positive Tests +// Creates a payment using the manual capture flow (Non 3DS). +#[actix_web::test] +async fn should_only_authorize_payment() { + let response = CONNECTOR + .authorize_payment(payment_method_details(), get_default_payment_info()) + .await + .expect("Authorize payment response"); + assert_eq!(response.status, enums::AttemptStatus::Authorized); +} + +// Captures a payment using the manual capture flow (Non 3DS). +#[actix_web::test] +async fn should_capture_authorized_payment() { + let response = CONNECTOR + .authorize_and_capture_payment(payment_method_details(), None, get_default_payment_info()) + .await + .expect("Capture payment response"); + assert_eq!(response.status, enums::AttemptStatus::Charged); +} + +// Partially captures a payment using the manual capture flow (Non 3DS). +#[actix_web::test] +async fn should_partially_capture_authorized_payment() { + let response = CONNECTOR + .authorize_and_capture_payment( + payment_method_details(), + Some(types::PaymentsCaptureData { + amount_to_capture: 50, + ..utils::PaymentCaptureType::default().0 + }), + get_default_payment_info(), + ) + .await + .expect("Capture payment response"); + assert_eq!(response.status, enums::AttemptStatus::Charged); +} + +// Synchronizes a payment using the manual capture flow (Non 3DS). +#[actix_web::test] +async fn should_sync_authorized_payment() { + let authorize_response = CONNECTOR + .authorize_payment(payment_method_details(), get_default_payment_info()) + .await + .expect("Authorize payment response"); + let txn_id = utils::get_connector_transaction_id(authorize_response.response); + let response = CONNECTOR + .psync_retry_till_status_matches( + enums::AttemptStatus::Authorized, + Some(types::PaymentsSyncData { + connector_transaction_id: types::ResponseId::ConnectorTransactionId( + txn_id.unwrap(), + ), + ..Default::default() + }), + get_default_payment_info(), + ) + .await + .expect("PSync response"); + assert_eq!(response.status, enums::AttemptStatus::Authorized,); +} + +// Voids a payment using the manual capture flow (Non 3DS). +#[actix_web::test] +async fn should_void_authorized_payment() { + let response = CONNECTOR + .authorize_and_void_payment( + payment_method_details(), + Some(types::PaymentsCancelData { + connector_transaction_id: String::from(""), + cancellation_reason: Some("requested_by_customer".to_string()), + ..Default::default() + }), + get_default_payment_info(), + ) + .await + .expect("Void payment response"); + assert_eq!(response.status, enums::AttemptStatus::Voided); +} + +// Refunds a payment using the manual capture flow (Non 3DS). +#[actix_web::test] +async fn should_refund_manually_captured_payment() { + let response = CONNECTOR + .capture_payment_and_refund(payment_method_details(), None, None, get_default_payment_info()) + .await + .unwrap(); + assert_eq!( + response.response.unwrap().refund_status, + enums::RefundStatus::Success, + ); +} + +// Partially refunds a payment using the manual capture flow (Non 3DS). +#[actix_web::test] +async fn should_partially_refund_manually_captured_payment() { + let response = CONNECTOR + .capture_payment_and_refund( + payment_method_details(), + None, + Some(types::RefundsData { + refund_amount: 50, + ..utils::PaymentRefundType::default().0 + }), + get_default_payment_info(), + ) + .await + .unwrap(); + assert_eq!( + response.response.unwrap().refund_status, + enums::RefundStatus::Success, + ); +} + +// Synchronizes a refund using the manual capture flow (Non 3DS). +#[actix_web::test] +async fn should_sync_manually_captured_refund() { + let refund_response = CONNECTOR + .capture_payment_and_refund(payment_method_details(), None, None, get_default_payment_info()) + .await + .unwrap(); + let response = CONNECTOR + .rsync_retry_till_status_matches( + enums::RefundStatus::Success, + refund_response.response.unwrap().connector_refund_id, + None, + get_default_payment_info(), + ) + .await + .unwrap(); + assert_eq!( + response.response.unwrap().refund_status, + enums::RefundStatus::Success, + ); +} + +// Creates a payment using the automatic capture flow (Non 3DS). +#[actix_web::test] +async fn should_make_payment() { + let authorize_response = CONNECTOR.make_payment(payment_method_details(), get_default_payment_info()).await.unwrap(); + assert_eq!(authorize_response.status, enums::AttemptStatus::Charged); +} + +// Synchronizes a payment using the automatic capture flow (Non 3DS). +#[actix_web::test] +async fn should_sync_auto_captured_payment() { + let authorize_response = CONNECTOR.make_payment(payment_method_details(), get_default_payment_info()).await.unwrap(); + assert_eq!(authorize_response.status, enums::AttemptStatus::Charged); + let txn_id = utils::get_connector_transaction_id(authorize_response.response); + assert_ne!(txn_id, None, "Empty connector transaction id"); + let response = CONNECTOR + .psync_retry_till_status_matches( + enums::AttemptStatus::Charged, + Some(types::PaymentsSyncData { + connector_transaction_id: types::ResponseId::ConnectorTransactionId( + txn_id.unwrap(), + ), + capture_method: Some(enums::CaptureMethod::Automatic), + ..Default::default() + }), + get_default_payment_info(), + ) + .await + .unwrap(); + assert_eq!(response.status, enums::AttemptStatus::Charged,); +} + +// Refunds a payment using the automatic capture flow (Non 3DS). +#[actix_web::test] +async fn should_refund_auto_captured_payment() { + let response = CONNECTOR + .make_payment_and_refund(payment_method_details(), None, get_default_payment_info()) + .await + .unwrap(); + assert_eq!( + response.response.unwrap().refund_status, + enums::RefundStatus::Success, + ); +} + +// Partially refunds a payment using the automatic capture flow (Non 3DS). +#[actix_web::test] +async fn should_partially_refund_succeeded_payment() { + let refund_response = CONNECTOR + .make_payment_and_refund( + payment_method_details(), + Some(types::RefundsData { + refund_amount: 50, + ..utils::PaymentRefundType::default().0 + }), + get_default_payment_info(), + ) + .await + .unwrap(); + assert_eq!( + refund_response.response.unwrap().refund_status, + enums::RefundStatus::Success, + ); +} + +// Creates multiple refunds against a payment using the automatic capture flow (Non 3DS). +#[actix_web::test] +async fn should_refund_succeeded_payment_multiple_times() { + CONNECTOR + .make_payment_and_multiple_refund( + payment_method_details(), + Some(types::RefundsData { + refund_amount: 50, + ..utils::PaymentRefundType::default().0 + }), + get_default_payment_info(), + ) + .await; +} + +// Synchronizes a refund using the automatic capture flow (Non 3DS). +#[actix_web::test] +async fn should_sync_refund() { + let refund_response = CONNECTOR + .make_payment_and_refund(payment_method_details(), None, get_default_payment_info()) + .await + .unwrap(); + let response = CONNECTOR + .rsync_retry_till_status_matches( + enums::RefundStatus::Success, + refund_response.response.unwrap().connector_refund_id, + None, + get_default_payment_info(), + ) + .await + .unwrap(); + assert_eq!( + response.response.unwrap().refund_status, + enums::RefundStatus::Success, + ); +} + +// Cards Negative scenarios +// Creates a payment with incorrect CVC. +#[actix_web::test] +async fn should_fail_payment_for_incorrect_cvc() { + let response = CONNECTOR + .make_payment( + Some(types::PaymentsAuthorizeData { + payment_method_data: types::api::PaymentMethodData::Card(api::Card { + card_cvc: Secret::new("12345".to_string()), + ..utils::CCardType::default().0 + }), + ..utils::PaymentAuthorizeType::default().0 + }), + get_default_payment_info(), + ) + .await + .unwrap(); + assert_eq!( + response.response.unwrap_err().message, + "Your card's security code is invalid.".to_string(), + ); +} + +// Creates a payment with incorrect expiry month. +#[actix_web::test] +async fn should_fail_payment_for_invalid_exp_month() { + let response = CONNECTOR + .make_payment( + Some(types::PaymentsAuthorizeData { + payment_method_data: api::PaymentMethodData::Card(api::Card { + card_exp_month: Secret::new("20".to_string()), + ..utils::CCardType::default().0 + }), + ..utils::PaymentAuthorizeType::default().0 + }), + get_default_payment_info(), + ) + .await + .unwrap(); + assert_eq!( + response.response.unwrap_err().message, + "Your card's expiration month is invalid.".to_string(), + ); +} + +// Creates a payment with incorrect expiry year. +#[actix_web::test] +async fn should_fail_payment_for_incorrect_expiry_year() { + let response = CONNECTOR + .make_payment( + Some(types::PaymentsAuthorizeData { + payment_method_data: api::PaymentMethodData::Card(api::Card { + card_exp_year: Secret::new("2000".to_string()), + ..utils::CCardType::default().0 + }), + ..utils::PaymentAuthorizeType::default().0 + }), + get_default_payment_info(), + ) + .await + .unwrap(); + assert_eq!( + response.response.unwrap_err().message, + "Your card's expiration year is invalid.".to_string(), + ); +} + +// Voids a payment using automatic capture flow (Non 3DS). +#[actix_web::test] +async fn should_fail_void_payment_for_auto_capture() { + let authorize_response = CONNECTOR.make_payment(payment_method_details(), get_default_payment_info()).await.unwrap(); + assert_eq!(authorize_response.status, enums::AttemptStatus::Charged); + let txn_id = utils::get_connector_transaction_id(authorize_response.response); + assert_ne!(txn_id, None, "Empty connector transaction id"); + let void_response = CONNECTOR + .void_payment(txn_id.unwrap(), None, get_default_payment_info()) + .await + .unwrap(); + assert_eq!( + void_response.response.unwrap_err().message, + "You cannot cancel this PaymentIntent because it has a status of succeeded." + ); +} + +// Captures a payment using invalid connector payment id. +#[actix_web::test] +async fn should_fail_capture_for_invalid_payment() { + let capture_response = CONNECTOR + .capture_payment("123456789".to_string(), None, get_default_payment_info()) + .await + .unwrap(); + assert_eq!( + capture_response.response.unwrap_err().message, + String::from("No such payment_intent: '123456789'") + ); +} + +// Refunds a payment with refund amount higher than payment amount. +#[actix_web::test] +async fn should_fail_for_refund_amount_higher_than_payment_amount() { + let response = CONNECTOR + .make_payment_and_refund( + payment_method_details(), + Some(types::RefundsData { + refund_amount: 150, + ..utils::PaymentRefundType::default().0 + }), + get_default_payment_info(), + ) + .await + .unwrap(); + assert_eq!( + response.response.unwrap_err().message, + "Refund amount (₹1.50) is greater than charge amount (₹1.00)", + ); +} + +// Connector dependent test cases goes here + +// [#478]: add unit tests for non 3DS, wallets & webhooks in connector tests diff --git a/crates/test_utils/src/connector_auth.rs b/crates/test_utils/src/connector_auth.rs index a1261e6edb..68895e5876 100644 --- a/crates/test_utils/src/connector_auth.rs +++ b/crates/test_utils/src/connector_auth.rs @@ -77,6 +77,7 @@ pub struct ConnectorAuthentication { pub stripe: Option, pub taxjar: Option, pub threedsecureio: Option, + pub thunes: Option, pub stripe_au: Option, pub stripe_uk: Option, pub trustpay: Option, diff --git a/loadtest/config/development.toml b/loadtest/config/development.toml index 11a404e7c2..f352644ea7 100644 --- a/loadtest/config/development.toml +++ b/loadtest/config/development.toml @@ -148,6 +148,7 @@ stax.base_url = "https://apiprod.fattlabs.com/" stripe.base_url = "https://api.stripe.com/" taxjar.base_url = "https://api.sandbox.taxjar.com/v2/" threedsecureio.base_url = "https://service.sandbox.3dsecure.io" +thunes.base_url = "https://api.limonetikqualif.com/" stripe.base_url_file_upload = "https://files.stripe.com/" trustpay.base_url = "https://test-tpgw.trustpay.eu/" trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/" @@ -230,6 +231,7 @@ cards = [ "stripe", "taxjar", "threedsecureio", + "thunes", "trustpay", "tsys", "volt", diff --git a/scripts/add_connector.sh b/scripts/add_connector.sh index 0dd3b6434c..fb7252833d 100755 --- a/scripts/add_connector.sh +++ b/scripts/add_connector.sh @@ -6,7 +6,7 @@ function find_prev_connector() { git checkout $self cp $self $self.tmp # Add new connector to existing list and sort it - connectors=(aci adyen adyenplatform airwallex applepay authorizedotnet bambora bamboraapac bankofamerica billwerk bitpay bluesnap boku braintree cashtocode checkout coinbase cryptopay cybersource datatrans deutschebank dlocal dummyconnector ebanx fiserv fiservemea fiuu forte globalpay globepay gocardless gpayments helcim iatapay itaubank klarna mifinity mollie multisafepay netcetera nexinets nexixpay noon novalnet nuvei opayo opennode paybox payeezy payme payone paypal payu placetopay plaid powertranz prophetpay rapyd razorpay shift4 square stax stripe taxjar threedsecureio trustpay tsys volt wellsfargo wellsfargopayout wise worldline worldpay zsl "$1") + connectors=(aci adyen adyenplatform airwallex applepay authorizedotnet bambora bamboraapac bankofamerica billwerk bitpay bluesnap boku braintree cashtocode checkout coinbase cryptopay cybersource datatrans deutschebank dlocal dummyconnector ebanx fiserv fiservemea fiuu forte globalpay globepay gocardless gpayments helcim iatapay itaubank klarna mifinity mollie multisafepay netcetera nexinets nexixpay noon novalnet nuvei opayo opennode paybox payeezy payme payone paypal payu placetopay plaid powertranz prophetpay rapyd razorpay shift4 square stax stripe taxjar threedsecureio thunes trustpay tsys volt wellsfargo wellsfargopayout wise worldline worldpay zsl "$1") IFS=$'\n' sorted=($(sort <<<"${connectors[*]}")); unset IFS res=`echo ${sorted[@]}` sed -i'' -e "s/^ connectors=.*/ connectors=($res \"\$1\")/" $self.tmp