Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
266 changes: 266 additions & 0 deletions src/JsonApi/JsonSchema/SchemaFactory.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,266 @@
<?php

/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

declare(strict_types=1);

namespace ApiPlatform\JsonApi\JsonSchema;

use ApiPlatform\Api\ResourceClassResolverInterface as LegacyResourceClassResolverInterface;
use ApiPlatform\JsonSchema\Schema;
use ApiPlatform\JsonSchema\SchemaFactoryAwareInterface;
use ApiPlatform\JsonSchema\SchemaFactoryInterface;
use ApiPlatform\Metadata\Operation;
use ApiPlatform\Metadata\Property\Factory\PropertyMetadataFactoryInterface;
use ApiPlatform\Metadata\ResourceClassResolverInterface;

/**
* Decorator factory which adds JSON:API properties to the JSON Schema document.
*
* @author Gwendolen Lynch <gwendolen.lynch@gmail.com>
*/
final class SchemaFactory implements SchemaFactoryInterface, SchemaFactoryAwareInterface
{
private const LINKS_PROPS = [
'type' => 'object',
'properties' => [
'self' => [
'type' => 'string',
'format' => 'iri-reference',
],
'first' => [
'type' => 'string',
'format' => 'iri-reference',
],
'prev' => [
'type' => 'string',
'format' => 'iri-reference',
],
'next' => [
'type' => 'string',
'format' => 'iri-reference',
],
'last' => [
'type' => 'string',
'format' => 'iri-reference',
],
],
'example' => [
'self' => 'string',
'first' => 'string',
'prev' => 'string',
'next' => 'string',
'last' => 'string',
],
];
private const META_PROPS = [
'type' => 'object',
'properties' => [
'totalItems' => [
'type' => 'integer',
'minimum' => 0,
],
'itemsPerPage' => [
'type' => 'integer',
'minimum' => 0,
],
'currentPage' => [
'type' => 'integer',
'minimum' => 0,
],
],
];
private const RELATION_PROPS = [
'type' => 'object',
'properties' => [
'type' => [
'type' => 'string',
],
'id' => [
'type' => 'string',
'format' => 'iri-reference',
],
],
];
private const PROPERTY_PROPS = [
'id' => [
'type' => 'string',
],
'type' => [
'type' => 'string',
],
'attributes' => [
'type' => 'object',
'properties' => [],
],
];

public function __construct(private readonly SchemaFactoryInterface $schemaFactory, private readonly PropertyMetadataFactoryInterface $propertyMetadataFactory, private readonly ResourceClassResolverInterface|LegacyResourceClassResolverInterface $resourceClassResolver)
{
if ($this->schemaFactory instanceof SchemaFactoryAwareInterface) {
$this->schemaFactory->setSchemaFactory($this);
}
Comment on lines +107 to +109
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this gets called twice?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This mirrors the changes made in #6236

}

/**
* {@inheritdoc}
*/
public function buildSchema(string $className, string $format = 'jsonapi', string $type = Schema::TYPE_OUTPUT, ?Operation $operation = null, ?Schema $schema = null, ?array $serializerContext = null, bool $forceCollection = false): Schema
{
$schema = $this->schemaFactory->buildSchema($className, $format, $type, $operation, $schema, $serializerContext, $forceCollection);
if ('jsonapi' !== $format) {
return $schema;
}

if ('input' === $type) {
return $schema;
}

if ($key = $schema->getRootDefinitionKey()) {
$definitions = $schema->getDefinitions();
$properties = $definitions[$key]['properties'] ?? [];

// Prevent reapplying
if (isset($properties['id'], $properties['type']) || isset($properties['data'])) {
return $schema;
}

$definitions[$key]['properties'] = [
'data' => [
'type' => 'object',
'properties' => $this->buildDefinitionPropertiesSchema($key, $className, $schema, $serializerContext),
'required' => ['type', 'id'],
],
];

return $schema;
}

if ($key = $schema->getItemsDefinitionKey()) {
$definitions = $schema->getDefinitions();
$properties = $definitions[$key]['properties'] ?? [];

// Prevent reapplying
if (isset($properties['id'], $properties['type']) || isset($properties['data'])) {
return $schema;
}

$definitions[$key]['properties'] = $this->buildDefinitionPropertiesSchema($key, $className, $schema, $serializerContext);
$definitions[$key]['required'] = ['type', 'id'];
}

if (($schema['type'] ?? '') === 'array') {
// data
$items = $schema['items'];
unset($schema['items']);

$schema['type'] = 'object';
$schema['properties'] = [
'links' => self::LINKS_PROPS,
'meta' => self::META_PROPS,
'data' => [
'type' => 'array',
'items' => $items,
],
];
$schema['required'] = [
'data',
];

return $schema;
}

return $schema;
}

public function setSchemaFactory(SchemaFactoryInterface $schemaFactory): void
{
if ($this->schemaFactory instanceof SchemaFactoryAwareInterface) {
$this->schemaFactory->setSchemaFactory($schemaFactory);
}
}

private function buildDefinitionPropertiesSchema(string $key, string $className, Schema $schema, ?array $serializerContext): array
{
$definitions = $schema->getDefinitions();
$properties = $definitions[$key]['properties'] ?? [];

$attributes = [];
$relationships = [];
foreach ($properties as $propertyName => $property) {
if ($relation = $this->getRelationship($className, $propertyName, $serializerContext)) {
[$isOne, $isMany] = $relation;

if ($isOne) {
$relationships[$propertyName]['properties']['data'] = self::RELATION_PROPS;
continue;
}
$relationships[$propertyName]['properties']['data'] = [
'type' => 'array',
'items' => self::RELATION_PROPS,
];
continue;
}
if ('id' === $propertyName) {
$attributes['_id'] = $property;
continue;
}
$attributes[$propertyName] = $property;
}

$replacement = self::PROPERTY_PROPS;
$replacement['attributes']['properties'] = $attributes;

if (\count($relationships) > 0) {
$replacement['relationships'] = [
'type' => 'object',
'properties' => $relationships,
];
}

if ($required = $definitions[$key]['required'] ?? null) {
foreach ($required as $require) {
if (isset($replacement['attributes']['properties'][$require])) {
$replacement['attributes']['required'][] = $require;
continue;
}
if (isset($relationships[$require])) {
$replacement['relationships']['required'][] = $require;
}
}
unset($definitions[$key]['required']);
}

return $replacement;
}

private function getRelationship(string $resourceClass, string $property, ?array $serializerContext): ?array
{
$propertyMetadata = $this->propertyMetadataFactory->create($resourceClass, $property, $serializerContext ?? []);
$types = $propertyMetadata->getBuiltinTypes() ?? [];
$isRelationship = false;
$isOne = $isMany = false;

foreach ($types as $type) {
if ($type->isCollection()) {
$collectionValueType = $type->getCollectionValueTypes()[0] ?? null;
$isMany = $collectionValueType && ($className = $collectionValueType->getClassName()) && $this->resourceClassResolver->isResourceClass($className);
} else {
$isOne = ($className = $type->getClassName()) && $this->resourceClassResolver->isResourceClass($className);
}
if (!isset($className) || (!$isOne && !$isMany)) {
continue;
}
$isRelationship = true;
}

return $isRelationship ? [$isOne, $isMany] : null;
}
}
6 changes: 6 additions & 0 deletions src/Symfony/Bundle/Resources/config/jsonapi.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">

<services>
<service id="api_platform.jsonapi.json_schema.schema_factory" class="ApiPlatform\JsonApi\JsonSchema\SchemaFactory" decorates="api_platform.json_schema.schema_factory">
<argument type="service" id="api_platform.jsonapi.json_schema.schema_factory.inner" />
<argument type="service" id="api_platform.metadata.property.metadata_factory" />
<argument type="service" id="api_platform.resource_class_resolver" />
</service>

<service id="api_platform.jsonapi.encoder" class="ApiPlatform\Serializer\JsonEncoder" public="false">
<argument>jsonapi</argument>

Expand Down
Loading