Skip to content

Commit

Permalink
feat(events): add audit event for CompleteAuthorize
Browse files Browse the repository at this point in the history
  • Loading branch information
hex1c committed Oct 14, 2024
1 parent b713948 commit 135d297
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ use crate::{
PaymentData,
},
},
events::audit_events::{AuditEvent, AuditEventType},
routes::{app::ReqState, SessionState},
services,
types::{
Expand Down Expand Up @@ -461,7 +462,7 @@ impl<F: Clone> UpdateTracker<F, PaymentData<F>, api::PaymentsRequest> for Comple
async fn update_trackers<'b>(
&'b self,
state: &'b SessionState,
_req_state: ReqState,
req_state: ReqState,
mut payment_data: PaymentData<F>,
_customer: Option<domain::Customer>,
storage_scheme: storage_enums::MerchantStorageScheme,
Expand Down Expand Up @@ -491,6 +492,12 @@ impl<F: Clone> UpdateTracker<F, PaymentData<F>, api::PaymentsRequest> for Comple
.await
.to_not_found_response(errors::ApiErrorResponse::PaymentNotFound)?;

req_state
.event_context
.event(AuditEvent::new(AuditEventType::PaymentCompleteAuthorize))
.with(payment_data.to_event())
.emit();

payment_data.payment_intent = updated_payment_intent;
Ok((Box::new(self), payment_data))
}
Expand Down
2 changes: 2 additions & 0 deletions crates/router/src/events/audit_events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ pub enum AuditEventType {
capture_amount: Option<MinorUnit>,
multiple_capture_count: Option<i16>,
},
PaymentCompleteAuthorize,
}

#[derive(Debug, Clone, Serialize)]
Expand Down Expand Up @@ -65,6 +66,7 @@ impl Event for AuditEvent {
AuditEventType::RefundSuccess => "refund_success",
AuditEventType::RefundFail => "refund_fail",
AuditEventType::PaymentCancelled { .. } => "payment_cancelled",
AuditEventType::PaymentCompleteAuthorize => "payment_complete_authorize",
};
format!(
"{event_type}-{}",
Expand Down

0 comments on commit 135d297

Please sign in to comment.