mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-03 13:30:39 +08:00
feat: Allow payment cancels for more statuses (#1027)
Co-authored-by: Sanchith Hegde <22217505+SanchithHegde@users.noreply.github.com>
This commit is contained in:
@ -53,6 +53,18 @@ impl<F: Send + Clone> GetTracker<F, PaymentData<F>, api::PaymentsCancelRequest>
|
|||||||
.await
|
.await
|
||||||
.to_not_found_response(errors::ApiErrorResponse::PaymentNotFound)?;
|
.to_not_found_response(errors::ApiErrorResponse::PaymentNotFound)?;
|
||||||
|
|
||||||
|
helpers::validate_payment_status_against_not_allowed_statuses(
|
||||||
|
&payment_intent.status,
|
||||||
|
&[
|
||||||
|
enums::IntentStatus::Failed,
|
||||||
|
enums::IntentStatus::Succeeded,
|
||||||
|
enums::IntentStatus::Cancelled,
|
||||||
|
enums::IntentStatus::Processing,
|
||||||
|
enums::IntentStatus::RequiresMerchantAction,
|
||||||
|
],
|
||||||
|
"cancelled",
|
||||||
|
)?;
|
||||||
|
|
||||||
let mut payment_attempt = db
|
let mut payment_attempt = db
|
||||||
.find_payment_attempt_by_payment_id_merchant_id_attempt_id(
|
.find_payment_attempt_by_payment_id_merchant_id_attempt_id(
|
||||||
payment_intent.payment_id.as_str(),
|
payment_intent.payment_id.as_str(),
|
||||||
@ -112,15 +124,7 @@ impl<F: Send + Clone> GetTracker<F, PaymentData<F>, api::PaymentsCancelRequest>
|
|||||||
.await
|
.await
|
||||||
.transpose()?;
|
.transpose()?;
|
||||||
|
|
||||||
match payment_intent.status {
|
Ok((
|
||||||
status if status != enums::IntentStatus::RequiresCapture => {
|
|
||||||
Err(errors::ApiErrorResponse::InvalidRequestData {
|
|
||||||
message: "You cannot cancel the payment that has not been authorized"
|
|
||||||
.to_string(),
|
|
||||||
}
|
|
||||||
.into())
|
|
||||||
}
|
|
||||||
_ => Ok((
|
|
||||||
Box::new(self),
|
Box::new(self),
|
||||||
PaymentData {
|
PaymentData {
|
||||||
flow: PhantomData,
|
flow: PhantomData,
|
||||||
@ -148,8 +152,7 @@ impl<F: Send + Clone> GetTracker<F, PaymentData<F>, api::PaymentsCancelRequest>
|
|||||||
connector_customer_id: None,
|
connector_customer_id: None,
|
||||||
},
|
},
|
||||||
None,
|
None,
|
||||||
)),
|
))
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -172,18 +175,37 @@ impl<F: Clone> UpdateTracker<F, PaymentData<F>, api::PaymentsCancelRequest> for
|
|||||||
F: 'b + Send,
|
F: 'b + Send,
|
||||||
{
|
{
|
||||||
let cancellation_reason = payment_data.payment_attempt.cancellation_reason.clone();
|
let cancellation_reason = payment_data.payment_attempt.cancellation_reason.clone();
|
||||||
payment_data.payment_attempt = db
|
let (intent_status_update, attempt_status_update) =
|
||||||
.update_payment_attempt_with_attempt_id(
|
if payment_data.payment_intent.status != enums::IntentStatus::RequiresCapture {
|
||||||
payment_data.payment_attempt,
|
let payment_intent_update = storage::PaymentIntentUpdate::PGStatusUpdate {
|
||||||
|
status: enums::IntentStatus::Cancelled,
|
||||||
|
};
|
||||||
|
(Some(payment_intent_update), enums::AttemptStatus::Voided)
|
||||||
|
} else {
|
||||||
|
(None, enums::AttemptStatus::VoidInitiated)
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(payment_intent_update) = intent_status_update {
|
||||||
|
payment_data.payment_intent = db
|
||||||
|
.update_payment_intent(
|
||||||
|
payment_data.payment_intent,
|
||||||
|
payment_intent_update,
|
||||||
|
storage_scheme,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.to_not_found_response(errors::ApiErrorResponse::PaymentNotFound)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
db.update_payment_attempt_with_attempt_id(
|
||||||
|
payment_data.payment_attempt.clone(),
|
||||||
storage::PaymentAttemptUpdate::VoidUpdate {
|
storage::PaymentAttemptUpdate::VoidUpdate {
|
||||||
status: enums::AttemptStatus::VoidInitiated,
|
status: attempt_status_update,
|
||||||
cancellation_reason,
|
cancellation_reason,
|
||||||
},
|
},
|
||||||
storage_scheme,
|
storage_scheme,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.to_not_found_response(errors::ApiErrorResponse::PaymentNotFound)?;
|
.to_not_found_response(errors::ApiErrorResponse::PaymentNotFound)?;
|
||||||
|
|
||||||
Ok((Box::new(self), payment_data))
|
Ok((Box::new(self), payment_data))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -623,7 +623,6 @@ pub async fn payments_cancel(
|
|||||||
let mut payload = json_payload.into_inner();
|
let mut payload = json_payload.into_inner();
|
||||||
let payment_id = path.into_inner();
|
let payment_id = path.into_inner();
|
||||||
payload.payment_id = payment_id;
|
payload.payment_id = payment_id;
|
||||||
|
|
||||||
api::server_wrap(
|
api::server_wrap(
|
||||||
flow,
|
flow,
|
||||||
state.get_ref(),
|
state.get_ref(),
|
||||||
|
|||||||
Reference in New Issue
Block a user