Open pmzandbergen opened 1 month ago
Hello @pmzandbergen,
Thank you for creating this Github issue and highlighting this issue about the implementation again.
As you mentioned, it's a long going discussion and there is yet no solution. That was a decision that we needed to make due to security concerns as state data carries payment data. On the other hand, we are are of the incomplete flow causes frustration on both our merchants and system integrators.
Let me discuss this issue with our internal security team and get back to you with a solution.
Best Regards, Can
In the meanwhile we're trying to fix this by using the (deprecated) setPaymentMethodAndPlaceOrder
mutation. Unfortunately we encounter a bug in the Adyen module using this deprecated mutation, I'll create a separate issue for this.
Hi @pmzandbergen I have same issue with codegen and yoga server , you can probably fix the bug with plugin on Adyen\Payment\Helper\StateData::SetStateData()
: https://github.com/Adyen/adyen-magento2/issues/2573#issuecomment-2034023214
I think, you can also use adyenSaveStateData
mutation :)
Hello @dimitriBouteille,
As you've mentioned, adyenSaveStateData
mutation might solve this issue as a temporary workaround. But, please keep in mind that this mutation has been introduced for gift card payments only. Otherwise, credit card data might be stored in the database. We are currently trying to discourage saving card data (state data) in the DB for security concerns and to introduce a concrete way to solve this issue.
Best Regards, Can
@candemiralp if I could make a suggestion: You could choose to use client side encryption and store the encrypted data server side. The key used for encryption can, for example, be saved in local storage (the browser).
The data then should be save, even if the server (database + code) is compromised. An additional cron cleaning up expired state data could be added as an extra safety measure.
Original bug report: https://github.com/Adyen/adyen-magento2/issues/1267
The original issue has been closed without providing a (solid) solution. The provided workaround doesn't work in all situations, for example when some kind of Apollo middleware is being used (e.g. Apollo Server). The client / frontend can still bundle the mutations in a single request, but the middleware will use multiple requests to Magento. Since the state data isn't being stored the
placeOrder
mutation will fail.The documentation states "use the
placeAdyenOrder
mutation". It does not mention theplaceOrder
mutation is broken.Deviating from standards is sometimes necessary, but is that really the case here? Why is saving the state data, only temporary and encrypted if necessary, an issue?