-
Notifications
You must be signed in to change notification settings - Fork 12
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
base: 1.6
Are you sure you want to change the base?
Conversation
…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 |
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.
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(), |
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.
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;
};
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.
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), |
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.
Inject transaction id generator into Api instance (see next comment) instead of ApiRequestAction .
ApiRequestAction is aware of Api (just give access to generator).
Hi ! |
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.