Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..
Decoded Output download
<?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;
}
}
?>
Did this file decode correctly?
Original Code
<?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;
}
}
Function Calls
| None |
Stats
| MD5 | a3f288c825eb8db8c649aa5d8edcaa70 |
| Eval Count | 0 |
| Decode Time | 114 ms |