- Issue created by @lpeidro
- 🇪🇸Spain lpeidro Madrid
The problem was in this part of the code in the class EntityRender:
protected function setDataTargetFromRoute($target) { if (empty($target->getPath())) { return; } try { // @phpstan-ignore-next-line $route_match = \Drupal::service('router.no_access_checks')->match($target->getPath()); } catch (\Exception $e) { $target->setSubcategory('broken-link'); return; } // It is a view route. if (isset($route_match['view_id'])) { $target->setEntityType('view'); $target->setEntityId($route_match['view_id'] . '.' . $route_match['display_id']); return; } // This case apply with entity canonical routes. $route_parts = explode('.', $route_match['_route']); if (count($route_parts) === 3 && $route_parts[0] === 'entity' && $route_parts[2] === 'canonical') { $entity_id = ''; $entity = $route_parts[1]; if (isset($route_match[$entity]) && $route_match[$entity] instanceof EntityInterface) { $entity_id = $route_match[$entity]->id(); } $target->setEntityType($entity); $target->setEntityId((string) $entity_id); } }
The taxonomy term page is built using a view. For this reason, when the code detected that the view_id parameter was set in the $route_match variable, it handled the link as a view, without considering other parameters such as route_name.
When a taxonomy term had an alias, the entity was processed earlier, and this method was not called.
I have modified the code to be more precise in this aspect:
protected function setDataTargetFromRoute($target) { if (empty($target->getPath())) { return; } try { // @phpstan-ignore-next-line $route_match = \Drupal::service('router.no_access_checks')->match($target->getPath()); } catch (\Exception $e) { $target->setSubcategory('broken-link'); return; } if (empty($route_match['_route'])) { $target->setSubcategory('broken-link'); return; } // @todo Maybe here is possible to get as well the entity object if (str_starts_with($route_match['_route'], 'view.')) { $target->setEntityType('view'); $target->setEntityId($route_match['view_id'] . '.' . $route_match['display_id']); return; } // This case apply with entity canonical routes. $route_parts = explode('.', $route_match['_route']); if (count($route_parts) > 1) { $entity_id = ''; $entity = $route_parts[1]; if (isset($route_match[$entity]) && $route_match[$entity] instanceof EntityInterface) { $entity_id = $route_match[$entity]->id(); $entity = $route_match[$entity]->getEntityTypeId(); } $target->setEntityType($entity); $target->setEntityId((string) $entity_id); } }
- 🇪🇸Spain lpeidro Madrid
It is ready to review and to merge. But I am not create unit test for this case. Maybe we can create a new issue to generate the unit tests.
- 🇪🇸Spain lpeidro Madrid
I’m using this issue to introduce two minor changes:
- Restrict access to the ability to launch the Batch.
- Add the subcategory field and filter to the Entity Mesh view of nodes.
It works as expected.
I merge the issue. - 1141beb9 committed on 1.x
Issue #3512879: Add suncategory field and filter in entity mesh node...
- 1141beb9 committed on 1.x
- 9a03fa7c committed on 1.x
Issue #3512879: Add administer permisión to the batch form
- 9a03fa7c committed on 1.x
-
eduardo morales alberti →
committed 938e4137 on 1.x
Issue #3512879 by lpeidro, eduardo morales alberti: False access-denied-...
-
eduardo morales alberti →
committed 938e4137 on 1.x
-
eduardo morales alberti →
committed d4020b2f on 1.x
Issue #3512879 by lpeidro, eduardo morales alberti: False access-denied-...
-
eduardo morales alberti →
committed d4020b2f on 1.x
- 🇪🇸Spain GeduR
After testing it with real data, I have found some use cases where the taxonomy terms are found as access-denied because a view is detected instead of the taxonomy term itself (see image)
- 🇪🇸Spain lpeidro Madrid
There are many cases to manage. To avoid reducing the cases, a method has been implemented as the first one executed to detect whether the route corresponds to an entity route in the most flexible way possible, regardless of the entity type.
To achieve this, we use two criteria:
- The route name starts with "entity".
- There is a parameter of type entity converter.
Additionally, this parameter provides the key to retrieving the entity from the $route_match variable.
Ready for validation.
-
eduardo morales alberti →
committed 9d663de2 on 1.x authored by
lpeidro →
Resolve #3512879 "False access denied ii"
-
eduardo morales alberti →
committed 9d663de2 on 1.x authored by
lpeidro →