Magento 2 - 以编程方式将信用卡添加到Vault(BrainTree)

时间:2017-10-07 15:25:21

标签: magento2

我需要在Magento 2.1.5中以编程方式(BrainTree)将信用卡详细信息添加到Vault中

基本上我想要的是在登录后,将有一个单独的部分保存卡。该客户用于添加/编辑/删除所有信用卡详细信息。

以下代码用于列出客户保存的所有信用卡

 use Magento\Vault\Api\PaymentTokenManagementInterface;
 use Magento\Customer\Model\Session;

 ... 

 // Get the customer id (currently logged in user)
 $customerId = $this->session->getCustomer()->getId();

 // Card list
 $cardList = $this->paymentTokenManagement->getListByCustomerId($customerId);

现在我想要的是如何将卡详情添加到保险柜?

以下是核心php中添加卡的代码

 $result = Braintree_Customer::create(array(
            'firstName' => 'first name',
            'lastName' => 'last name',
            'company' => 'company',
            'email' => 'xxxx@gmail.com',
            'phone' => '1234567890',
            'creditCard' => array(
                'cardholderName' => 'xxx xxx',
                'number' => '4000 0000 0000 0002 ',
                'expirationMonth' => '10',
                'expirationYear' => 2020,
                'cvv' => '123',
                'billingAddress' => array(
                    'firstName' => 'My First name',
                    'lastName' => 'My Last name'
                )
            )
        ));

但我怎样才能在magento 2中做同样的过程。

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

首先,您必须从卡片数据中创建付款代币:

use Magento\Vault\Model\CreditCardTokenFactory;
...

$paymentToken = $this->creditCardTokenFactory->create();
$paymentToken->setExpiresAt('Y-m-d 00:00:00');
$paymentToken->setGatewayToken('card_112371K7-28BB-4O3X-CCG9-1034JHK27D88');
$paymentToken->setTokenDetails([
  'type'              => 'Visa',
  'maskedCC'          => '1111',
  'expirationDate'    => '06/2019'
]);
$paymentToken->setIsActive(true);
$paymentToken->setIsVisible(true);
$paymentToken->setPaymentMethodCode('your_payment_method_code');
$paymentToken->setCustomerId($customerId);
$paymentToken->setPublicHash($this->generatePublicHash($paymentToken));

然后您可以保存付款令牌:

use Magento\Vault\Api\PaymentTokenRepositoryInterface;
...

$this->paymentTokenRepository->save($paymentToken);

这只是一个你可以开始的例子。在现实世界中,您还需要检查令牌是否已经存在,并且还要在卡上尝试付款授权以确保其实际可用且有效。

为了检查支付令牌是否存在,您可以使用:

use Magento\Vault\Api\PaymentTokenManagementInterface;
...
$this->paymentTokenManagement->getByPublicHash( $paymentToken->getPublicHash(), $paymentToken->getCustomerId() );

您可以查看此处提到的核心Magento 2类,以了解有关可用于付款令牌处理的功能的更多信息。 祝你好运!