12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\CurrencySymbol\Controller\Adminhtml\System\Currency;
- use Magento\Framework\App\Action\HttpGetActionInterface;
- use Magento\Framework\App\Action\HttpPostActionInterface as HttpPostActionInterface;
- use Magento\Framework\Exception\LocalizedException;
- use Magento\Framework\Controller\ResultFactory;
- use Magento\CurrencySymbol\Controller\Adminhtml\System\Currency as CurrencyAction;
- class FetchRates extends CurrencyAction implements HttpGetActionInterface, HttpPostActionInterface
- {
- /**
- * Fetch rates action
- *
- * @return \Magento\Backend\Model\View\Result\Redirect
- */
- public function execute()
- {
- /** @var \Magento\Backend\Model\Session $backendSession */
- $backendSession = $this->_objectManager->get(\Magento\Backend\Model\Session::class);
- try {
- $service = $this->getRequest()->getParam('rate_services');
- $this->_getSession()->setCurrencyRateService($service);
- if (!$service) {
- throw new LocalizedException(__('The Import Service is incorrect. Verify the service and try again.'));
- }
- try {
- /** @var \Magento\Directory\Model\Currency\Import\ImportInterface $importModel */
- $importModel = $this->_objectManager->get(\Magento\Directory\Model\Currency\Import\Factory::class)
- ->create($service);
- } catch (\Exception $e) {
- throw new LocalizedException(
- __("The import model can't be initialized. Verify the model and try again.")
- );
- }
- $rates = $importModel->fetchRates();
- $errors = $importModel->getMessages();
- if (sizeof($errors) > 0) {
- foreach ($errors as $error) {
- $this->messageManager->addWarning($error);
- }
- $this->messageManager->addWarning(
- __('Click "Save" to apply the rates we found.')
- );
- } else {
- $this->messageManager->addSuccess(__('Click "Save" to apply the rates we found.'));
- }
- $backendSession->setRates($rates);
- } catch (\Exception $e) {
- $this->messageManager->addError($e->getMessage());
- }
- /** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */
- $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT);
- return $resultRedirect->setPath('adminhtml/*/');
- }
- }
|