123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?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\AuthorizenetAcceptjs\Model\PassthroughDataObject;
- use Magento\Payment\Gateway\Request\BuilderInterface;
- use Magento\Sales\Model\Order\Payment;
- /**
- * Adds the meta transaction information to the request
- */
- class SaleDataBuilder implements BuilderInterface
- {
- private const REQUEST_AUTH_AND_CAPTURE = 'authCaptureTransaction';
- /**
- * @var SubjectReader
- */
- private $subjectReader;
- /**
- * @var PassthroughDataObject
- */
- private $passthroughData;
- /**
- * @param SubjectReader $subjectReader
- * @param PassthroughDataObject $passthroughData
- */
- public function __construct(
- SubjectReader $subjectReader,
- PassthroughDataObject $passthroughData
- ) {
- $this->subjectReader = $subjectReader;
- $this->passthroughData = $passthroughData;
- }
- /**
- * @inheritdoc
- */
- public function build(array $buildSubject): array
- {
- $paymentDO = $this->subjectReader->readPayment($buildSubject);
- $payment = $paymentDO->getPayment();
- $data = [];
- if ($payment instanceof Payment) {
- $data = [
- 'transactionRequest' => [
- 'transactionType' => self::REQUEST_AUTH_AND_CAPTURE,
- ]
- ];
- $this->passthroughData->setData(
- 'transactionType',
- $data['transactionRequest']['transactionType']
- );
- }
- return $data;
- }
- }
|