Files
sam-api/app/Http/Controllers/Api/V1/CommonController.php
hskwon 681acb0459 feat: Swagger 문서 업데이트 및 API 그룹화 최적화
- Settings 그룹 API 문서 추가
  * CommonController에 공통 코드 관리 CRUD 문서 작성
  * TenantFieldSettingController에 필드 설정 관리 문서 작성
  * "Settings - Common Codes", "Settings - Fields" 태그로 그룹화

- Products/Materials 통합 문서 업데이트
  * MaterialController에 "Products & Materials - Materials" 태그 적용
  * Products 그룹 내 자재 관리로 통합 구성

- Files API 완전한 Swagger 문서 추가
  * FileController에 누락되었던 전체 API 문서 작성
  * 파일 업로드/조회/삭제/정보조회 모든 엔드포인트 문서화
  * "Files" 태그로 독립적인 그룹 구성

- 새로운 에러 메시지 응답 예제 추가
  * Materials 관련: 중복 코드, 사용 중 삭제 불가, 정보 없음
  * Settings 관련: 중복 공통 코드, 필드 설정 없음, 유효하지 않은 타입
  * Files 관련: 업로드 실패, 파일 크기 초과, 지원하지 않는 형식

- 제거된 BOM 라우트 문서 정리
  * 사용하지 않는 BomApi.php 파일 삭제
  * 기본 BOM 시스템(/v1/boms) 완전 제거로 문서 정합성 확보

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-24 21:00:31 +09:00

238 lines
8.4 KiB
PHP

<?php
namespace App\Http\Controllers\Api\V1;
use App\Helpers\ApiResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
/**
* @OA\Tag(
* name="Settings - Common Codes",
* description="공통 코드 관리 API"
* )
*/
class CommonController
{
/**
* @OA\Get(
* path="/api/v1/settings/common/code",
* summary="공통 코드 조회",
* description="테넌트의 활성화된 공통 코드 목록을 조회합니다.",
* tags={"Settings - Common Codes"},
* security={{"ApiKeyAuth": {}}},
* @OA\Response(
* response=200,
* description="공통 코드 조회 성공",
* @OA\JsonContent(
* type="object",
* @OA\Property(property="success", type="boolean", example=true),
* @OA\Property(property="message", type="string", example="공통코드"),
* @OA\Property(
* property="data",
* type="array",
* @OA\Items(
* type="object",
* @OA\Property(property="code_group", type="string", example="product_type"),
* @OA\Property(property="code", type="string", example="PRODUCT"),
* @OA\Property(property="name", type="string", example="제품"),
* @OA\Property(property="description", type="string", example="완제품"),
* @OA\Property(property="is_active", type="boolean", example=true)
* )
* )
* )
* )
* )
*/
public static function getComeCode()
{
return ApiResponse::handle(function () {
return DB::table('common_codes')
->select(['code_group', 'code', 'name', 'description', 'is_active'])
->where('tenant_id', app('tenant_id'))
->get();
}, '공통코드');
}
/**
* @OA\Get(
* path="/api/v1/settings/common",
* summary="공통 코드 목록 조회",
* description="전체 공통 코드 목록을 조회합니다.",
* tags={"Settings - Common Codes"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
* @OA\Response(
* response=200,
* description="공통 코드 목록 조회 성공"
* )
* )
*/
public function list(Request $request)
{
return ApiResponse::handle(function () use ($request) {
// Service implementation needed
return [];
}, __('message.fetched'));
}
/**
* @OA\Get(
* path="/api/v1/settings/common/{group}",
* summary="특정 그룹 공통 코드 조회",
* description="특정 그룹의 공통 코드 목록을 조회합니다.",
* tags={"Settings - Common Codes"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
* @OA\Parameter(
* name="group",
* in="path",
* required=true,
* description="코드 그룹",
* @OA\Schema(type="string", example="product_type")
* ),
* @OA\Response(
* response=200,
* description="그룹 코드 조회 성공"
* )
* )
*/
public function index(Request $request, string $group)
{
return ApiResponse::handle(function () use ($group) {
// Service implementation needed
return [];
}, __('message.fetched'));
}
/**
* @OA\Post(
* path="/api/v1/settings/common",
* summary="공통 코드 생성",
* description="새로운 공통 코드를 생성합니다.",
* tags={"Settings - Common Codes"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
* @OA\RequestBody(
* required=true,
* @OA\JsonContent(
* type="object",
* @OA\Property(property="code_group", type="string", example="product_type"),
* @OA\Property(property="code", type="string", example="SERVICE"),
* @OA\Property(property="name", type="string", example="서비스"),
* @OA\Property(property="description", type="string", example="서비스 상품")
* )
* ),
* @OA\Response(
* response=201,
* description="공통 코드 생성 성공"
* ),
* @OA\Response(
* response=409,
* description="중복된 공통 코드",
* @OA\JsonContent(
* type="object",
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="중복된 공통 코드가 존재합니다.")
* )
* ),
* @OA\Response(
* response=422,
* description="유효성 검사 실패",
* @OA\JsonContent(ref="#/components/schemas/ErrorResponse")
* )
* )
*/
public function store(Request $request)
{
return ApiResponse::handle(function () use ($request) {
// Service implementation needed
return [];
}, __('message.settings.common_code_saved'));
}
/**
* @OA\Patch(
* path="/api/v1/settings/common/{id}",
* summary="공통 코드 수정",
* description="기존 공통 코드를 수정합니다.",
* tags={"Settings - Common Codes"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
* @OA\Parameter(
* name="id",
* in="path",
* required=true,
* description="공통 코드 ID",
* @OA\Schema(type="integer", example=1)
* ),
* @OA\RequestBody(
* required=true,
* @OA\JsonContent(
* type="object",
* @OA\Property(property="name", type="string", example="수정된 이름"),
* @OA\Property(property="description", type="string", example="수정된 설명")
* )
* ),
* @OA\Response(
* response=200,
* description="공통 코드 수정 성공"
* ),
* @OA\Response(
* response=404,
* description="공통 코드를 찾을 수 없음",
* @OA\JsonContent(
* type="object",
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="해당 공통 코드를 찾을 수 없습니다.")
* )
* ),
* @OA\Response(
* response=422,
* description="유효성 검사 실패",
* @OA\JsonContent(ref="#/components/schemas/ErrorResponse")
* )
* )
*/
public function update(Request $request, int $id)
{
return ApiResponse::handle(function () use ($request, $id) {
// Service implementation needed
return [];
}, __('message.updated'));
}
/**
* @OA\Delete(
* path="/api/v1/settings/common/{id}",
* summary="공통 코드 삭제",
* description="공통 코드를 삭제합니다.",
* tags={"Settings - Common Codes"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
* @OA\Parameter(
* name="id",
* in="path",
* required=true,
* description="공통 코드 ID",
* @OA\Schema(type="integer", example=1)
* ),
* @OA\Response(
* response=200,
* description="공통 코드 삭제 성공"
* ),
* @OA\Response(
* response=404,
* description="공통 코드를 찾을 수 없음",
* @OA\JsonContent(
* type="object",
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="해당 공통 코드를 찾을 수 없습니다.")
* )
* )
* )
*/
public function destroy(Request $request, int $id)
{
return ApiResponse::handle(function () use ($id) {
// Service implementation needed
return [];
}, __('message.deleted'));
}
}