mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-03 08:09:25 +03:00
63 lines
1.7 KiB
PHP
63 lines
1.7 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\Describer;
|
|
|
|
use Nelmio\ApiDocBundle\SwaggerPhp\AddDefaults;
|
|
use Nelmio\ApiDocBundle\SwaggerPhp\ModelRegister;
|
|
use Nelmio\ApiDocBundle\SwaggerPhp\OperationResolver;
|
|
use Swagger\Analyser;
|
|
use Swagger\Analysis;
|
|
|
|
final class SwaggerPhpDescriber extends ExternalDocDescriber implements ModelRegistryAwareInterface
|
|
{
|
|
use ModelRegistryAwareTrait;
|
|
|
|
private $operationResolver;
|
|
|
|
public function __construct(string $projectPath, bool $overwrite = false)
|
|
{
|
|
$nelmioNamespace = 'Nelmio\\ApiDocBundle\\';
|
|
if (!in_array($nelmioNamespace, Analyser::$whitelist)) {
|
|
Analyser::$whitelist[] = $nelmioNamespace;
|
|
}
|
|
|
|
parent::__construct(function () use ($projectPath) {
|
|
$options = ['processors' => $this->getProcessors()];
|
|
$annotation = \Swagger\scan($projectPath, $options);
|
|
|
|
return json_decode(json_encode($annotation));
|
|
}, $overwrite);
|
|
}
|
|
|
|
/**
|
|
* If set, the describer will try to complete paths and create
|
|
* implicit operations.
|
|
*/
|
|
public function setOperationResolver(OperationResolver $operationResolver)
|
|
{
|
|
$this->operationResolver = $operationResolver;
|
|
}
|
|
|
|
private function getProcessors(): array
|
|
{
|
|
$processors = [
|
|
new AddDefaults(),
|
|
new ModelRegister($this->modelRegistry),
|
|
];
|
|
if (null !== $this->operationResolver) {
|
|
$processors[] = $this->operationResolver;
|
|
}
|
|
|
|
return array_merge($processors, Analysis::processors());
|
|
}
|
|
}
|