Add signature handling for dLocal API requests#175
Merged
armando-rodriguez-cko merged 1 commit intoJun 23, 2025
Merged
Conversation
robert-goheen-cko
approved these changes
Jun 23, 2025
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request introduces support for adding signatures to forwarded HTTP requests, specifically integrating dLocal's signature mechanism. It includes updates to the
forwardpackage to define new types and methods for signatures and modifies theDestinationRequeststruct to support optional signature configurations. Additionally, corresponding test cases are added to validate the new functionality.Enhancements to Signature Support:
SignatureTypeandAbstractSignatureinterface: AddedSignatureTypeandAbstractSignatureto represent and manage different signature mechanisms. DefineddlocalSignatureas an implementation ofAbstractSignature. (forward/forward.go, [1] [2]DestinationRequeststruct updates: Introduced a newSignaturefield inDestinationRequestto optionally include signature configurations in forwarded requests. (forward/forward.go, forward/forward.goL75-R114)NewDlocalSignaturefunction to create instances ofdlocalSignaturewith predefined type. (forward/forward.go, forward/forward.goR194-R208)Testing Additions:
getForwardRequestIdSourcetest to include aDlocalSignatureinstance, ensuring the signature functionality is properly validated. (test/forward_test.go, [1] [2]