EntityDeriver.php in Drupal 10
File
core/modules/rest/src/Plugin/Deriver/EntityDeriver.php
View source
<?php
namespace Drupal\rest\Plugin\Deriver;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class EntityDeriver implements ContainerDeriverInterface {
protected $derivatives;
protected $entityTypeManager;
public function __construct(EntityTypeManagerInterface $entity_type_manager) {
$this->entityTypeManager = $entity_type_manager;
}
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($container
->get('entity_type.manager'));
}
public function getDerivativeDefinition($derivative_id, $base_plugin_definition) {
if (!isset($this->derivatives)) {
$this
->getDerivativeDefinitions($base_plugin_definition);
}
if (isset($this->derivatives[$derivative_id])) {
return $this->derivatives[$derivative_id];
}
}
public function getDerivativeDefinitions($base_plugin_definition) {
if (!isset($this->derivatives)) {
foreach ($this->entityTypeManager
->getDefinitions() as $entity_type_id => $entity_type) {
if ($entity_type
->isInternal()) {
continue;
}
$this->derivatives[$entity_type_id] = [
'id' => 'entity:' . $entity_type_id,
'entity_type' => $entity_type_id,
'serialization_class' => $entity_type
->getClass(),
'label' => $entity_type
->getLabel(),
];
$default_uris = [
'canonical' => "/entity/{$entity_type_id}/" . '{' . $entity_type_id . '}',
'create' => "/entity/{$entity_type_id}",
];
foreach ($default_uris as $link_relation => $default_uri) {
if ($link_template = $entity_type
->getLinkTemplate($link_relation)) {
$this->derivatives[$entity_type_id]['uri_paths'][$link_relation] = $link_template;
}
else {
$this->derivatives[$entity_type_id]['uri_paths'][$link_relation] = $default_uri;
}
}
$this->derivatives[$entity_type_id] += $base_plugin_definition;
}
}
return $this->derivatives;
}
}
Classes
Name |
Description |
EntityDeriver |
Provides a resource plugin definition for every entity type. |