티스토리 뷰
이슈
`l5-swagger` 사용시 모델에 정의된 Schema에 Resource에 맞는 Property를 추가하는데 이슈가 있었다.
https://github.com/DarkaOnLine/L5-Swagger?tab=readme-ov-file
Github에도 자세한 메뉴얼이 없다보니 사용하는데 에로사항이 조금 있었는데, 우연히 검색하는 과정에서 발견하게 되어 작성해 본다.
구글에서 검색시 laravel 사용자는 swagger 사용시 l5-swagger를 많이 사용하는 듯한데 도움이 되지 않을까?
해결 방안
// AwesomeModel.php
<?php
#[OA\Schema(
type : 'object',
schema: "AwesomeModel",
properties: [
new OA\Property(property: 'id', type: 'integer', description: "id"),
new OA\Property(property: 'name', type: 'string', description: "name"),
new OA\Property(property: 'status', type: 'string', description: "상태"),
],
)]
class AwesomeModel {}
// AwesomeController.php
<?php
#[OA\Get(
...
)]
#[OA\Response(
response:200,
ref:"#/components/responses/AwesomeResource",
)]
#[OA\Response(response:400, ref:"#/components/responses/BadRequest")]
class AwesomeController {}
// AwesomeResource.php
<?php
#[OA\Response(
description:"Success",
response: "AwesomeResource",
content: new OA\JsonContent(
properties: [
new OA\Property(
property: 'data',
type: "array",
items: new OA\Items(
allOf:[
new OA\Schema(ref:"#/components/schemas/AwesomeModel"),
new OA\Schema(properties: [
new OA\Property(property:'created_at', type: 'string', format:"date", description: "생성일"),
]),
],
),
),
],
)
)]
class AwesomeResource extends JsonResource
{
public function toArray(Request $request)
{
$response = parent::toArray($request);
return [
...$response,
'created_at' => $this->anotherModel->createdAt,
];
}
}
요점은 `allOf`를 통해 여러개 스키마를 묶어 줄 수 있다.
allOf:[
new OA\Schema(),
new OA\Schema(),
],
참고
'공부합시다 > php' 카테고리의 다른 글
Laravel Event Observer 매개변수 전달하기 (0) | 2024.09.30 |
---|---|
Laravel에서 kafka 사용하기 laravel-kafka (0) | 2024.09.24 |
Laravel Carbon으로 addMonth 오류 (0) | 2024.04.05 |
Laravel Exception Test (0) | 2023.11.15 |
Laravel 다중 DB 사용시 테스트 트랜잭션 사용하기. (0) | 2023.11.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Python
- laravel-kafka
- POP3
- 테스트_다중트랜잭션
- 정규식
- addMonthWithoutOverflow
- 정의
- l5-swagger
- password-manager
- bitwarden-cli
- graphql
- l5-swagger-response
- php-laravel
- Laravel
- 라라벨
- MySQL
- session+token authorize
- 자바스크립트
- exception-test
- laravel-test
- php
- django
- aaa패턴
- 메일
- eloquent-observer
- redis
- addMonth
- vim
- graphql-php
- observer 매개변수 전달하기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함