1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Payment\Model;
use Magento\Payment\Api\Data\PaymentMethodInterface;
/**
* Payment method list class.
*/
class PaymentMethodList implements \Magento\Payment\Api\PaymentMethodListInterface
{
/**
* @var \Magento\Payment\Api\Data\PaymentMethodInterfaceFactory
*/
private $methodFactory;
/**
* @var \Magento\Payment\Helper\Data
*/
private $helper;
/**
* @param \Magento\Payment\Api\Data\PaymentMethodInterfaceFactory $methodFactory
* @param \Magento\Payment\Helper\Data $helper
*/
public function __construct(
\Magento\Payment\Api\Data\PaymentMethodInterfaceFactory $methodFactory,
\Magento\Payment\Helper\Data $helper
) {
$this->methodFactory = $methodFactory;
$this->helper = $helper;
}
/**
* {@inheritdoc}
*/
public function getList($storeId)
{
$methodsCodes = array_keys($this->helper->getPaymentMethods());
$methodsInstances = array_map(
function ($code) {
return $this->helper->getMethodInstance($code);
},
$methodsCodes
);
$methodsInstances = array_filter($methodsInstances, function (MethodInterface $method) {
return !($method instanceof \Magento\Payment\Model\Method\Substitution);
});
@uasort(
$methodsInstances,
function (MethodInterface $a, MethodInterface $b) use ($storeId) {
return (int)$a->getConfigData('sort_order', $storeId) - (int)$b->getConfigData('sort_order', $storeId);
}
);
$methodList = array_map(
function (MethodInterface $methodInstance) use ($storeId) {
return $this->methodFactory->create([
'code' => (string)$methodInstance->getCode(),
'title' => (string)$methodInstance->getTitle(),
'storeId' => (int)$storeId,
'isActive' => (bool)$methodInstance->isActive($storeId)
]);
},
$methodsInstances
);
return array_values($methodList);
}
/**
* {@inheritdoc}
*/
public function getActiveList($storeId)
{
$methodList = array_filter(
$this->getList($storeId),
function (PaymentMethodInterface $method) {
return $method->getIsActive();
}
);
return array_values($methodList);
}
}