我在Symfony4下使用API平台实现了一个API,我试图在文档中隐藏一个实体,该实体只能由打击的ROLE_ADMIN访问,而在文档中不可见。 这是我要隐藏的实体:
<?php
namespace App\Entity;
use ApiPlatform\Core\Annotation\ApiResource;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
/**
* @ApiResource(
* attributes={"access_control"="is_granted('ROLE_ADMIN')"}
* )
* @ORM\Entity(repositoryClass="App\Repository\OrderStatusRepository")
*/
class OrderStatus
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
* @Groups("orderGET")
*/
private $label;
/**
* @return int|null
*/
public function getId(): ?int
{
return $this->id;
}
/**
* @return null|string
*/
public function getLabel(): ?string
{
return $this->label;
}
/**
* @param string $label
* @return OrderStatus
*/
public function setLabel(string $label): self
{
$this->label = $label;
return $this;
}
}
谢谢您的帮助
答案 0 :(得分:0)
开箱即用不支持此功能(但这将是一个不错的贡献)。
您可以做的是将DocumentationNormalizer
修饰为unset()
,使您不想出现在OpenAPI文档中的路径。
更多信息:https://api-platform.com/docs/core/swagger/#overriding-the-openapi-specification
答案 1 :(得分:0)
正如凯文所说,您可以printf 'string'
要隐藏的路径和定义。
就我而言,我想做相反的事情,将特定动作列入白名单。
unset
# config/services.yaml
App\Swagger\SwaggerDecorator:
decorates: 'api_platform.swagger.normalizer.api_gateway'
arguments: [ '@App\Swagger\SwaggerDecorator.inner' ]
autoconfigure: false
答案 2 :(得分:0)
Symfony 允许装饰服务,这里我们需要装饰api_platform.openapi.factory
使用以下内容创建 src/OpenApi/OpenApiFactory.php
:
<?php
namespace App\OpenApi;
use ApiPlatform\Core\OpenApi\Factory\OpenApiFactoryInterface;
use ApiPlatform\Core\OpenApi\Model\PathItem;
use ApiPlatform\Core\OpenApi\OpenApi;
class OpenApiFactory implements OpenApiFactoryInterface
{
/**
* @var OpenApiFactoryInterface
*/
private $decorated;
public function __construct(OpenApiFactoryInterface $decorated)
{
$this->decorated = $decorated;
}
public function __invoke(array $context = []): OpenApi
{
$openApi = $this->decorated->__invoke($context);
/** @var PathItem $path */
foreach ($openApi->getPaths()->getPaths() as $key => $path) {
if ($path->getGet() && $path->getGet()->getSummary() === 'hidden') {
$openApi->getPaths()->addPath($key, $path->withGet(null));
}
}
return $openApi;
}
}
注册
services:
App\OpenApi\OpenApiFactory:
decorates: 'api_platform.openapi.factory'
arguments: ['@App\OpenApi\OpenApiFactory.inner']
autoconfigure: false
将 openapi_context
添加到要隐藏的每条路线
* @ApiResource(
* itemOperations={
* "get"={
* ...
* "openapi_context"={
* "summary"="hidden"
* }
* }
* }
* )