Skip to content
Snippets Groups Projects
Commit 6fb71f02 authored by catch's avatar catch
Browse files

Issue #3226487 by acbramley, bbrala, Berdir, AaronMcHale, darvanen, catch,...

Issue #3226487 by acbramley, bbrala, Berdir, AaronMcHale, darvanen, catch, daffie, mstrelan: Always allow access to revisions based on access/permissions, not on the count of revisions
parent 406dfbc6
No related branches found
No related tags found
No related merge requests found
......@@ -108,14 +108,7 @@ public function checkAccess(MediaInterface $media, AccountInterface $account, $o
return FALSE;
}
// There should be at least two revisions. If the revision ID of the
// given media item and the revision ID of the default revision differ,
// then we already have two different revisions so there is no need for a
// separate database check.
if ($media->isDefaultRevision() && ($this->countDefaultLanguageRevisions($media) == 1)) {
$this->access[$cid] = FALSE;
}
elseif ($account->hasPermission('administer media')) {
if ($account->hasPermission('administer media')) {
$this->access[$cid] = TRUE;
}
else {
......
......@@ -37,9 +37,9 @@ public function testRevisions() {
]);
$media->save();
// You can't access the revision page when there is only 1 revision.
// You can access the revision page when there is only 1 revision.
$this->drupalGet('media/' . $media->id() . '/revisions/' . $media->getRevisionId() . '/view');
$assert->statusCodeEquals(403);
$assert->statusCodeEquals(200);
// Create some revisions.
$media_revisions = [];
......
......@@ -119,31 +119,20 @@ public function checkAccess(NodeInterface $node, AccountInterface $account, $op
$this->access[$cid] = FALSE;
return FALSE;
}
// If the revisions checkbox is selected for the content type, display the
// revisions tab.
$bundle_entity_type = $node->getEntityType()->getBundleEntityType();
$bundle_entity = \Drupal::entityTypeManager()->getStorage($bundle_entity_type)->load($bundle);
if ($bundle_entity->shouldCreateNewRevision() && $op === 'view') {
// If this is the default revision, return access denied for revert or
// delete operations.
if ($node->isDefaultRevision() && ($op === 'update' || $op === 'delete')) {
$this->access[$cid] = FALSE;
}
elseif ($account->hasPermission('administer nodes')) {
$this->access[$cid] = TRUE;
}
else {
// There should be at least two revisions. If the vid of the given node
// and the vid of the default revision differ, then we already have two
// different revisions so there is no need for a separate database
// check. Also, if you try to revert to or delete the default revision,
// that's not good.
if ($node->isDefaultRevision() && ($this->nodeStorage->countDefaultLanguageRevisions($node) == 1 || $op === 'update' || $op === 'delete')) {
$this->access[$cid] = FALSE;
}
elseif ($account->hasPermission('administer nodes')) {
$this->access[$cid] = TRUE;
}
else {
// First check the access to the default revision and finally, if the
// node passed in is not the default revision then check access to
// that, too.
$this->access[$cid] = $this->nodeAccess->access($this->nodeStorage->load($node->id()), $op, $account) && ($node->isDefaultRevision() || $this->nodeAccess->access($node, $op, $account));
}
// First check the access to the default revision and finally, if the
// node passed in is not the default revision then check access to
// that, too.
$this->access[$cid] = $this->nodeAccess->access($this->nodeStorage->load($node->id()), $op, $account) && ($node->isDefaultRevision() || $this->nodeAccess->access($node, $op, $account));
}
}
......
......@@ -145,6 +145,11 @@ protected function setUp(): void {
* Checks node revision related operations.
*/
public function testRevisions() {
// Access to the revision page for a node with 1 revision is allowed.
$node = $this->drupalCreateNode();
$this->drupalGet("node/" . $node->id() . "/revisions/" . $node->getRevisionId() . "/view");
$this->assertSession()->statusCodeEquals(200);
$node_storage = $this->container->get('entity_type.manager')->getStorage('node');
$nodes = $this->nodes;
$logs = $this->revisionLogs;
......
......@@ -75,7 +75,7 @@ public function testDisplayRevisionTab() {
$this->submitForm($edit, 'Save');
$this->assertSession()->addressEquals($node->toUrl());
// Verify revisions exist since the content type has revisions enabled.
// Verify revisions exist.
$this->assertSession()->linkExists('Revisions');
// Verify the checkbox is checked on the node edit form.
......@@ -89,42 +89,6 @@ public function testDisplayRevisionTab() {
$this->assertSession()->addressEquals($node->toUrl());
$this->assertSession()->linkExists('Revisions');
// Unset page revision setting 'create new revision'. This will mean new
// revisions are not created by default when the node is edited.
$type = NodeType::load('page');
$type->setNewRevision(FALSE);
$type->save();
// Create the node.
$node = $this->drupalCreateNode();
// Verify the checkbox is unchecked on the node edit form.
$this->drupalGet('node/' . $node->id() . '/edit');
$this->assertSession()->checkboxNotChecked('edit-revision');
// Submit the form without changing the checkbox.
$edit = [];
$this->drupalGet('node/' . $node->id() . '/edit');
$this->submitForm($edit, 'Save');
$this->assertSession()->addressEquals($node->toUrl());
// Verify that no link to revisions is displayed since the type
// has the 'create new revision' setting unset.
$this->assertSession()->linkNotExists('Revisions');
// Verify the checkbox is unchecked on the node edit form.
$this->drupalGet('node/' . $node->id() . '/edit');
$this->assertSession()->checkboxNotChecked('edit-revision');
// Check the 'create new revision' checkbox and save the node.
$edit = ['revision' => TRUE];
$this->drupalGet('node/' . $node->id() . '/edit');
$this->submitForm($edit, 'Save');
$this->assertSession()->addressEquals($node->toUrl());
// Verify that the link is displayed since a new revision is created and
// the 'create new revision' checkbox on the node is checked.
$this->assertSession()->linkExists('Revisions');
}
}
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