NelmioApiDocBundle/PropertyDescriber/ArrayPropertyDescriber.php
2020-11-01 11:32:13 +01:00

60 lines
1.9 KiB
PHP

<?php
/*
* This file is part of the NelmioApiDocBundle package.
*
* (c) Nelmio
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Nelmio\ApiDocBundle\PropertyDescriber;
use Nelmio\ApiDocBundle\Describer\ModelRegistryAwareInterface;
use Nelmio\ApiDocBundle\Describer\ModelRegistryAwareTrait;
use Nelmio\ApiDocBundle\OpenApiPhp\Util;
use OpenApi\Annotations as OA;
class ArrayPropertyDescriber implements PropertyDescriberInterface, ModelRegistryAwareInterface
{
use ModelRegistryAwareTrait;
use NullablePropertyTrait;
/** @var PropertyDescriberInterface[] */
private $propertyDescribers;
public function __construct(iterable $propertyDescribers = [])
{
$this->propertyDescribers = $propertyDescribers;
}
public function describe(array $types, OA\Schema $property, array $groups = null)
{
$type = $types[0]->getCollectionValueType();
if (null === $type) {
throw new \LogicException(sprintf('Property "%s" is an array, but its items type isn\'t specified. You can specify that by using the type `string[]` for instance or `@OA\Property(type="array", @OA\Items(type="string"))`.', $property->property));
}
$property->type = 'array';
$this->setNullableProperty($types[0], $property);
$property = Util::getChild($property, OA\Items::class);
foreach ($this->propertyDescribers as $propertyDescriber) {
if ($propertyDescriber instanceof ModelRegistryAwareInterface) {
$propertyDescriber->setModelRegistry($this->modelRegistry);
}
if ($propertyDescriber->supports([$type])) {
$propertyDescriber->describe([$type], $property, $groups);
break;
}
}
}
public function supports(array $types): bool
{
return 1 === count($types) && $types[0]->isCollection();
}
}