-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(analytics): add
customer_id
as filter for payment intents (#6344)
- Loading branch information
Showing
8 changed files
with
190 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
161 changes: 161 additions & 0 deletions
161
crates/analytics/src/payment_intents/metrics/payment_processed_amount.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
use std::collections::HashSet; | ||
|
||
use api_models::analytics::{ | ||
payment_intents::{ | ||
PaymentIntentDimensions, PaymentIntentFilters, PaymentIntentMetricsBucketIdentifier, | ||
}, | ||
Granularity, TimeRange, | ||
}; | ||
use common_utils::errors::ReportSwitchExt; | ||
use diesel_models::enums as storage_enums; | ||
use error_stack::ResultExt; | ||
use time::PrimitiveDateTime; | ||
|
||
use super::PaymentIntentMetricRow; | ||
use crate::{ | ||
enums::AuthInfo, | ||
query::{Aggregate, GroupByClause, QueryBuilder, QueryFilter, SeriesBucket, ToSql, Window}, | ||
types::{AnalyticsCollection, AnalyticsDataSource, MetricsError, MetricsResult}, | ||
}; | ||
|
||
#[derive(Default)] | ||
pub(super) struct PaymentProcessedAmount; | ||
|
||
#[async_trait::async_trait] | ||
impl<T> super::PaymentIntentMetric<T> for PaymentProcessedAmount | ||
where | ||
T: AnalyticsDataSource + super::PaymentIntentMetricAnalytics, | ||
PrimitiveDateTime: ToSql<T>, | ||
AnalyticsCollection: ToSql<T>, | ||
Granularity: GroupByClause<T>, | ||
Aggregate<&'static str>: ToSql<T>, | ||
Window<&'static str>: ToSql<T>, | ||
{ | ||
async fn load_metrics( | ||
&self, | ||
dimensions: &[PaymentIntentDimensions], | ||
auth: &AuthInfo, | ||
filters: &PaymentIntentFilters, | ||
granularity: &Option<Granularity>, | ||
time_range: &TimeRange, | ||
pool: &T, | ||
) -> MetricsResult<HashSet<(PaymentIntentMetricsBucketIdentifier, PaymentIntentMetricRow)>> | ||
{ | ||
let mut query_builder: QueryBuilder<T> = | ||
QueryBuilder::new(AnalyticsCollection::PaymentIntent); | ||
|
||
let mut dimensions = dimensions.to_vec(); | ||
|
||
dimensions.push(PaymentIntentDimensions::PaymentIntentStatus); | ||
|
||
for dim in dimensions.iter() { | ||
query_builder.add_select_column(dim).switch()?; | ||
} | ||
|
||
query_builder | ||
.add_select_column(Aggregate::Count { | ||
field: None, | ||
alias: Some("count"), | ||
}) | ||
.switch()?; | ||
|
||
query_builder | ||
.add_select_column("attempt_count == 1 as first_attempt") | ||
.switch()?; | ||
|
||
query_builder.add_select_column("currency").switch()?; | ||
|
||
query_builder | ||
.add_select_column(Aggregate::Sum { | ||
field: "amount", | ||
alias: Some("total"), | ||
}) | ||
.switch()?; | ||
|
||
query_builder | ||
.add_select_column(Aggregate::Min { | ||
field: "created_at", | ||
alias: Some("start_bucket"), | ||
}) | ||
.switch()?; | ||
|
||
query_builder | ||
.add_select_column(Aggregate::Max { | ||
field: "created_at", | ||
alias: Some("end_bucket"), | ||
}) | ||
.switch()?; | ||
|
||
filters.set_filter_clause(&mut query_builder).switch()?; | ||
|
||
auth.set_filter_clause(&mut query_builder).switch()?; | ||
|
||
time_range | ||
.set_filter_clause(&mut query_builder) | ||
.attach_printable("Error filtering time range") | ||
.switch()?; | ||
|
||
for dim in dimensions.iter() { | ||
query_builder | ||
.add_group_by_clause(dim) | ||
.attach_printable("Error grouping by dimensions") | ||
.switch()?; | ||
} | ||
|
||
query_builder | ||
.add_group_by_clause("attempt_count") | ||
.attach_printable("Error grouping by attempt_count") | ||
.switch()?; | ||
|
||
query_builder | ||
.add_group_by_clause("currency") | ||
.attach_printable("Error grouping by currency") | ||
.switch()?; | ||
|
||
if let Some(granularity) = granularity.as_ref() { | ||
granularity | ||
.set_group_by_clause(&mut query_builder) | ||
.attach_printable("Error adding granularity") | ||
.switch()?; | ||
} | ||
|
||
query_builder | ||
.add_filter_clause( | ||
PaymentIntentDimensions::PaymentIntentStatus, | ||
storage_enums::IntentStatus::Succeeded, | ||
) | ||
.switch()?; | ||
|
||
query_builder | ||
.execute_query::<PaymentIntentMetricRow, _>(pool) | ||
.await | ||
.change_context(MetricsError::QueryBuildingError)? | ||
.change_context(MetricsError::QueryExecutionFailure)? | ||
.into_iter() | ||
.map(|i| { | ||
Ok(( | ||
PaymentIntentMetricsBucketIdentifier::new( | ||
None, | ||
i.currency.as_ref().map(|i| i.0), | ||
i.profile_id.clone(), | ||
TimeRange { | ||
start_time: match (granularity, i.start_bucket) { | ||
(Some(g), Some(st)) => g.clip_to_start(st)?, | ||
_ => time_range.start_time, | ||
}, | ||
end_time: granularity.as_ref().map_or_else( | ||
|| Ok(time_range.end_time), | ||
|g| i.end_bucket.map(|et| g.clip_to_end(et)).transpose(), | ||
)?, | ||
}, | ||
), | ||
i, | ||
)) | ||
}) | ||
.collect::<error_stack::Result< | ||
HashSet<(PaymentIntentMetricsBucketIdentifier, PaymentIntentMetricRow)>, | ||
crate::query::PostProcessingError, | ||
>>() | ||
.change_context(MetricsError::PostProcessingFailure) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters