cf858c700898e45ff46b2fd3b4759b2740c94bb3
[yaffs-website] / web / core / modules / hal / src / LinkManager / RelationLinkManager.php
1 <?php
2
3 namespace Drupal\hal\LinkManager;
4
5 use Drupal\Core\Cache\Cache;
6 use Drupal\Core\Cache\CacheBackendInterface;
7 use Drupal\Core\Config\ConfigFactoryInterface;
8 use Drupal\Core\Entity\ContentEntityTypeInterface;
9 use Drupal\Core\Entity\EntityManagerInterface;
10 use Drupal\Core\Extension\ModuleHandlerInterface;
11 use Symfony\Component\HttpFoundation\RequestStack;
12
13 class RelationLinkManager extends LinkManagerBase implements RelationLinkManagerInterface {
14
15   /**
16    * @var \Drupal\Core\Cache\CacheBackendInterface
17    */
18   protected $cache;
19
20   /**
21    * Entity manager.
22    *
23    * @var \Drupal\Core\Entity\EntityManagerInterface
24    */
25   protected $entityManager;
26
27   /**
28    * Module handler service.
29    *
30    * @var \Drupal\Core\Extension\ModuleHandlerInterface
31    */
32   protected $moduleHandler;
33
34   /**
35    * Constructor.
36    *
37    * @param \Drupal\Core\Cache\CacheBackendInterface $cache
38    *   The cache of relation URIs and their associated Typed Data IDs.
39    * @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
40    *   The entity manager.
41    * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
42    *   The module handler service.
43    * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
44    *   The config factory service.
45    * @param \Symfony\Component\HttpFoundation\RequestStack $request_stack
46    *   The request stack.
47    */
48   public function __construct(CacheBackendInterface $cache, EntityManagerInterface $entity_manager, ModuleHandlerInterface $module_handler, ConfigFactoryInterface $config_factory, RequestStack $request_stack) {
49     $this->cache = $cache;
50     $this->entityManager = $entity_manager;
51     $this->configFactory = $config_factory;
52     $this->moduleHandler = $module_handler;
53     $this->requestStack = $request_stack;
54   }
55
56   /**
57    * {@inheritdoc}
58    */
59   public function getRelationUri($entity_type, $bundle, $field_name, $context = []) {
60     // Per the interface documentation of this method, the returned URI may
61     // optionally also serve as the URL of a documentation page about this
62     // field. However, Drupal does not currently implement such a documentation
63     // page. Therefore, we return a URI assembled relative to the site's base
64     // URL, which is sufficient to uniquely identify the site's entity type +
65     // bundle + field for use in hypermedia formats, but we do not take into
66     // account unclean URLs, language prefixing, or anything else that would be
67     // required for Drupal to be able to respond with content at this URL. If a
68     // module is installed that adds such content, but requires this URL to be
69     // different (e.g., include a language prefix), then the module must also
70     // override the RelationLinkManager class/service to return the desired URL.
71     $uri = $this->getLinkDomain($context) . "/rest/relation/$entity_type/$bundle/$field_name";
72     $this->moduleHandler->alter('hal_relation_uri', $uri, $context);
73     $this->moduleHandler->alterDeprecated('This hook is deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. Implement hook_hal_relation_uri_alter() instead.', 'rest_relation_uri', $uri, $context);
74     return $uri;
75   }
76
77   /**
78    * {@inheritdoc}
79    */
80   public function getRelationInternalIds($relation_uri, $context = []) {
81     $relations = $this->getRelations($context);
82     if (isset($relations[$relation_uri])) {
83       return $relations[$relation_uri];
84     }
85     return FALSE;
86   }
87
88   /**
89    * Get the array of relation links.
90    *
91    * Any field can be handled as a relation simply by changing how it is
92    * normalized. Therefore, there is no prior knowledge that can be used here
93    * to determine which fields to assign relation URIs. Instead, each field,
94    * even primitives, are given a relation URI. It is up to the caller to
95    * determine which URIs to use.
96    *
97    * @param array $context
98    *   Context from the normalizer/serializer operation.
99    *
100    * @return array
101    *   An array of typed data IDs keyed by corresponding relation URI. The keys
102    *   are:
103    *   - 'entity_type_id'
104    *   - 'bundle'
105    *   - 'field_name'
106    *   - 'entity_type' (deprecated)
107    *   The values for 'entity_type_id', 'bundle' and 'field_name' are strings.
108    *   The 'entity_type' key exists for backwards compatibility and its value is
109    *   the full entity type object. The 'entity_type' key will be removed before
110    *   Drupal 9.0.
111    *
112    * @see https://www.drupal.org/node/2877608
113    */
114   protected function getRelations($context = []) {
115     $cid = 'hal:links:relations';
116     $cache = $this->cache->get($cid);
117     if (!$cache) {
118       $data = $this->writeCache($context);
119     }
120     else {
121       $data = $cache->data;
122     }
123
124     // @todo https://www.drupal.org/node/2716163 Remove this in Drupal 9.0.
125     foreach ($data as $relation_uri => $ids) {
126       $data[$relation_uri]['entity_type'] = $this->entityManager->getDefinition($ids['entity_type_id']);
127     }
128     return $data;
129   }
130
131   /**
132    * Writes the cache of relation links.
133    *
134    * @param array $context
135    *   Context from the normalizer/serializer operation.
136    *
137    * @return array
138    *   An array of typed data IDs keyed by corresponding relation URI. The keys
139    *   are:
140    *   - 'entity_type_id'
141    *   - 'bundle'
142    *   - 'field_name'
143    *   The values for 'entity_type_id', 'bundle' and 'field_name' are strings.
144    */
145   protected function writeCache($context = []) {
146     $data = [];
147
148     foreach ($this->entityManager->getDefinitions() as $entity_type) {
149       if ($entity_type instanceof ContentEntityTypeInterface) {
150         foreach ($this->entityManager->getBundleInfo($entity_type->id()) as $bundle => $bundle_info) {
151           foreach ($this->entityManager->getFieldDefinitions($entity_type->id(), $bundle) as $field_definition) {
152             $relation_uri = $this->getRelationUri($entity_type->id(), $bundle, $field_definition->getName(), $context);
153             $data[$relation_uri] = [
154               'entity_type_id' => $entity_type->id(),
155               'bundle' => $bundle,
156               'field_name' => $field_definition->getName(),
157             ];
158           }
159         }
160       }
161     }
162     // These URIs only change when field info changes, so cache it permanently
163     // and only clear it when the fields cache is cleared.
164     $this->cache->set('hal:links:relations', $data, Cache::PERMANENT, ['entity_field_info']);
165     return $data;
166   }
167
168 }