mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
refactor(mandate): move repeated code to a separate function within Mandate impl (#8772)
This commit is contained in:
@ -661,6 +661,8 @@ impl MandateInterface for MockDb {
|
||||
_storage_scheme: MerchantStorageScheme,
|
||||
) -> CustomResult<storage_types::Mandate, errors::StorageError> {
|
||||
let mut mandates = self.mandates.lock().await;
|
||||
let customer_user_agent_extended = mandate_new.get_customer_user_agent_extended();
|
||||
|
||||
let mandate = storage_types::Mandate {
|
||||
mandate_id: mandate_new.mandate_id.clone(),
|
||||
customer_id: mandate_new.customer_id,
|
||||
@ -688,10 +690,7 @@ impl MandateInterface for MockDb {
|
||||
connector_mandate_ids: mandate_new.connector_mandate_ids,
|
||||
merchant_connector_id: mandate_new.merchant_connector_id,
|
||||
updated_by: mandate_new.updated_by,
|
||||
// Using customer_user_agent as a fallback
|
||||
customer_user_agent_extended: mandate_new
|
||||
.customer_user_agent_extended
|
||||
.or_else(|| mandate_new.customer_user_agent.clone()),
|
||||
customer_user_agent_extended,
|
||||
};
|
||||
mandates.push(mandate.clone());
|
||||
Ok(mandate)
|
||||
|
||||
@ -95,6 +95,7 @@ impl MandateResponseExt for MandateResponse {
|
||||
let payment_method_type = payment_method
|
||||
.get_payment_method_subtype()
|
||||
.map(|pmt| pmt.to_string());
|
||||
let user_agent = mandate.get_user_agent_extended().unwrap_or_default();
|
||||
Ok(Self {
|
||||
mandate_id: mandate.mandate_id,
|
||||
customer_acceptance: Some(api::payments::CustomerAcceptance {
|
||||
@ -106,11 +107,7 @@ impl MandateResponseExt for MandateResponse {
|
||||
accepted_at: mandate.customer_accepted_at,
|
||||
online: Some(api::payments::OnlineMandate {
|
||||
ip_address: mandate.customer_ip_address,
|
||||
// Using customer_user_agent as a fallback
|
||||
user_agent: mandate
|
||||
.customer_user_agent_extended
|
||||
.or(mandate.customer_user_agent)
|
||||
.unwrap_or_default(),
|
||||
user_agent,
|
||||
}),
|
||||
}),
|
||||
card,
|
||||
|
||||
Reference in New Issue
Block a user