EntryPoint.php in JSON:API 8.2
File
src/Controller/EntryPoint.php
View source
<?php
namespace Drupal\jsonapi\Controller;
use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Url;
use Drupal\jsonapi\JsonApiResource\JsonApiDocumentTopLevel;
use Drupal\jsonapi\JsonApiResource\LinkCollection;
use Drupal\jsonapi\JsonApiResource\NullIncludedData;
use Drupal\jsonapi\JsonApiResource\Link;
use Drupal\jsonapi\JsonApiResource\ResourceObjectData;
use Drupal\jsonapi\ResourceResponse;
use Drupal\jsonapi\ResourceType\ResourceType;
use Drupal\jsonapi\ResourceType\ResourceTypeRepositoryInterface;
use Drupal\user\Entity\User;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Routing\Exception\RouteNotFoundException;
class EntryPoint extends ControllerBase {
protected $resourceTypeRepository;
protected $user;
public function __construct(ResourceTypeRepositoryInterface $resource_type_repository, AccountInterface $user) {
$this->resourceTypeRepository = $resource_type_repository;
$this->user = $user;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('jsonapi.resource_type.repository'), $container
->get('current_user'));
}
public function index() {
$cacheability = (new CacheableMetadata())
->addCacheContexts([
'user.roles:authenticated',
])
->addCacheTags([
'jsonapi_resource_types',
]);
$resources = array_filter($this->resourceTypeRepository
->all(), function ($resource) {
return !$resource
->isInternal();
});
$self_link = new Link(new CacheableMetadata(), Url::fromRoute('jsonapi.resource_list'), [
'self',
]);
$urls = array_reduce($resources, function (LinkCollection $carry, ResourceType $resource_type) {
if ($resource_type
->isLocatable() || $resource_type
->isMutable()) {
$route_suffix = $resource_type
->isLocatable() ? 'collection' : 'collection.post';
$url = Url::fromRoute(sprintf('jsonapi.%s.%s', $resource_type
->getTypeName(), $route_suffix))
->setAbsolute();
$link_relation_types = [];
return $carry
->withLink($resource_type
->getTypeName(), new Link(new CacheableMetadata(), $url, $link_relation_types));
}
return $carry;
}, new LinkCollection([
'self' => $self_link,
]));
$meta = [];
if ($this->user
->isAuthenticated()) {
$current_user_uuid = User::load($this->user
->id())
->uuid();
$meta['links']['me'] = [
'meta' => [
'id' => $current_user_uuid,
],
];
$cacheability
->addCacheContexts([
'user',
]);
try {
$me_url = Url::fromRoute('jsonapi.user--user.individual', [
'entity' => $current_user_uuid,
])
->setAbsolute()
->toString(TRUE);
$meta['links']['me']['href'] = $me_url
->getGeneratedUrl();
$cacheability = $cacheability
->merge($me_url);
} catch (RouteNotFoundException $e) {
}
}
$response = new ResourceResponse(new JsonApiDocumentTopLevel(new ResourceObjectData([]), new NullIncludedData(), $urls, $meta));
return $response
->addCacheableDependency($cacheability);
}
}