* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShopBundle\Controller\Admin\Configure\AdvancedParameters; use PrestaShop\PrestaShop\Core\Form\FormHandlerInterface; use PrestaShop\PrestaShop\Core\Grid\Definition\Factory\LogGridDefinitionFactory; use PrestaShop\PrestaShop\Core\Search\Filters\LogsFilters; use PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController; use PrestaShopBundle\Entity\Repository\LogRepository; use PrestaShopBundle\Security\Annotation\AdminSecurity; use PrestaShopBundle\Security\Annotation\DemoRestricted; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Responsible of "Configure > Advanced Parameters > Logs" page display. */ class LogsController extends FrameworkBundleAdminController { /** * @var string the controller name for routing */ public const CONTROLLER_NAME = 'AdminLogs'; /** * @AdminSecurity("is_granted('read', request.get('_legacy_controller'))", message="Access denied.") * * @param LogsFilters $filters the list of filters from the request * * @return Response */ public function indexAction(LogsFilters $filters) { $gridLogFactory = $this->get('prestashop.core.grid.log_factory'); $grid = $gridLogFactory->getGrid($filters); $logsByEmailForm = $this->getFormHandler()->getForm(); return $this->render('@PrestaShop/Admin/Configure/AdvancedParameters/LogsPage/index.html.twig', [ 'layoutHeaderToolbarBtn' => [], 'layoutTitle' => $this->trans('Logs', 'Admin.Navigation.Menu'), 'requireBulkActions' => false, 'showContentHeader' => true, 'enableSidebar' => true, 'help_link' => $this->generateSidebarLink('AdminLogs'), 'logsByEmailForm' => $logsByEmailForm->createView(), 'grid' => $this->presentGrid($grid), ]); } /** * @AdminSecurity( * "is_granted('read', request.get('_legacy_controller')) && is_granted('update', request.get('_legacy_controller')) && is_granted('create', request.get('_legacy_controller')) && is_granted('delete', request.get('_legacy_controller'))", * message="You do not have permission to update this.", redirectRoute="admin_logs_index" * ) * @DemoRestricted(redirectRoute="admin_logs_index") * * @param Request $request * * @return RedirectResponse */ public function searchAction(Request $request) { $this->dispatchHook('actionAdminLogsControllerPostProcessBefore', ['controller' => $this]); $responseBuilder = $this->get('prestashop.bundle.grid.response_builder'); return $responseBuilder->buildSearchResponse( $this->get('prestashop.core.grid.definition.factory.logs'), $request, LogGridDefinitionFactory::GRID_ID, 'admin_logs_index' ); } /** * @AdminSecurity( * "is_granted('update', request.get('_legacy_controller')) && is_granted('create', request.get('_legacy_controller')) && is_granted('delete', request.get('_legacy_controller'))", * message="You do not have permission to update this.", redirectRoute="admin_logs_index" * ) * @DemoRestricted(redirectRoute="admin_logs_index") * * @param Request $request * * @return RedirectResponse */ public function saveSettingsAction(Request $request) { $logsByEmailForm = $this->getFormHandler()->getForm(); $logsByEmailForm->handleRequest($request); $this->dispatchHook('actionAdminLogsControllerPostProcessBefore', ['controller' => $this]); if ($logsByEmailForm->isSubmitted()) { $data = $logsByEmailForm->getData(); $saveErrors = $this->getFormHandler()->save($data); if (0 === count($saveErrors)) { $this->addFlash('success', $this->trans('Successful update', 'Admin.Notifications.Success')); return $this->redirectToRoute('admin_logs_index'); } $this->flashErrors($saveErrors); } return $this->redirectToRoute('admin_logs_index'); } /** * @AdminSecurity("is_granted('delete', request.get('_legacy_controller'))", message="You do not have permission to update this.", redirectRoute="admin_logs_index") * * @return RedirectResponse * * @throws \Doctrine\DBAL\Exception\InvalidArgumentException */ public function deleteAllAction() { $this->getLogRepository()->deleteAll(); $this->addFlash('success', $this->trans('Successful update', 'Admin.Notifications.Success')); return $this->redirectToRoute('admin_logs_index'); } /** * @return FormHandlerInterface the form handler to set the severity level */ private function getFormHandler(): FormHandlerInterface { return $this->get('prestashop.adapter.logs.form_handler'); } /** * @return LogRepository the repository to retrieve logs from database */ private function getLogRepository() { return $this->get('prestashop.core.admin.log.repository'); } }