1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\AuthorizenetAcceptjs\Gateway\Request;
- use Magento\AuthorizenetAcceptjs\Gateway\SubjectReader;
- use Magento\Payment\Gateway\Request\BuilderInterface;
- use Magento\Sales\Model\Order\Payment;
- /**
- * Adds the meta transaction information to the request
- */
- class AcceptFdsDataBuilder implements BuilderInterface
- {
- /**
- * @var SubjectReader
- */
- private $subjectReader;
- /**
- * @param SubjectReader $subjectReader
- */
- public function __construct(SubjectReader $subjectReader)
- {
- $this->subjectReader = $subjectReader;
- }
- /**
- * @inheritdoc
- */
- public function build(array $buildSubject): array
- {
- $paymentDO = $this->subjectReader->readPayment($buildSubject);
- $payment = $paymentDO->getPayment();
- $data = [];
- if ($payment instanceof Payment) {
- $authorizationTransaction = $payment->getAuthorizationTransaction();
- if (empty($authorizationTransaction)) {
- $transactionId = $payment->getLastTransId();
- } else {
- $transactionId = $authorizationTransaction->getParentTxnId();
- if (empty($transactionId)) {
- $transactionId = $authorizationTransaction->getTxnId();
- }
- }
- $data = [
- 'heldTransactionRequest' => [
- 'action' => 'approve',
- 'refTransId' => $transactionId,
- ]
- ];
- }
- return $data;
- }
- }
|