Access Co-Authors to Own Draft Nodes

Created on 31 March 2025, 3 days ago

Problem/Motivation

I've created a view to users (co-authors and authors) can manage own nodes, but if node is in draft state (no published), co-author can't access to edit node.

Steps to reproduce

Proposed resolution

/**
* Allow coauthors view nodes on draft state
*/
function node_co_authors_node_access(\Drupal\node\NodeInterface $node, $op, \Drupal\Core\Session\AccountInterface $account) {
if ($op === 'view' && !$node->isPublished()) {
// get node authors
if ($node->hasField('field_co_authors')) {
$coauthors = $node->get('field_co_authors')->getValue();
$coauthor_ids = array_column($coauthors, 'target_id');

// if it's co-author allow access
if (in_array($account->id(), $coauthor_ids)) {
return \Drupal\Core\Access\AccessResult::allowed();
}
}
}
return \Drupal\Core\Access\AccessResult::neutral();
}

Remaining tasks

User interface changes

API changes

Data model changes

Feature request
Status

Active

Version

1.2

Component

Code

Created by

🇦🇩Andorra fgarciap

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024