Skip to content
Snippets Groups Projects
Commit 84793d16 authored by Liam Morland's avatar Liam Morland
Browse files

ISTWCMS-4229: Protect home page delete page

parent f9712587
No related branches found
No related tags found
1 merge request!63ISTWCMS-4229: Protect home page
......@@ -7,6 +7,7 @@ use Drupal\Core\Routing\Access\AccessInterface;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\menu_admin_per_menu\Access\MenuAdminPerMenuAccess;
use Drupal\uw_cfg_common\Service\UWService;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
......@@ -42,6 +43,18 @@ class UwNodeAccessCheck implements AccessInterface {
}
}
// Node delete pages.
if ($route_name === 'entity.node.delete_form') {
$node = $route_match->getParameter('node');
// Only those with permission may delete the home page.
if ($node && UWService::nodeIsHomePage((int) $node->id())) {
return $account->hasPermission('bypass home page protection') ? AccessResult::allowed() : AccessResult::forbidden();
}
else {
return AccessResult::allowed();
}
}
// Get the node object, which is in the route match variable.
$node = $route_match->getParameter('node');
......
......@@ -20,6 +20,8 @@ class UwNodeAccessRouteSubscriber extends RouteSubscriberBase {
'entity.node.canonical',
// Menu link edit pages.
'menu_ui.link_edit',
// Node delete pages.
'entity.node.delete_form',
];
foreach ($access_route_names as $route_name) {
if ($route = $collection->get($route_name)) {
......
......@@ -310,6 +310,11 @@ function uw_cfg_common_form_node_uw_ct_web_page_edit_form_alter(array &$form, Fo
$form['menu']['#type'] = 'container';
$form['menu']['enabled']['#access'] = FALSE;
$form['menu']['link']['#access'] = FALSE;
// Hide delete link if no access. This should happen by itself, but does not.
if (!$form['actions']['delete']['#url']->access()) {
$form['actions']['delete']['#access'] = FALSE;
}
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment