1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Integration\Controller\Adminhtml\Integration;
- use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
- use Magento\Integration\Model\Integration as IntegrationModel;
- class TokensDialog extends \Magento\Integration\Controller\Adminhtml\Integration implements HttpGetActionInterface
- {
- /**
- * Set success message based on Integration activation or re-authorization.
- *
- * @param boolean $isReauthorize Is a re-authorization flow
- * @param string $integrationName Integration name
- * @return void
- */
- protected function _setActivationSuccessMsg($isReauthorize, $integrationName)
- {
- $integrationName = $this->escaper->escapeHtml($integrationName);
- $successMsg = $isReauthorize ? __(
- "The integration '%1' has been re-authorized.",
- $integrationName
- ) : __(
- "The integration '%1' has been activated.",
- $integrationName
- );
- $this->messageManager->addSuccess($successMsg);
- }
- /**
- * Show tokens popup for simple tokens
- *
- * @return void
- */
- public function execute()
- {
- try {
- $integrationId = $this->getRequest()->getParam(self::PARAM_INTEGRATION_ID);
- $integration = $this->_integrationService->get($integrationId);
- $clearExistingToken = (int)$this->getRequest()->getParam(self::PARAM_REAUTHORIZE, 0);
- if ($this->_oauthService->createAccessToken($integration->getConsumerId(), $clearExistingToken)) {
- $integration->setStatus(IntegrationModel::STATUS_ACTIVE)->save();
- }
- // Important to call get() once again - that will pull newly generated token
- $this->_registry->register(
- self::REGISTRY_KEY_CURRENT_INTEGRATION,
- $this->_integrationService->get($integrationId)->getData()
- );
- } catch (\Magento\Framework\Exception\LocalizedException $e) {
- $this->messageManager->addError($e->getMessage());
- $this->_redirect('*/*');
- return;
- } catch (\Exception $e) {
- $this->_logger->critical($e);
- $this->messageManager->addError(__('Internal error. Check exception log for details.'));
- $this->_redirect('*/*');
- return;
- }
- $this->_view->loadLayout(false);
- //This cannot precede loadlayout(false) else the messages will be removed
- $this->_setActivationSuccessMsg($clearExistingToken, $integration->getName());
- $this->_view->renderLayout();
- }
- }
|