-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(webhooks): add support for updating mandate details in webhooks flow #6523
Merged
Merged
Changes from 11 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a5db2af
add support for consuming webhooks mandate id
4483080
chore: run formatter
hyperswitch-bot[bot] 0236d92
clippy fix
73e41bd
resolve comments
1dcabec
chore: run formatter
hyperswitch-bot[bot] d586010
minor fix
b778ae4
revert comments
32c44e7
fix helper.rs
8fb5347
add loggers
9146edb
chore: run formatter
hyperswitch-bot[bot] 6f25eb8
Merge branch 'main' into webhook_fix
srujanchikke efe9117
resolve comments
cac8d1d
chore: run formatter
hyperswitch-bot[bot] 465aea0
revert few changes
f239f59
minor fix
c4d1714
chore: run formatter
hyperswitch-bot[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -42,7 +42,7 @@ use masking::{ExposeInterface, PeekInterface, Secret}; | |||||
use reqwest::multipart::Form; | ||||||
use serde::{Deserialize, Serialize}; | ||||||
use serde_json::Value; | ||||||
use transformers::{self as fiuu, FiuuWebhooksResponse}; | ||||||
use transformers::{self as fiuu, ExtraParameters, FiuuWebhooksResponse}; | ||||||
|
||||||
use crate::{ | ||||||
constants::headers, | ||||||
|
@@ -890,4 +890,46 @@ impl webhooks::IncomingWebhook for Fiuu { | |||||
} | ||||||
} | ||||||
} | ||||||
|
||||||
fn get_mandate_details( | ||||||
&self, | ||||||
request: &webhooks::IncomingWebhookRequestDetails<'_>, | ||||||
) -> CustomResult<Option<api_models::webhooks::ConnectorMandateDetails>, errors::ConnectorError> | ||||||
{ | ||||||
let header = utils::get_header_key_value("content-type", request.headers)?; | ||||||
let payload: FiuuWebhooksResponse = if header == "application/x-www-form-urlencoded" { | ||||||
serde_urlencoded::from_bytes::<FiuuWebhooksResponse>(request.body) | ||||||
.change_context(errors::ConnectorError::WebhookResourceObjectNotFound)? | ||||||
} else { | ||||||
request | ||||||
.body | ||||||
.parse_struct("fiuu::FiuuWebhooksResponse") | ||||||
.change_context(errors::ConnectorError::WebhookResourceObjectNotFound)? | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
}; | ||||||
match payload.clone() { | ||||||
FiuuWebhooksResponse::FiuuWebhookPaymentResponse(webhook_payment_response) => { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can directly parse it into FiuuWebhookPaymentResponse |
||||||
let mandate_reference = webhook_payment_response.extra_parameters.as_ref().and_then(|extra_p| { | ||||||
let mandate_token: Result<ExtraParameters, _> = serde_json::from_str(extra_p); | ||||||
match mandate_token { | ||||||
Ok(token) => { | ||||||
token.token.as_ref().map(|token| api_models::webhooks::ConnectorMandateDetails { | ||||||
connector_mandate_id:token.clone(), | ||||||
}) | ||||||
} | ||||||
Err(err) => { | ||||||
router_env::logger::warn!( | ||||||
"Failed to convert 'extraP' from fiuu webhook response to fiuu::ExtraParameters. \ | ||||||
Input: '{}', Error: {}", | ||||||
extra_p, | ||||||
err | ||||||
); | ||||||
None | ||||||
} | ||||||
} | ||||||
}); | ||||||
Ok(mandate_reference) | ||||||
} | ||||||
FiuuWebhooksResponse::FiuuWebhookRefundResponse(_webhook_refund_response) => Ok(None), | ||||||
} | ||||||
} | ||||||
} |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please move this to domain models