12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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\Model\PassthroughDataObject;
- use Magento\Payment\Gateway\Request\BuilderInterface;
- /**
- * Adds data to the request that can be used in the response
- */
- class PassthroughDataBuilder implements BuilderInterface
- {
- /**
- * @var PassthroughDataObject
- */
- private $passthroughData;
- /**
- * @param PassthroughDataObject $passthroughData
- */
- public function __construct(PassthroughDataObject $passthroughData)
- {
- $this->passthroughData = $passthroughData;
- }
- /**
- * @inheritdoc
- */
- public function build(array $buildSubject): array
- {
- $fields = [];
- foreach ($this->passthroughData->getData() as $key => $value) {
- $fields[] = [
- 'name' => $key,
- 'value' => $value
- ];
- }
- if (!empty($fields)) {
- return [
- 'transactionRequest' => [
- 'userFields' => [
- 'userField' => $fields
- ]
- ]
- ];
- }
- return [];
- }
- }
|