-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1687 from magento-mpi/MPI-PR-2.2.2
[MPI][2.2.2] Bugfixes
- Loading branch information
Showing
92 changed files
with
1,564 additions
and
1,130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetClientToken.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
namespace Magento\Braintree\Controller\Adminhtml\Payment; | ||
|
||
use Magento\Backend\App\Action; | ||
use Magento\Backend\App\Action\Context; | ||
use Magento\Backend\Model\Session\Quote; | ||
use Magento\Braintree\Gateway\Config\Config; | ||
use Magento\Braintree\Gateway\Request\PaymentDataBuilder; | ||
use Magento\Braintree\Model\Adapter\BraintreeAdapterFactory; | ||
use Magento\Framework\Controller\ResultFactory; | ||
|
||
class GetClientToken extends Action | ||
{ | ||
const ADMIN_RESOURCE = 'Magento_Braintree::get_client_token'; | ||
|
||
/** | ||
* @var Config | ||
*/ | ||
private $config; | ||
|
||
/** | ||
* @var BraintreeAdapterFactory | ||
*/ | ||
private $adapterFactory; | ||
|
||
/** | ||
* @var Quote | ||
*/ | ||
private $quoteSession; | ||
|
||
/** | ||
* @param Context $context | ||
* @param Config $config | ||
* @param BraintreeAdapterFactory $adapterFactory | ||
* @param Quote $quoteSession | ||
*/ | ||
public function __construct( | ||
Context $context, | ||
Config $config, | ||
BraintreeAdapterFactory $adapterFactory, | ||
Quote $quoteSession | ||
) { | ||
parent::__construct($context); | ||
$this->config = $config; | ||
$this->adapterFactory = $adapterFactory; | ||
$this->quoteSession = $quoteSession; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function execute() | ||
{ | ||
$params = []; | ||
$response = $this->resultFactory->create(ResultFactory::TYPE_JSON); | ||
|
||
$storeId = $this->quoteSession->getStoreId(); | ||
$merchantAccountId = $this->config->getMerchantAccountId($storeId); | ||
if (!empty($merchantAccountId)) { | ||
$params[PaymentDataBuilder::MERCHANT_ACCOUNT_ID] = $merchantAccountId; | ||
} | ||
|
||
$clientToken = $this->adapterFactory->create($storeId) | ||
->generate($params); | ||
$response->setData(['clientToken' => $clientToken]); | ||
|
||
return $response; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.