123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Braintree\Gateway\Request;
- use Magento\Braintree\Gateway\SubjectReader;
- use Magento\Payment\Gateway\Request\BuilderInterface;
- use Magento\Payment\Helper\Formatter;
- use Magento\Sales\Api\Data\TransactionInterface;
- use Magento\Sales\Model\Order\Payment;
- class RefundDataBuilder implements BuilderInterface
- {
- use Formatter;
- /**
- * @var SubjectReader
- */
- private $subjectReader;
- /**
- * Constructor
- *
- * @param SubjectReader $subjectReader
- */
- public function __construct(SubjectReader $subjectReader)
- {
- $this->subjectReader = $subjectReader;
- }
- /**
- * Builds ENV request
- *
- * @param array $buildSubject
- * @return array
- */
- public function build(array $buildSubject)
- {
- $paymentDO = $this->subjectReader->readPayment($buildSubject);
- /** @var Payment $payment */
- $payment = $paymentDO->getPayment();
- $amount = null;
- try {
- $amount = $this->formatPrice($this->subjectReader->readAmount($buildSubject));
- } catch (\InvalidArgumentException $e) {
- // pass
- }
- /*
- * we should remember that Payment sets Capture txn id of current Invoice into ParentTransactionId Field
- * We should also support previous implementations of Magento Braintree -
- * and cut off '-capture' postfix from transaction ID to support backward compatibility
- */
- $txnId = str_replace(
- '-' . TransactionInterface::TYPE_CAPTURE,
- '',
- $payment->getParentTransactionId()
- );
- return [
- 'transaction_id' => $txnId,
- PaymentDataBuilder::AMOUNT => $amount
- ];
- }
- }
|