Skip to content
Snippets Groups Projects
Commit 4db92877 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2868362 by Berdir, Ginovski, dawehner, Wim Leers, alexpott: HAL...

Issue #2868362 by Berdir, Ginovski, dawehner, Wim Leers, alexpott: HAL RelationLinkManager caches and returns entity type definition object instead of id
parent 186dcc07
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -100,17 +100,26 @@ public function getRelationInternalIds($relation_uri, $context = []) { ...@@ -100,17 +100,26 @@ public function getRelationInternalIds($relation_uri, $context = []) {
* Context from the normalizer/serializer operation. * Context from the normalizer/serializer operation.
* *
* @return array * @return array
* An array of typed data ids (entity_type, bundle, and field name) keyed * An array of typed data ids (entity_type_id, bundle, and field name) keyed
* by corresponding relation URI. * by corresponding relation URI. For backwards compatibility, the
* entity_type key returns the full entity type object, this will be removed
* before Drupal 9.0.
*/ */
protected function getRelations($context = []) { protected function getRelations($context = []) {
$cid = 'hal:links:relations'; $cid = 'hal:links:relations';
$cache = $this->cache->get($cid); $cache = $this->cache->get($cid);
if (!$cache) { if (!$cache) {
$this->writeCache($context); $data = $this->writeCache($context);
$cache = $this->cache->get($cid); }
else {
$data = $cache->data;
}
// @todo Remove this in Drupal 9.0.
foreach ($data as $relation_uri => $ids) {
$data[$relation_uri]['entity_type'] = $this->entityManager->getDefinition($ids['entity_type_id']);
} }
return $cache->data; return $data;
} }
/** /**
...@@ -118,6 +127,10 @@ protected function getRelations($context = []) { ...@@ -118,6 +127,10 @@ protected function getRelations($context = []) {
* *
* @param array $context * @param array $context
* Context from the normalizer/serializer operation. * Context from the normalizer/serializer operation.
*
* @return array
* An array of typed data ids (entity_type_id, bundle, and field name) keyed
* by corresponding relation URI.
*/ */
protected function writeCache($context = []) { protected function writeCache($context = []) {
$data = []; $data = [];
...@@ -128,7 +141,7 @@ protected function writeCache($context = []) { ...@@ -128,7 +141,7 @@ protected function writeCache($context = []) {
foreach ($this->entityManager->getFieldDefinitions($entity_type->id(), $bundle) as $field_definition) { foreach ($this->entityManager->getFieldDefinitions($entity_type->id(), $bundle) as $field_definition) {
$relation_uri = $this->getRelationUri($entity_type->id(), $bundle, $field_definition->getName(), $context); $relation_uri = $this->getRelationUri($entity_type->id(), $bundle, $field_definition->getName(), $context);
$data[$relation_uri] = [ $data[$relation_uri] = [
'entity_type' => $entity_type, 'entity_type_id' => $entity_type->id(),
'bundle' => $bundle, 'bundle' => $bundle,
'field_name' => $field_definition->getName(), 'field_name' => $field_definition->getName(),
]; ];
...@@ -139,6 +152,7 @@ protected function writeCache($context = []) { ...@@ -139,6 +152,7 @@ protected function writeCache($context = []) {
// These URIs only change when field info changes, so cache it permanently // These URIs only change when field info changes, so cache it permanently
// and only clear it when the fields cache is cleared. // and only clear it when the fields cache is cleared.
$this->cache->set('hal:links:relations', $data, Cache::PERMANENT, ['entity_field_info']); $this->cache->set('hal:links:relations', $data, Cache::PERMANENT, ['entity_field_info']);
return $data;
} }
} }
...@@ -32,7 +32,9 @@ public function getRelationUri($entity_type, $bundle, $field_name, $context = [] ...@@ -32,7 +32,9 @@ public function getRelationUri($entity_type, $bundle, $field_name, $context = []
* Relation URI (or IANA link relation type) to transform into internal IDs. * Relation URI (or IANA link relation type) to transform into internal IDs.
* *
* @return array * @return array
* Array with keys 'entity_type', 'bundle' and 'field_name'. * Array with keys 'entity_type_id', 'bundle' and 'field_name'. For
* backwards compatibility, the entity_type key returns the full entity type
* object, this will be removed before Drupal 9.0.
*/ */
public function getRelationInternalIds($relation_uri); public function getRelationInternalIds($relation_uri);
......
...@@ -3,7 +3,10 @@ ...@@ -3,7 +3,10 @@
namespace Drupal\Tests\hal\Kernel; namespace Drupal\Tests\hal\Kernel;
use Drupal\Core\Url; use Drupal\Core\Url;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\KernelTests\KernelTestBase; use Drupal\KernelTests\KernelTestBase;
use Drupal\node\Entity\NodeType;
/** /**
* @coversDefaultClass \Drupal\hal\LinkManager\LinkManager * @coversDefaultClass \Drupal\hal\LinkManager\LinkManager
...@@ -14,13 +17,30 @@ class HalLinkManagerTest extends KernelTestBase { ...@@ -14,13 +17,30 @@ class HalLinkManagerTest extends KernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public static $modules = ['hal', 'hal_test', 'serialization', 'system']; public static $modules = [ 'hal', 'hal_test', 'serialization', 'system', 'node', 'user', 'field'];
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp() {
parent::setUp(); parent::setUp();
$this->installEntitySchema('node');
NodeType::create([
'type' => 'page',
])->save();
FieldStorageConfig::create([
'entity_type' => 'node',
'type' => 'entity_reference',
'field_name' => 'field_ref',
])->save();
FieldConfig::create([
'entity_type' => 'node',
'bundle' => 'page',
'field_name' => 'field_ref',
])->save();
\Drupal::service('router.builder')->rebuild(); \Drupal::service('router.builder')->rebuild();
} }
...@@ -58,6 +78,23 @@ public function testGetRelationUri() { ...@@ -58,6 +78,23 @@ public function testGetRelationUri() {
$this->assertSame($link, 'rest_test_relation'); $this->assertSame($link, 'rest_test_relation');
} }
/**
* @covers ::getRelationInternalIds
*/
public function testGetRelationInternalIds() {
/* @var \Drupal\rest\LinkManager\RelationLinkManagerInterface $relation_manager */
$relation_manager = \Drupal::service('hal.link_manager.relation');
$link = $relation_manager->getRelationUri('node', 'page', 'field_ref');
$internal_ids = $relation_manager->getRelationInternalIds($link);
$this->assertEquals([
'entity_type_id' => 'node',
'entity_type' => \Drupal::entityTypeManager()->getDefinition('node'),
'bundle' => 'page',
'field_name' => 'field_ref'
], $internal_ids);
}
/** /**
* @covers ::setLinkDomain * @covers ::setLinkDomain
*/ */
......
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