![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-asynchronous-operations/Controller/Adminhtml/Bulk/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AsynchronousOperations\Controller\Adminhtml\Bulk; use Magento\AsynchronousOperations\Model\BulkManagement; use Magento\AsynchronousOperations\Model\BulkNotificationManagement; use Magento\Backend\App\Action\Context; use Magento\Backend\Model\View\Result\Redirect; use Magento\Backend\App\Action; use Magento\AsynchronousOperations\Model\AccessValidator; use Magento\Framework\Controller\ResultFactory; /** * Class Bulk Retry Controller */ class Retry extends Action { /** * @var BulkManagement */ private $bulkManagement; /** * @var BulkNotificationManagement */ private $notificationManagement; /** * @var \Magento\AsynchronousOperations\Model\AccessValidator */ private $accessValidator; /** * Retry constructor. * @param Context $context * @param BulkManagement $bulkManagement * @param BulkNotificationManagement $notificationManagement * @param AccessValidator $accessValidator */ public function __construct( Context $context, BulkManagement $bulkManagement, BulkNotificationManagement $notificationManagement, AccessValidator $accessValidator ) { parent::__construct($context); $this->bulkManagement = $bulkManagement; $this->notificationManagement = $notificationManagement; $this->accessValidator = $accessValidator; } /** * @inheritDoc */ protected function _isAllowed() { return $this->_authorization->isAllowed('Magento_Logging::system_magento_logging_bulk_operations') && $this->accessValidator->isAllowed($this->getRequest()->getParam('uuid')); } /** * {@inheritdoc} */ public function execute() { $bulkUuid = $this->getRequest()->getParam('uuid'); $isAjax = $this->getRequest()->getParam('isAjax'); $operationsToRetry = (array)$this->getRequest()->getParam('operations_to_retry', []); $errorCodes = []; foreach ($operationsToRetry as $operationData) { if (isset($operationData['error_code'])) { $errorCodes[] = (int)$operationData['error_code']; } } $affectedOperations = $this->bulkManagement->retryBulk($bulkUuid, $errorCodes); $this->notificationManagement->ignoreBulks([$bulkUuid]); if (!$isAjax) { $this->messageManager->addSuccessMessage( __('%1 item(s) have been scheduled for update."', $affectedOperations) ); /** @var Redirect $result */ $result = $this->resultRedirectFactory->create(); $result->setPath('bulk/index'); } else { /** @var \Magento\Framework\Controller\Result\Json $result */ $result = $this->resultFactory->create(ResultFactory::TYPE_JSON); $result->setHttpResponseCode(200); $response = new \Magento\Framework\DataObject(); $response->setError(0); $result->setData($response); } return $result; } }