![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-payment/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; use Magento\Checkout\Model\ConfigProviderInterface; use Magento\Payment\Helper\Data as PaymentHelper; /** * Default implementation of credits card configuration provider. * Use this class to register payment method that supports credit cards. * Direct injection as a dependency or extending of this class is not recommended. * * @api * @since 100.0.2 */ class CcGenericConfigProvider implements ConfigProviderInterface { /** * @var CcConfig */ protected $ccConfig; /** * @var MethodInterface[] */ protected $methods = []; /** * @param CcConfig $ccConfig * @param PaymentHelper $paymentHelper * @param array $methodCodes */ public function __construct( CcConfig $ccConfig, PaymentHelper $paymentHelper, array $methodCodes = [] ) { $this->ccConfig = $ccConfig; foreach ($methodCodes as $code) { $this->methods[$code] = $paymentHelper->getMethodInstance($code); } } /** * @inheritdoc */ public function getConfig() { $config = []; foreach ($this->methods as $methodCode => $method) { if ($method->isAvailable()) { $config = array_merge_recursive($config, [ 'payment' => [ 'ccform' => [ 'availableTypes' => [$methodCode => $this->getCcAvailableTypes($methodCode)], 'months' => [$methodCode => $this->getCcMonths()], 'years' => [$methodCode => $this->getCcYears()], 'hasVerification' => [$methodCode => $this->hasVerification($methodCode)], 'cvvImageUrl' => [$methodCode => $this->getCvvImageUrl()] ] ] ]); } } return $config; } /** * Solo/switch card start years * * @return array * @deprecated 100.1.0 unused */ protected function getSsStartYears() { return $this->ccConfig->getSsStartYears(); } /** * Retrieve credit card expire months * * @return array */ protected function getCcMonths() { return $this->ccConfig->getCcMonths(); } /** * Retrieve credit card expire years * * @return array */ protected function getCcYears() { return $this->ccConfig->getCcYears(); } /** * Retrieve CVV tooltip image url * * @return string */ protected function getCvvImageUrl() { return $this->ccConfig->getCvvImageUrl(); } /** * Retrieve available credit card types * * @param string $methodCode * @return array */ protected function getCcAvailableTypes($methodCode) { $types = $this->ccConfig->getCcAvailableTypes(); $availableTypes = $this->methods[$methodCode]->getConfigData('cctypes'); if ($availableTypes) { $availableTypes = explode(',', $availableTypes); foreach (array_keys($types) as $code) { if (!in_array($code, $availableTypes)) { unset($types[$code]); } } } return $types; } /** * Retrieve has verification configuration * * @param string $methodCode * @return bool */ protected function hasVerification($methodCode) { $result = $this->ccConfig->hasVerification(); $configData = $this->methods[$methodCode]->getConfigData('useccv'); if ($configData !== null) { $result = (bool)$configData; } return $result; } /** * Whether switch/solo card type available * * @param string $methodCode * @return bool * @deprecated 100.1.0 unused */ protected function hasSsCardType($methodCode) { $ccTypes = $this->methods[$methodCode]->getConfigData('cctypes'); if ($ccTypes === null) { return false; } $availableTypes = explode(',', $ccTypes); $ssPresentations = array_intersect(['SS', 'SM', 'SO'], $availableTypes); if ($availableTypes && count($ssPresentations) > 0) { return true; } return false; } }