Skip to content

Commit 73656c3

Browse files
committed
feat(image): 이미지 업로드 전용 컨트롤러 추가
1 parent e53861f commit 73656c3

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
package com.somemore.global.imageupload.controller;
2+
3+
import com.somemore.global.auth.annotation.UserId;
4+
import com.somemore.global.common.response.ApiResponse;
5+
import com.somemore.global.imageupload.usecase.ImageUploadUseCase;
6+
import io.swagger.v3.oas.annotations.Operation;
7+
import io.swagger.v3.oas.annotations.tags.Tag;
8+
import lombok.RequiredArgsConstructor;
9+
import org.springframework.security.access.annotation.Secured;
10+
import org.springframework.web.bind.annotation.PostMapping;
11+
import org.springframework.web.bind.annotation.RequestMapping;
12+
import org.springframework.web.bind.annotation.RequestParam;
13+
import org.springframework.web.bind.annotation.RestController;
14+
15+
import java.util.UUID;
16+
17+
@Tag(name = "Presigned URL Query API", description = "이미지 업로드 URL 조회 API")
18+
@RestController
19+
@RequiredArgsConstructor
20+
@RequestMapping("/api/image")
21+
public class GetPresignedUrlController {
22+
23+
private final ImageUploadUseCase imageUploadUseCase;
24+
25+
@Secured("ROLE_VOLUNTEER, ROLE_CENTER")
26+
@PostMapping("/upload")
27+
@Operation(summary = "이미지 업로드 URL 조회", description = "이미지 업로드 URL을 조회합니다.")
28+
public ApiResponse<String> getImageUploadUrl(
29+
@UserId UUID userId,
30+
@RequestParam String fileName
31+
) {
32+
// (이미지 업로드 유저 기록 방법, TIMESTAMP OR RANDOM UUID는 모두 적용)
33+
// 1. userId를 fileName과 함께 log 기반으로 저장, 이미지 업로드 유저 기록
34+
// 2. userId를 fileName과 함께 DB에 저장(별도의 테이블), 이미지 업로드 유저 기록
35+
// 3. userId를 fileName의 prefix or suffix로 설정, 이미지 업로드 유저 기록
36+
37+
// (이미지 업로드 배드 케이스)
38+
// 1. S3에는 이미지가 있지만, DB에는 이미지 정보가 없는 경우
39+
// 클라이언트가 presignedUrl을 통해 S3에 이미지를 업로드했지만, 서버에 업로드 성공 여부를 알리지 않음.
40+
// 2. DB에는 이미지 URL이 있지만, S3에는 실제 파일이 없는 경우
41+
// 서버가 클라이언트에 presignedUrl을 제공한 직후, DB에 image_url을 저장했지만, 클라이언트가 실제로 업로드를 수행하지 않음.
42+
43+
// 해결법
44+
// 업로드 완료 여부를 검증하기 위해 비동기적으로 S3와 DB를 동기화하는 별도 프로세스를 두는 방법
45+
// AWS S3 Event Notification + 서버 사이드 워커 (예: AWS Lambda, SQS, Kafka, 배치 작업)
46+
47+
// 현재는 이미지 업로드를 성공적으로 마치고, 클라이언트가 별도의 컨트롤러를 호출해서 자신이 업로드한 이미지 URL을 잘 보내줄 것이라고 가정한 상태.
48+
return ApiResponse.ok(imageUploadUseCase.getPresignedUrl(fileName), "이미지 업로드 URL 발급 성공");
49+
}
50+
}

0 commit comments

Comments
 (0)