Skip to content
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

Add a transaction id generation by date #7

Open
wants to merge 2 commits into
base: 1.6
Choose a base branch
from

Conversation

JoMessina
Copy link

Convert the transaction id's methods to be an interface who returns an array with vads_trans_id and vads_trans_date. A new method by date is added to generate your transaction id.

Convert the order amount to include the decimals from the currency in a new non-decimal number.

@JoMessina JoMessina requested a review from ekyna as a code owner February 20, 2023 10:33
@JoMessina JoMessina changed the title 1.6 Add a transaction id generation by date Feb 20, 2023
…iRequestAction.php

Fix the interface and add a second method to generate transaction Id

Change calculation for the amount send to Payzen, Payzen need a non-decimal value for amount

Fork from ekyna/payum-payzen branch 1.6
* @return PayzenGatewayFactory
*/
public static function build(array $defaultConfig, GatewayFactoryInterface $coreGatewayFactory = null): PayzenGatewayFactory
public static function build(array $defaultConfig, GatewayFactoryInterface $coreGatewayFactory = null, TransactionIdInterface $transactionId = null): PayzenGatewayFactory
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not compatible with Payum/Core:
PayumBuilder::buildAddedGatewayFactories() won't give a value to $transationId argument.
I think default translation id generator should be defined in the default config.

@@ -42,7 +55,7 @@ protected function populateConfig(ArrayObject $config)
'payum.action.refund' => new Action\RefundAction(),
'payum.action.status' => new Action\StatusAction(),
'payum.action.notify' => new Action\NotifyAction(),
'payum.action.api.request' => new Action\Api\ApiRequestAction(),
'payum.action.api.request' => new Action\Api\ApiRequestAction($this->transactionId),
'payum.action.api.response' => new Action\Api\ApiResponseAction(),
Copy link
Owner

@ekyna ekyna Sep 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be possible to configure transaction id generator here. Something like:

            'payum.action.api.directory'      => sys_get_temp_dir(),
            'payum.action.api.id_generator'   => function(array $config) { 
                return new IdGeneratedByFile($config['payum.action.api.directory']) 
            },

then, when configuring api (around line 92), maybe you can do something like this:

            $config['payum.api'] = function (ArrayObject $config) {
                $api = new Api\Api();
                $api->setConfig($payzenConfig);
                $api->setIdGenerator($config['payum.action.api.id_generator']);
                return $api;
            };

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree too, when you are using Payum, it's better to inject what you need on the Action or on the Api services. Here it's better to just inject it into payum.action.api.request as @ekyna said.

@@ -42,7 +55,7 @@ protected function populateConfig(ArrayObject $config)
'payum.action.refund' => new Action\RefundAction(),
'payum.action.status' => new Action\StatusAction(),
'payum.action.notify' => new Action\NotifyAction(),
'payum.action.api.request' => new Action\Api\ApiRequestAction(),
'payum.action.api.request' => new Action\Api\ApiRequestAction($this->transactionId),
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inject transaction id generator into Api instance (see next comment) instead of ApiRequestAction .
ApiRequestAction is aware of Api (just give access to generator).

@costa-jeremy
Copy link

Hi !
The issue with the transaction_id is still present. Generally, payments between midnight and 2 AM are not working due to different times between our servers (French time) and the bank's servers.
What about the PR? Can we validate it? Or do problems still exist?
Thank you in advance.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants