mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
74 lines
1.8 KiB
PHP
74 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the NelmioApiDocBundle.
|
|
*
|
|
* (c) Nelmio <hello@nelm.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Nelmio\ApiDocBundle\Formatter;
|
|
|
|
use Nelmio\ApiDocBundle\Annotation\ApiDoc;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
/**
|
|
* Extends SwaggerFormatter which takes into account the request's base URL when generating the documents for direct swagger-ui consumption.
|
|
*
|
|
* @author Bezalel Hermoso <bezalelhermoso@gmail.com>
|
|
*/
|
|
class RequestAwareSwaggerFormatter implements FormatterInterface
|
|
{
|
|
/**
|
|
* @var \Symfony\Component\HttpFoundation\Request
|
|
*/
|
|
protected $request;
|
|
|
|
/**
|
|
* @var SwaggerFormatter
|
|
*/
|
|
protected $formatter;
|
|
|
|
/**
|
|
* @param Request $request
|
|
* @param SwaggerFormatter $formatter
|
|
*/
|
|
public function __construct(Request $request, SwaggerFormatter $formatter)
|
|
{
|
|
$this->request = $request;
|
|
$this->formatter = $formatter;
|
|
}
|
|
|
|
/**
|
|
* Format a collection of documentation data.
|
|
*
|
|
* @param array $collection
|
|
* @param null $resource
|
|
* @internal param $array [ApiDoc] $collection
|
|
* @return string|array
|
|
*/
|
|
public function format(array $collection, $resource = null)
|
|
{
|
|
$result = $this->formatter->format($collection, $resource);
|
|
|
|
if ($resource !== null) {
|
|
$result['basePath'] = $this->request->getBaseUrl() . $result['basePath'];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Format documentation data for one route.
|
|
*
|
|
* @param ApiDoc $annotation
|
|
* return string|array
|
|
*/
|
|
public function formatOne(ApiDoc $annotation)
|
|
{
|
|
return $this->formatter->formatOne($annotation);
|
|
}
|
|
}
|