class RegisterSerializationClassesCompilerPass in Drupal 8
Same name in this branch
- 8 core/modules/serialization/src/RegisterSerializationClassesCompilerPass.php \Drupal\serialization\RegisterSerializationClassesCompilerPass
- 8 core/modules/jsonapi/src/DependencyInjection/Compiler/RegisterSerializationClassesCompilerPass.php \Drupal\jsonapi\DependencyInjection\Compiler\RegisterSerializationClassesCompilerPass
Same name and namespace in other branches
- 9 core/modules/jsonapi/src/DependencyInjection/Compiler/RegisterSerializationClassesCompilerPass.php \Drupal\jsonapi\DependencyInjection\Compiler\RegisterSerializationClassesCompilerPass
- 10 core/modules/jsonapi/src/DependencyInjection/Compiler/RegisterSerializationClassesCompilerPass.php \Drupal\jsonapi\DependencyInjection\Compiler\RegisterSerializationClassesCompilerPass
Adds services tagged JSON:API-only normalizers to the Serializer.
Services tagged with 'jsonapi_normalizer' will be added to the JSON:API serializer. No extensions can provide such services.
JSON:API does respect generic (non-JSON:API) DataType-level normalizers.
@internal JSON:API maintains no PHP API. The API is the HTTP API. This class may change at any time and could break any dependencies on it.
Hierarchy
- class \Drupal\serialization\RegisterSerializationClassesCompilerPass implements \Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface
- class \Drupal\jsonapi\DependencyInjection\Compiler\RegisterSerializationClassesCompilerPass
Expanded class hierarchy of RegisterSerializationClassesCompilerPass
See also
https://www.drupal.org/project/drupal/issues/3032787
1 file declares its use of RegisterSerializationClassesCompilerPass
- JsonapiServiceProvider.php in core/
modules/ jsonapi/ src/ JsonapiServiceProvider.php
File
- core/
modules/ jsonapi/ src/ DependencyInjection/ Compiler/ RegisterSerializationClassesCompilerPass.php, line 23
Namespace
Drupal\jsonapi\DependencyInjection\CompilerView source
class RegisterSerializationClassesCompilerPass extends DrupalRegisterSerializationClassesCompilerPass {
/**
* The service ID.
*
* @const string
*/
const OVERRIDDEN_SERVICE_ID = 'jsonapi.serializer';
/**
* The service tag that only JSON:API normalizers should use.
*
* @const string
*/
const OVERRIDDEN_SERVICE_NORMALIZER_TAG = 'jsonapi_normalizer';
/**
* The service tag that only JSON:API encoders should use.
*
* @const string
*/
const OVERRIDDEN_SERVICE_ENCODER_TAG = 'jsonapi_encoder';
/**
* The ID for the JSON:API format.
*
* @const string
*/
const FORMAT = 'api_json';
/**
* Adds services to the JSON:API Serializer.
*
* This code is copied from the class parent with two modifications. The
* service id has been changed and the service tag has been updated.
*
* ID: 'serializer' -> 'jsonapi.serializer'
* Tag: 'normalizer' -> 'jsonapi_normalizer'
*
* @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
* The container to process.
*/
public function process(ContainerBuilder $container) {
$definition = $container
->getDefinition(static::OVERRIDDEN_SERVICE_ID);
// Retrieve registered Normalizers and Encoders from the container.
foreach ($container
->findTaggedServiceIds(static::OVERRIDDEN_SERVICE_NORMALIZER_TAG) as $id => $attributes) {
// Normalizers are not an API: mark private.
$container
->getDefinition($id)
->setPublic(FALSE);
$priority = isset($attributes[0]['priority']) ? $attributes[0]['priority'] : 0;
$normalizers[$priority][] = new Reference($id);
}
foreach ($container
->findTaggedServiceIds(static::OVERRIDDEN_SERVICE_ENCODER_TAG) as $id => $attributes) {
// Encoders are not an API: mark private.
$container
->getDefinition($id)
->setPublic(FALSE);
$priority = isset($attributes[0]['priority']) ? $attributes[0]['priority'] : 0;
$encoders[$priority][] = new Reference($id);
}
// Add the registered Normalizers and Encoders to the Serializer.
if (!empty($normalizers)) {
$definition
->replaceArgument(0, $this
->sort($normalizers));
}
if (!empty($encoders)) {
$definition
->replaceArgument(1, $this
->sort($encoders));
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RegisterSerializationClassesCompilerPass:: |
constant | The ID for the JSON:API format. | ||
RegisterSerializationClassesCompilerPass:: |
protected | function | Returns whether a normalizer BC setting is disabled or not. | |
RegisterSerializationClassesCompilerPass:: |
constant | The service tag that only JSON:API encoders should use. | ||
RegisterSerializationClassesCompilerPass:: |
constant | The service ID. | ||
RegisterSerializationClassesCompilerPass:: |
constant | The service tag that only JSON:API normalizers should use. | ||
RegisterSerializationClassesCompilerPass:: |
public | function |
Adds services to the JSON:API Serializer. Overrides RegisterSerializationClassesCompilerPass:: |
|
RegisterSerializationClassesCompilerPass:: |
protected | function | Sorts by priority. |