Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_cfg_common
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_cfg_common
Commits
84793d16
Commit
84793d16
authored
4 years ago
by
Liam Morland
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-4229: Protect home page delete page
parent
f9712587
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!63
ISTWCMS-4229: Protect home page
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/Access/UwNodeAccessCheck.php
+13
-0
13 additions, 0 deletions
src/Access/UwNodeAccessCheck.php
src/Routing/UwNodeAccessRouteSubscriber.php
+2
-0
2 additions, 0 deletions
src/Routing/UwNodeAccessRouteSubscriber.php
uw_cfg_common.module
+5
-0
5 additions, 0 deletions
uw_cfg_common.module
with
20 additions
and
0 deletions
src/Access/UwNodeAccessCheck.php
+
13
−
0
View file @
84793d16
...
...
@@ -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'
);
...
...
This diff is collapsed.
Click to expand it.
src/Routing/UwNodeAccessRouteSubscriber.php
+
2
−
0
View file @
84793d16
...
...
@@ -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
))
{
...
...
This diff is collapsed.
Click to expand it.
uw_cfg_common.module
+
5
−
0
View file @
84793d16
...
...
@@ -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
;
}
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment