class EntryPoint in JSON:API 8
Same name and namespace in other branches
- 8.2 src/Controller/EntryPoint.php \Drupal\jsonapi\Controller\EntryPoint
Controller for the API entry point.
@internal
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\jsonapi\Controller\EntryPoint
Expanded class hierarchy of EntryPoint
2 files declare their use of EntryPoint
- EntryPointTest.php in tests/
src/ Kernel/ Controller/ EntryPointTest.php - Routes.php in src/
Routing/ Routes.php
File
- src/
Controller/ EntryPoint.php, line 19
Namespace
Drupal\jsonapi\ControllerView source
class EntryPoint extends ControllerBase {
/**
* The JSON API resource type repository.
*
* @var \Drupal\jsonapi\ResourceType\ResourceTypeRepositoryInterface
*/
protected $resourceTypeRepository;
/**
* The renderer service.
*
* @var \Drupal\Core\Render\RendererInterface
*/
protected $renderer;
/**
* EntryPoint constructor.
*
* @param \Drupal\jsonapi\ResourceType\ResourceTypeRepositoryInterface $resource_type_repository
* The resource type repository.
* @param \Drupal\Core\Render\RendererInterface $renderer
* The renderer.
*/
public function __construct(ResourceTypeRepositoryInterface $resource_type_repository, RendererInterface $renderer) {
$this->resourceTypeRepository = $resource_type_repository;
$this->renderer = $renderer;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('jsonapi.resource_type.repository'), $container
->get('renderer'));
}
/**
* Controller to list all the resources.
*
* @return \Drupal\Core\Cache\CacheableJsonResponse
* The response object.
*/
public function index() {
// Execute the request in context so the cacheable metadata from the entity
// grants system is caught and added to the response. This is surfaced when
// executing the underlying entity query.
$context = new RenderContext();
/** @var \Drupal\Core\Cache\CacheableResponseInterface $response */
$do_build_urls = function () {
$self = Url::fromRoute('jsonapi.resource_list')
->setAbsolute();
// Only build URLs for exposed resources.
$resources = array_filter($this->resourceTypeRepository
->all(), function ($resource) {
return !$resource
->isInternal();
});
return array_reduce($resources, function (array $carry, ResourceType $resource_type) {
// TODO: Learn how to invalidate the cache for this page when a new
// entity type or bundle gets added, removed or updated.
// $this->response->addCacheableDependency($definition);
$url = Url::fromRoute(sprintf('jsonapi.%s.collection', $resource_type
->getTypeName()))
->setAbsolute();
$carry[$resource_type
->getTypeName()] = $url
->toString();
return $carry;
}, [
'self' => $self
->toString(),
]);
};
$urls = $this->renderer
->executeInRenderContext($context, $do_build_urls);
$json_response = new CacheableJsonResponse([
'data' => [],
'links' => $urls,
]);
if (!$context
->isEmpty()) {
$json_response
->addCacheableDependency($context
->pop());
}
return $json_response;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ControllerBase:: |
protected | property | The configuration factory. | |
ControllerBase:: |
protected | property | The current user service. | 1 |
ControllerBase:: |
protected | property | The entity form builder. | |
ControllerBase:: |
protected | property | The entity manager. | |
ControllerBase:: |
protected | property | The entity type manager. | |
ControllerBase:: |
protected | property | The form builder. | 2 |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The module handler. | 2 |
ControllerBase:: |
protected | property | The state service. | |
ControllerBase:: |
protected | function | Returns the requested cache bin. | |
ControllerBase:: |
protected | function | Retrieves a configuration object. | |
ControllerBase:: |
private | function | Returns the service container. | |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
ControllerBase:: |
protected | function | Retrieves the entity manager service. | |
ControllerBase:: |
protected | function | Retrieves the entity type manager. | |
ControllerBase:: |
protected | function | Returns the form builder service. | 2 |
ControllerBase:: |
protected | function | Returns a key/value storage collection. | 1 |
ControllerBase:: |
protected | function | Returns the language manager service. | 1 |
ControllerBase:: |
protected | function | Returns the module handler. | 2 |
ControllerBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
ControllerBase:: |
protected | function | Returns the state storage service. | |
EntryPoint:: |
protected | property | The renderer service. | |
EntryPoint:: |
protected | property | The JSON API resource type repository. | |
EntryPoint:: |
public static | function |
Instantiates a new instance of this class. Overrides ControllerBase:: |
|
EntryPoint:: |
public | function | Controller to list all the resources. | |
EntryPoint:: |
public | function | EntryPoint constructor. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |