mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 12:06:56 +08:00
feat(payments): add support for profile aggregates (#5845)
This commit is contained in:
@ -3234,11 +3234,12 @@ pub async fn get_payment_filters(
|
||||
pub async fn get_aggregates_for_payments(
|
||||
state: SessionState,
|
||||
merchant: domain::MerchantAccount,
|
||||
profile_id_list: Option<Vec<id_type::ProfileId>>,
|
||||
time_range: api::TimeRange,
|
||||
) -> RouterResponse<api::PaymentsAggregateResponse> {
|
||||
let db = state.store.as_ref();
|
||||
let intent_status_with_count = db
|
||||
.get_intent_status_with_count(merchant.get_id(), &time_range)
|
||||
.get_intent_status_with_count(merchant.get_id(), profile_id_list, &time_range)
|
||||
.await
|
||||
.to_not_found_response(errors::ApiErrorResponse::PaymentNotFound)?;
|
||||
|
||||
|
||||
@ -1640,10 +1640,11 @@ impl PaymentIntentInterface for KafkaStore {
|
||||
async fn get_intent_status_with_count(
|
||||
&self,
|
||||
merchant_id: &id_type::MerchantId,
|
||||
profile_id_list: Option<Vec<id_type::ProfileId>>,
|
||||
time_range: &api_models::payments::TimeRange,
|
||||
) -> error_stack::Result<Vec<(common_enums::IntentStatus, i64)>, errors::DataStorageError> {
|
||||
self.diesel_store
|
||||
.get_intent_status_with_count(merchant_id, time_range)
|
||||
.get_intent_status_with_count(merchant_id, profile_id_list, time_range)
|
||||
.await
|
||||
}
|
||||
|
||||
|
||||
@ -547,6 +547,10 @@ impl Payments {
|
||||
.service(web::resource("/filter").route(web::post().to(get_filters_for_payments)))
|
||||
.service(web::resource("/v2/filter").route(web::get().to(get_payment_filters)))
|
||||
.service(web::resource("/aggregate").route(web::get().to(get_payments_aggregates)))
|
||||
.service(
|
||||
web::resource("/profile/aggregate")
|
||||
.route(web::get().to(get_payments_aggregates_profile)),
|
||||
)
|
||||
.service(
|
||||
web::resource("/v2/profile/filter")
|
||||
.route(web::get().to(get_payment_filters_profile)),
|
||||
|
||||
@ -1341,7 +1341,7 @@ pub async fn get_payments_aggregates(
|
||||
&req,
|
||||
payload,
|
||||
|state, auth: auth::AuthenticationData, req, _| {
|
||||
payments::get_aggregates_for_payments(state, auth.merchant_account, req)
|
||||
payments::get_aggregates_for_payments(state, auth.merchant_account, None, req)
|
||||
},
|
||||
&auth::JWTAuth {
|
||||
permission: Permission::PaymentRead,
|
||||
@ -2074,3 +2074,34 @@ impl GetLockingInput for payment_types::PaymentsManualUpdateRequest {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[instrument(skip_all, fields(flow = ?Flow::PaymentsAggregate))]
|
||||
#[cfg(feature = "olap")]
|
||||
pub async fn get_payments_aggregates_profile(
|
||||
state: web::Data<app::AppState>,
|
||||
req: actix_web::HttpRequest,
|
||||
payload: web::Query<payment_types::TimeRange>,
|
||||
) -> impl Responder {
|
||||
let flow = Flow::PaymentsAggregate;
|
||||
let payload = payload.into_inner();
|
||||
Box::pin(api::server_wrap(
|
||||
flow,
|
||||
state,
|
||||
&req,
|
||||
payload,
|
||||
|state, auth: auth::AuthenticationData, req, _| {
|
||||
payments::get_aggregates_for_payments(
|
||||
state,
|
||||
auth.merchant_account,
|
||||
auth.profile_id.map(|profile_id| vec![profile_id]),
|
||||
req,
|
||||
)
|
||||
},
|
||||
&auth::JWTAuth {
|
||||
permission: Permission::PaymentRead,
|
||||
minimum_entity_level: EntityType::Profile,
|
||||
},
|
||||
api_locking::LockAction::NotApplicable,
|
||||
))
|
||||
.await
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user