123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Braintree\Gateway\Response;
- use Braintree\Transaction;
- use Magento\Braintree\Gateway\Config\Config;
- use Magento\Braintree\Gateway\SubjectReader;
- use Magento\Framework\App\ObjectManager;
- use Magento\Framework\Serialize\Serializer\Json;
- use Magento\Payment\Gateway\Response\HandlerInterface;
- use Magento\Payment\Model\InfoInterface;
- use Magento\Sales\Api\Data\OrderPaymentExtensionInterface;
- use Magento\Sales\Api\Data\OrderPaymentExtensionInterfaceFactory;
- use Magento\Vault\Api\Data\PaymentTokenFactoryInterface;
- use Magento\Vault\Api\Data\PaymentTokenInterface;
- /**
- * Vault Details Handler
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class VaultDetailsHandler implements HandlerInterface
- {
- /**
- * @var PaymentTokenFactoryInterface
- */
- protected $paymentTokenFactory;
- /**
- * @var OrderPaymentExtensionInterfaceFactory
- */
- protected $paymentExtensionFactory;
- /**
- * @var SubjectReader
- */
- protected $subjectReader;
- /**
- * @var Config
- */
- protected $config;
- /**
- * @var Json
- */
- private $serializer;
- /**
- * VaultDetailsHandler constructor.
- *
- * @param PaymentTokenFactoryInterface $paymentTokenFactory
- * @param OrderPaymentExtensionInterfaceFactory $paymentExtensionFactory
- * @param Config $config
- * @param SubjectReader $subjectReader
- * @param Json|null $serializer
- * @throws \RuntimeException
- */
- public function __construct(
- PaymentTokenFactoryInterface $paymentTokenFactory,
- OrderPaymentExtensionInterfaceFactory $paymentExtensionFactory,
- Config $config,
- SubjectReader $subjectReader,
- Json $serializer = null
- ) {
- $this->paymentTokenFactory = $paymentTokenFactory;
- $this->paymentExtensionFactory = $paymentExtensionFactory;
- $this->config = $config;
- $this->subjectReader = $subjectReader;
- $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class);
- }
- /**
- * @inheritdoc
- */
- public function handle(array $handlingSubject, array $response)
- {
- $paymentDO = $this->subjectReader->readPayment($handlingSubject);
- $transaction = $this->subjectReader->readTransaction($response);
- $payment = $paymentDO->getPayment();
- // add vault payment token entity to extension attributes
- $paymentToken = $this->getVaultPaymentToken($transaction);
- if (null !== $paymentToken) {
- $extensionAttributes = $this->getExtensionAttributes($payment);
- $extensionAttributes->setVaultPaymentToken($paymentToken);
- }
- }
- /**
- * Get vault payment token entity
- *
- * @param \Braintree\Transaction $transaction
- * @return PaymentTokenInterface|null
- */
- protected function getVaultPaymentToken(Transaction $transaction)
- {
- // Check token existing in gateway response
- $token = $transaction->creditCardDetails->token;
- if (empty($token)) {
- return null;
- }
- /** @var PaymentTokenInterface $paymentToken */
- $paymentToken = $this->paymentTokenFactory->create(PaymentTokenFactoryInterface::TOKEN_TYPE_CREDIT_CARD);
- $paymentToken->setGatewayToken($token);
- $paymentToken->setExpiresAt($this->getExpirationDate($transaction));
- $paymentToken->setTokenDetails($this->convertDetailsToJSON([
- 'type' => $this->getCreditCardType($transaction->creditCardDetails->cardType),
- 'maskedCC' => $transaction->creditCardDetails->last4,
- 'expirationDate' => $transaction->creditCardDetails->expirationDate
- ]));
- return $paymentToken;
- }
- /**
- * @param Transaction $transaction
- * @return string
- */
- private function getExpirationDate(Transaction $transaction)
- {
- $expDate = new \DateTime(
- $transaction->creditCardDetails->expirationYear
- . '-'
- . $transaction->creditCardDetails->expirationMonth
- . '-'
- . '01'
- . ' '
- . '00:00:00',
- new \DateTimeZone('UTC')
- );
- $expDate->add(new \DateInterval('P1M'));
- return $expDate->format('Y-m-d 00:00:00');
- }
- /**
- * Convert payment token details to JSON
- * @param array $details
- * @return string
- */
- private function convertDetailsToJSON($details)
- {
- $json = $this->serializer->serialize($details);
- return $json ? $json : '{}';
- }
- /**
- * Get type of credit card mapped from Braintree
- *
- * @param string $type
- * @return array
- */
- private function getCreditCardType($type)
- {
- $replaced = str_replace(' ', '-', strtolower($type));
- $mapper = $this->config->getCcTypesMapper();
- return $mapper[$replaced];
- }
- /**
- * Get payment extension attributes
- * @param InfoInterface $payment
- * @return OrderPaymentExtensionInterface
- */
- private function getExtensionAttributes(InfoInterface $payment)
- {
- $extensionAttributes = $payment->getExtensionAttributes();
- if (null === $extensionAttributes) {
- $extensionAttributes = $this->paymentExtensionFactory->create();
- $payment->setExtensionAttributes($extensionAttributes);
- }
- return $extensionAttributes;
- }
- }
|