mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
70 lines
2.0 KiB
PHP
70 lines
2.0 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;
|
|
|
|
use EXSyst\Component\Swagger\Swagger;
|
|
use Nelmio\ApiDocBundle\Describer\DescriberInterface;
|
|
use Nelmio\ApiDocBundle\Describer\ModelRegistryAwareInterface;
|
|
use Nelmio\ApiDocBundle\Model\ModelRegistry;
|
|
use Nelmio\ApiDocBundle\ModelDescriber\ModelDescriberInterface;
|
|
use Psr\Cache\CacheItemPoolInterface;
|
|
|
|
final class ApiDocGenerator
|
|
{
|
|
private $swagger;
|
|
private $describers;
|
|
private $modelDescribers;
|
|
private $cacheItemPool;
|
|
|
|
/**
|
|
* @param DescriberInterface[] $describers
|
|
* @param ModelDescriberInterface[] $modelDescribers
|
|
*/
|
|
public function __construct(array $describers, array $modelDescribers, CacheItemPoolInterface $cacheItemPool = null)
|
|
{
|
|
$this->describers = $describers;
|
|
$this->modelDescribers = $modelDescribers;
|
|
$this->cacheItemPool = $cacheItemPool;
|
|
}
|
|
|
|
public function generate(): Swagger
|
|
{
|
|
if (null !== $this->swagger) {
|
|
return $this->swagger;
|
|
}
|
|
|
|
if ($this->cacheItemPool) {
|
|
$item = $this->cacheItemPool->getItem('swagger_doc');
|
|
if ($item->isHit()) {
|
|
return $this->swagger = $item->get();
|
|
}
|
|
}
|
|
|
|
$this->swagger = new Swagger();
|
|
$modelRegistry = new ModelRegistry($this->modelDescribers, $this->swagger);
|
|
foreach ($this->describers as $describer) {
|
|
if ($describer instanceof ModelRegistryAwareInterface) {
|
|
$describer->setModelRegistry($modelRegistry);
|
|
}
|
|
|
|
$describer->describe($this->swagger);
|
|
}
|
|
$modelRegistry->registerDefinitions();
|
|
|
|
if (isset($item)) {
|
|
$this->cacheItemPool->save($item->set($this->swagger));
|
|
}
|
|
|
|
return $this->swagger;
|
|
}
|
|
}
|