mirror of
https://github.com/won-ktds/smarketing-backend.git
synced 2025-12-06 15:16:23 +00:00
add img svc
This commit is contained in:
parent
d55f5a4a82
commit
cc871cddab
@ -3,6 +3,10 @@ plugins {
|
|||||||
id 'org.springframework.boot' version '3.2.0'
|
id 'org.springframework.boot' version '3.2.0'
|
||||||
id 'io.spring.dependency-management' version '1.1.4'
|
id 'io.spring.dependency-management' version '1.1.4'
|
||||||
}
|
}
|
||||||
|
// 루트 프로젝트에서는 bootJar 태스크 비활성화
|
||||||
|
bootJar {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = 'com.won.smarketing'
|
group = 'com.won.smarketing'
|
||||||
|
|||||||
@ -35,6 +35,15 @@ public enum ErrorCode {
|
|||||||
RECOMMENDATION_FAILED(HttpStatus.INTERNAL_SERVER_ERROR, "R001", "추천 생성에 실패했습니다."),
|
RECOMMENDATION_FAILED(HttpStatus.INTERNAL_SERVER_ERROR, "R001", "추천 생성에 실패했습니다."),
|
||||||
EXTERNAL_API_ERROR(HttpStatus.SERVICE_UNAVAILABLE, "R002", "외부 API 호출에 실패했습니다."),
|
EXTERNAL_API_ERROR(HttpStatus.SERVICE_UNAVAILABLE, "R002", "외부 API 호출에 실패했습니다."),
|
||||||
|
|
||||||
|
FILE_NOT_FOUND(HttpStatus.NOT_FOUND, "F001", "파일을 찾을 수 없습니다."),
|
||||||
|
FILE_UPLOAD_FAILED(HttpStatus.INTERNAL_SERVER_ERROR, "F002", "파일 업로드에 실패했습니다."),
|
||||||
|
FILE_SIZE_EXCEEDED(HttpStatus.NOT_FOUND, "F003", "파일 크기가 제한을 초과했습니다."),
|
||||||
|
INVALID_FILE_EXTENSION(HttpStatus.NOT_FOUND, "F004", "지원하지 않는 파일 확장자입니다."),
|
||||||
|
INVALID_FILE_TYPE(HttpStatus.NOT_FOUND, "F005", "지원하지 않는 파일 형식입니다."),
|
||||||
|
INVALID_FILE_NAME(HttpStatus.NOT_FOUND, "F006", "잘못된 파일명입니다."),
|
||||||
|
INVALID_FILE_URL(HttpStatus.NOT_FOUND, "F007", "잘못된 파일 URL입니다."),
|
||||||
|
STORAGE_CONTAINER_ERROR(HttpStatus.INTERNAL_SERVER_ERROR, "F008", "스토리지 컨테이너 오류가 발생했습니다."),
|
||||||
|
|
||||||
// 공통 오류
|
// 공통 오류
|
||||||
INTERNAL_SERVER_ERROR(HttpStatus.INTERNAL_SERVER_ERROR, "G001", "서버 내부 오류가 발생했습니다."),
|
INTERNAL_SERVER_ERROR(HttpStatus.INTERNAL_SERVER_ERROR, "G001", "서버 내부 오류가 발생했습니다."),
|
||||||
INVALID_INPUT_VALUE(HttpStatus.BAD_REQUEST, "G002", "잘못된 입력값입니다."),
|
INVALID_INPUT_VALUE(HttpStatus.BAD_REQUEST, "G002", "잘못된 입력값입니다."),
|
||||||
|
|||||||
@ -1,4 +1,8 @@
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':common')
|
implementation project(':common')
|
||||||
runtimeOnly 'com.mysql:mysql-connector-j'
|
runtimeOnly 'com.mysql:mysql-connector-j'
|
||||||
|
|
||||||
|
// Azure Blob Storage 의존성 추가
|
||||||
|
implementation 'com.azure:azure-storage-blob:12.25.0'
|
||||||
|
implementation 'com.azure:azure-identity:1.11.1'
|
||||||
}
|
}
|
||||||
@ -0,0 +1,72 @@
|
|||||||
|
// store/src/main/java/com/won/smarketing/store/config/AzureBlobStorageConfig.java
|
||||||
|
package com.won.smarketing.store.config;
|
||||||
|
|
||||||
|
import com.azure.identity.DefaultAzureCredentialBuilder;
|
||||||
|
import com.azure.storage.blob.BlobServiceClient;
|
||||||
|
import com.azure.storage.blob.BlobServiceClientBuilder;
|
||||||
|
import com.azure.storage.common.StorageSharedKeyCredential;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Azure Blob Storage 설정 클래스
|
||||||
|
* Azure Blob Storage와의 연결을 위한 설정
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
@Slf4j
|
||||||
|
public class AzureBlobStorageConfig {
|
||||||
|
|
||||||
|
@Value("${azure.storage.account-name}")
|
||||||
|
private String accountName;
|
||||||
|
|
||||||
|
@Value("${azure.storage.account-key:}")
|
||||||
|
private String accountKey;
|
||||||
|
|
||||||
|
@Value("${azure.storage.endpoint:}")
|
||||||
|
private String endpoint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Azure Blob Storage Service Client 생성
|
||||||
|
*
|
||||||
|
* @return BlobServiceClient 인스턴스
|
||||||
|
*/
|
||||||
|
@Bean
|
||||||
|
public BlobServiceClient blobServiceClient() {
|
||||||
|
try {
|
||||||
|
// Managed Identity 사용 시 (Azure 환경에서 권장)
|
||||||
|
if (accountKey == null || accountKey.isEmpty()) {
|
||||||
|
log.info("Azure Blob Storage 연결 - Managed Identity 사용");
|
||||||
|
return new BlobServiceClientBuilder()
|
||||||
|
.endpoint(getEndpoint())
|
||||||
|
.credential(new DefaultAzureCredentialBuilder().build())
|
||||||
|
.buildClient();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Account Key 사용 시 (개발 환경용)
|
||||||
|
log.info("Azure Blob Storage 연결 - Account Key 사용");
|
||||||
|
StorageSharedKeyCredential credential = new StorageSharedKeyCredential(accountName, accountKey);
|
||||||
|
return new BlobServiceClientBuilder()
|
||||||
|
.endpoint(getEndpoint())
|
||||||
|
.credential(credential)
|
||||||
|
.buildClient();
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("Azure Blob Storage 클라이언트 생성 실패", e);
|
||||||
|
throw new RuntimeException("Azure Blob Storage 연결 실패", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Storage Account 엔드포인트 URL 생성
|
||||||
|
*
|
||||||
|
* @return 엔드포인트 URL
|
||||||
|
*/
|
||||||
|
private String getEndpoint() {
|
||||||
|
if (endpoint != null && !endpoint.isEmpty()) {
|
||||||
|
return endpoint;
|
||||||
|
}
|
||||||
|
return String.format("https://%s.blob.core.windows.net", accountName);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,155 @@
|
|||||||
|
// store/src/main/java/com/won/smarketing/store/controller/ImageController.java
|
||||||
|
package com.won.smarketing.store.controller;
|
||||||
|
|
||||||
|
import com.won.smarketing.store.dto.ImageUploadResponse;
|
||||||
|
import com.won.smarketing.store.dto.MenuResponse;
|
||||||
|
import com.won.smarketing.store.dto.StoreResponse;
|
||||||
|
import com.won.smarketing.store.service.BlobStorageService;
|
||||||
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
|
import io.swagger.v3.oas.annotations.Parameter;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Content;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import io.swagger.v3.oas.annotations.responses.ApiResponse;
|
||||||
|
import io.swagger.v3.oas.annotations.responses.ApiResponses;
|
||||||
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.http.HttpStatus;
|
||||||
|
import org.springframework.http.MediaType;
|
||||||
|
import org.springframework.http.ResponseEntity;
|
||||||
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 이미지 업로드 API 컨트롤러
|
||||||
|
* 메뉴 이미지, 매장 이미지 업로드 기능 제공
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/api/images")
|
||||||
|
@RequiredArgsConstructor
|
||||||
|
@Slf4j
|
||||||
|
@Tag(name = "이미지 업로드 API", description = "메뉴 및 매장 이미지 업로드 관리")
|
||||||
|
public class ImageController {
|
||||||
|
|
||||||
|
private final BlobStorageService blobStorageService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 메뉴 이미지 업로드
|
||||||
|
*
|
||||||
|
* @param menuId 메뉴 ID
|
||||||
|
* @param file 업로드할 이미지 파일
|
||||||
|
* @return 업로드 결과
|
||||||
|
*/
|
||||||
|
@PostMapping(value = "/menu/{menuId}", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
||||||
|
@Operation(summary = "메뉴 이미지 업로드", description = "메뉴의 이미지를 Azure Blob Storage에 업로드합니다.")
|
||||||
|
@ApiResponses(value = {
|
||||||
|
@ApiResponse(responseCode = "200", description = "이미지 업로드 성공",
|
||||||
|
content = @Content(schema = @Schema(implementation = ImageUploadResponse.class))),
|
||||||
|
@ApiResponse(responseCode = "400", description = "잘못된 요청 (파일 형식, 크기 등)"),
|
||||||
|
@ApiResponse(responseCode = "404", description = "메뉴를 찾을 수 없음"),
|
||||||
|
@ApiResponse(responseCode = "500", description = "서버 오류")
|
||||||
|
})
|
||||||
|
public ResponseEntity<MenuResponse> uploadMenuImage(
|
||||||
|
@Parameter(description = "메뉴 ID", required = true)
|
||||||
|
@PathVariable Long menuId,
|
||||||
|
@Parameter(description = "업로드할 이미지 파일", required = true)
|
||||||
|
@RequestParam("file") MultipartFile file) {
|
||||||
|
|
||||||
|
log.info("메뉴 이미지 업로드 요청 - 메뉴 ID: {}, 파일: {}", menuId, file.getOriginalFilename());
|
||||||
|
|
||||||
|
MenuResponse response = blobStorageService.uploadMenuImage(file, menuId);
|
||||||
|
|
||||||
|
return ResponseEntity.ok(response);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 매장 이미지 업로드
|
||||||
|
*
|
||||||
|
* @param storeId 매장 ID
|
||||||
|
* @param file 업로드할 이미지 파일
|
||||||
|
* @return 업로드 결과
|
||||||
|
*/
|
||||||
|
@PostMapping(value = "/store/{storeId}", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
||||||
|
@Operation(summary = "매장 이미지 업로드", description = "매장의 이미지를 Azure Blob Storage에 업로드합니다.")
|
||||||
|
@ApiResponses(value = {
|
||||||
|
@ApiResponse(responseCode = "200", description = "이미지 업로드 성공",
|
||||||
|
content = @Content(schema = @Schema(implementation = ImageUploadResponse.class))),
|
||||||
|
@ApiResponse(responseCode = "400", description = "잘못된 요청 (파일 형식, 크기 등)"),
|
||||||
|
@ApiResponse(responseCode = "404", description = "매장을 찾을 수 없음"),
|
||||||
|
@ApiResponse(responseCode = "500", description = "서버 오류")
|
||||||
|
})
|
||||||
|
public ResponseEntity<StoreResponse> uploadStoreImage(
|
||||||
|
@Parameter(description = "매장 ID", required = true)
|
||||||
|
@PathVariable Long storeId,
|
||||||
|
@Parameter(description = "업로드할 이미지 파일", required = true)
|
||||||
|
@RequestParam("file") MultipartFile file) {
|
||||||
|
|
||||||
|
log.info("매장 이미지 업로드 요청 - 매장 ID: {}, 파일: {}", storeId, file.getOriginalFilename());
|
||||||
|
StoreResponse response = blobStorageService.uploadStoreImage(file, storeId);
|
||||||
|
|
||||||
|
return ResponseEntity.ok(response);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 이미지 삭제
|
||||||
|
*
|
||||||
|
* @param imageUrl 삭제할 이미지 URL
|
||||||
|
* @return 삭제 결과
|
||||||
|
*/
|
||||||
|
//@DeleteMapping
|
||||||
|
//@Operation(summary = "이미지 삭제", description = "Azure Blob Storage에서 이미지를 삭제합니다.")
|
||||||
|
// @ApiResponses(value = {
|
||||||
|
// @ApiResponse(responseCode = "200", description = "이미지 삭제 성공"),
|
||||||
|
// @ApiResponse(responseCode = "400", description = "잘못된 요청"),
|
||||||
|
// @ApiResponse(responseCode = "404", description = "이미지를 찾을 수 없음"),
|
||||||
|
// @ApiResponse(responseCode = "500", description = "서버 오류")
|
||||||
|
// })
|
||||||
|
// public ResponseEntity<ImageUploadResponse> deleteImage(
|
||||||
|
// @Parameter(description = "삭제할 이미지 URL", required = true)
|
||||||
|
// @RequestParam String imageUrl) {
|
||||||
|
//
|
||||||
|
// log.info("이미지 삭제 요청 - URL: {}", imageUrl);
|
||||||
|
//
|
||||||
|
// try {
|
||||||
|
// boolean deleted = blobStorageService.deleteFile(imageUrl);
|
||||||
|
//
|
||||||
|
// ImageUploadResponse response = ImageUploadResponse.builder()
|
||||||
|
// .imageUrl(imageUrl)
|
||||||
|
// .success(deleted)
|
||||||
|
// .message(deleted ? "이미지 삭제가 완료되었습니다." : "삭제할 이미지를 찾을 수 없습니다.")
|
||||||
|
// .build();
|
||||||
|
//
|
||||||
|
// return ResponseEntity.ok(response);
|
||||||
|
//
|
||||||
|
// } catch (Exception e) {
|
||||||
|
// log.error("이미지 삭제 실패 - URL: {}", imageUrl, e);
|
||||||
|
//
|
||||||
|
// ImageUploadResponse response = ImageUploadResponse.builder()
|
||||||
|
// .imageUrl(imageUrl)
|
||||||
|
// .success(false)
|
||||||
|
// .message("이미지 삭제에 실패했습니다: " + e.getMessage())
|
||||||
|
// .build();
|
||||||
|
//
|
||||||
|
// return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(response);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* URL에서 파일명 추출
|
||||||
|
*
|
||||||
|
* @param url 파일 URL
|
||||||
|
* @return 파일명
|
||||||
|
*/
|
||||||
|
private String extractFileNameFromUrl(String url) {
|
||||||
|
if (url == null || url.isEmpty()) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
return url.substring(url.lastIndexOf('/') + 1);
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.warn("URL에서 파일명 추출 실패: {}", url);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,18 +1,27 @@
|
|||||||
package com.won.smarketing.store.controller;
|
package com.won.smarketing.store.controller;
|
||||||
|
|
||||||
import com.won.smarketing.common.dto.ApiResponse;
|
import com.won.smarketing.common.dto.ApiResponse;
|
||||||
|
import com.won.smarketing.store.dto.ImageUploadResponse;
|
||||||
import com.won.smarketing.store.dto.MenuCreateRequest;
|
import com.won.smarketing.store.dto.MenuCreateRequest;
|
||||||
import com.won.smarketing.store.dto.MenuResponse;
|
import com.won.smarketing.store.dto.MenuResponse;
|
||||||
import com.won.smarketing.store.dto.MenuUpdateRequest;
|
import com.won.smarketing.store.dto.MenuUpdateRequest;
|
||||||
|
import com.won.smarketing.store.service.BlobStorageService;
|
||||||
import com.won.smarketing.store.service.MenuService;
|
import com.won.smarketing.store.service.MenuService;
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
import io.swagger.v3.oas.annotations.Parameter;
|
import io.swagger.v3.oas.annotations.Parameter;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Content;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import io.swagger.v3.oas.annotations.responses.ApiResponses;
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import org.springframework.http.HttpStatus;
|
||||||
|
import org.springframework.http.MediaType;
|
||||||
import org.springframework.http.ResponseEntity;
|
import org.springframework.http.ResponseEntity;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
import jakarta.validation.Valid;
|
import jakarta.validation.Valid;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -0,0 +1,25 @@
|
|||||||
|
// store/src/main/java/com/won/smarketing/store/dto/ImageUploadRequest.java
|
||||||
|
package com.won.smarketing.store.dto;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 이미지 업로드 요청 DTO
|
||||||
|
* 이미지 파일 업로드 시 필요한 정보를 전달합니다.
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
@Schema(description = "이미지 업로드 요청")
|
||||||
|
public class ImageUploadRequest {
|
||||||
|
|
||||||
|
@Schema(description = "업로드할 이미지 파일", required = true)
|
||||||
|
@NotNull(message = "이미지 파일은 필수입니다")
|
||||||
|
private MultipartFile file;
|
||||||
|
}
|
||||||
@ -0,0 +1,37 @@
|
|||||||
|
// store/src/main/java/com/won/smarketing/store/dto/ImageUploadResponse.java
|
||||||
|
package com.won.smarketing.store.dto;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Builder;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 이미지 업로드 응답 DTO
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
@Builder
|
||||||
|
@Schema(description = "이미지 업로드 응답")
|
||||||
|
public class ImageUploadResponse {
|
||||||
|
|
||||||
|
@Schema(description = "업로드된 이미지 URL", example = "https://storage.blob.core.windows.net/menu-images/menu_123_20241201_143000_abc12345.jpg")
|
||||||
|
private String imageUrl;
|
||||||
|
|
||||||
|
@Schema(description = "원본 파일명", example = "americano.jpg")
|
||||||
|
private String originalFileName;
|
||||||
|
|
||||||
|
@Schema(description = "저장된 파일명", example = "menu_123_20241201_143000_abc12345.jpg")
|
||||||
|
private String savedFileName;
|
||||||
|
|
||||||
|
@Schema(description = "파일 크기 (바이트)", example = "1024000")
|
||||||
|
private Long fileSize;
|
||||||
|
|
||||||
|
@Schema(description = "업로드 성공 여부", example = "true")
|
||||||
|
private boolean success;
|
||||||
|
|
||||||
|
@Schema(description = "메시지", example = "이미지 업로드가 완료되었습니다.")
|
||||||
|
private String message;
|
||||||
|
}
|
||||||
@ -39,10 +39,6 @@ public class MenuCreateRequest {
|
|||||||
@Schema(description = "메뉴 설명", example = "진한 맛의 아메리카노")
|
@Schema(description = "메뉴 설명", example = "진한 맛의 아메리카노")
|
||||||
@Size(max = 500, message = "메뉴 설명은 500자 이하여야 합니다")
|
@Size(max = 500, message = "메뉴 설명은 500자 이하여야 합니다")
|
||||||
private String description;
|
private String description;
|
||||||
|
|
||||||
@Schema(description = "이미지 URL", example = "https://example.com/americano.jpg")
|
|
||||||
@Size(max = 500, message = "이미지 URL은 500자 이하여야 합니다")
|
|
||||||
private String image;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -8,6 +8,7 @@ import lombok.NoArgsConstructor;
|
|||||||
|
|
||||||
import jakarta.validation.constraints.Min;
|
import jakarta.validation.constraints.Min;
|
||||||
import jakarta.validation.constraints.Size;
|
import jakarta.validation.constraints.Size;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 메뉴 수정 요청 DTO
|
* 메뉴 수정 요청 DTO
|
||||||
@ -35,6 +36,7 @@ public class MenuUpdateRequest {
|
|||||||
@Schema(description = "메뉴 설명", example = "진한 원두의 깊은 맛")
|
@Schema(description = "메뉴 설명", example = "진한 원두의 깊은 맛")
|
||||||
private String description;
|
private String description;
|
||||||
|
|
||||||
@Schema(description = "메뉴 이미지 URL", example = "https://example.com/americano.jpg")
|
@Schema(description = "이미지")
|
||||||
private String image;
|
@Size(max = 500, message = "이미지 URL은 500자 이하여야 합니다")
|
||||||
|
private MultipartFile image;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
package com.won.smarketing.store.dto;
|
package com.won.smarketing.store.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import jakarta.persistence.Column;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.Builder;
|
import lombok.Builder;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
@ -28,6 +29,9 @@ public class StoreResponse {
|
|||||||
@Schema(description = "업종", example = "카페")
|
@Schema(description = "업종", example = "카페")
|
||||||
private String businessType;
|
private String businessType;
|
||||||
|
|
||||||
|
@Schema(description = "가게 사진")
|
||||||
|
private String storeImage;
|
||||||
|
|
||||||
@Schema(description = "주소", example = "서울시 강남구 테헤란로 123")
|
@Schema(description = "주소", example = "서울시 강남구 테헤란로 123")
|
||||||
private String address;
|
private String address;
|
||||||
|
|
||||||
|
|||||||
@ -62,10 +62,9 @@ public class Menu {
|
|||||||
* @param category 카테고리
|
* @param category 카테고리
|
||||||
* @param price 가격
|
* @param price 가격
|
||||||
* @param description 설명
|
* @param description 설명
|
||||||
* @param image 이미지 URL
|
|
||||||
*/
|
*/
|
||||||
public void updateMenu(String menuName, String category, Integer price,
|
public void updateMenu(String menuName, String category, Integer price,
|
||||||
String description, String image) {
|
String description) {
|
||||||
if (menuName != null && !menuName.trim().isEmpty()) {
|
if (menuName != null && !menuName.trim().isEmpty()) {
|
||||||
this.menuName = menuName;
|
this.menuName = menuName;
|
||||||
}
|
}
|
||||||
@ -76,6 +75,16 @@ public class Menu {
|
|||||||
this.price = price;
|
this.price = price;
|
||||||
}
|
}
|
||||||
this.description = description;
|
this.description = description;
|
||||||
this.image = image;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 메뉴 이미지 URL 업데이트
|
||||||
|
*
|
||||||
|
* @param imageUrl 새로운 이미지 URL
|
||||||
|
*/
|
||||||
|
public void updateImage(String imageUrl) {
|
||||||
|
this.image = imageUrl;
|
||||||
|
this.updatedAt = LocalDateTime.now();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -60,6 +60,9 @@ public class Store {
|
|||||||
@Column(name = "description", length = 1000)
|
@Column(name = "description", length = 1000)
|
||||||
private String description;
|
private String description;
|
||||||
|
|
||||||
|
@Column(name = "store_image", length = 1000)
|
||||||
|
private String storeImage;
|
||||||
|
|
||||||
@CreatedDate
|
@CreatedDate
|
||||||
@Column(name = "created_at", nullable = false, updatable = false)
|
@Column(name = "created_at", nullable = false, updatable = false)
|
||||||
private LocalDateTime createdAt;
|
private LocalDateTime createdAt;
|
||||||
@ -100,4 +103,14 @@ public class Store {
|
|||||||
this.snsAccounts = snsAccounts;
|
this.snsAccounts = snsAccounts;
|
||||||
this.description = description;
|
this.description = description;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 메뉴 이미지 URL 업데이트
|
||||||
|
*
|
||||||
|
* @param imageUrl 새로운 이미지 URL
|
||||||
|
*/
|
||||||
|
public void updateImage(String imageUrl) {
|
||||||
|
this.storeImage = imageUrl;
|
||||||
|
this.updatedAt = LocalDateTime.now();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,55 @@
|
|||||||
|
// store/src/main/java/com/won/smarketing/store/service/BlobStorageService.java
|
||||||
|
package com.won.smarketing.store.service;
|
||||||
|
|
||||||
|
import com.won.smarketing.store.dto.MenuResponse;
|
||||||
|
import com.won.smarketing.store.dto.StoreResponse;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Azure Blob Storage 서비스 인터페이스
|
||||||
|
* 파일 업로드, 다운로드, 삭제 기능 정의
|
||||||
|
*/
|
||||||
|
public interface BlobStorageService {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 이미지 파일 업로드
|
||||||
|
*
|
||||||
|
* @param file 업로드할 파일
|
||||||
|
* @param containerName 컨테이너 이름
|
||||||
|
* @param fileName 저장할 파일명
|
||||||
|
* @return 업로드된 파일의 URL
|
||||||
|
*/
|
||||||
|
String uploadImage(MultipartFile file, String containerName, String fileName);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 메뉴 이미지 업로드 (편의 메서드)
|
||||||
|
*
|
||||||
|
* @param file 업로드할 파일
|
||||||
|
* @return 업로드된 파일의 URL
|
||||||
|
*/
|
||||||
|
MenuResponse uploadMenuImage(MultipartFile file, Long menuId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 매장 이미지 업로드 (편의 메서드)
|
||||||
|
*
|
||||||
|
* @param file 업로드할 파일
|
||||||
|
* @param storeId 매장 ID
|
||||||
|
* @return 업로드된 파일의 URL
|
||||||
|
*/
|
||||||
|
StoreResponse uploadStoreImage(MultipartFile file, Long storeId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 파일 삭제
|
||||||
|
*
|
||||||
|
* @param fileUrl 삭제할 파일의 URL
|
||||||
|
* @return 삭제 성공 여부
|
||||||
|
*/
|
||||||
|
//boolean deleteFile(String fileUrl);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 컨테이너 존재 여부 확인 및 생성
|
||||||
|
*
|
||||||
|
* @param containerName 컨테이너 이름
|
||||||
|
*/
|
||||||
|
void ensureContainerExists(String containerName);
|
||||||
|
}
|
||||||
@ -0,0 +1,331 @@
|
|||||||
|
// store/src/main/java/com/won/smarketing/store/service/BlobStorageServiceImpl.java
|
||||||
|
package com.won.smarketing.store.service;
|
||||||
|
|
||||||
|
import com.azure.core.util.BinaryData;
|
||||||
|
import com.azure.storage.blob.BlobClient;
|
||||||
|
import com.azure.storage.blob.BlobContainerClient;
|
||||||
|
import com.azure.storage.blob.BlobServiceClient;
|
||||||
|
import com.azure.storage.blob.models.BlobHttpHeaders;
|
||||||
|
import com.azure.storage.blob.models.PublicAccessType;
|
||||||
|
import com.won.smarketing.common.exception.BusinessException;
|
||||||
|
import com.won.smarketing.common.exception.ErrorCode;
|
||||||
|
import com.won.smarketing.store.dto.MenuResponse;
|
||||||
|
import com.won.smarketing.store.dto.StoreResponse;
|
||||||
|
import com.won.smarketing.store.entity.Menu;
|
||||||
|
import com.won.smarketing.store.entity.Store;
|
||||||
|
import com.won.smarketing.store.repository.MenuRepository;
|
||||||
|
import com.won.smarketing.store.repository.StoreRepository;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.time.format.DateTimeFormatter;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Azure Blob Storage 서비스 구현체
|
||||||
|
* 이미지 파일 업로드, 삭제 기능 구현
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@RequiredArgsConstructor
|
||||||
|
@Slf4j
|
||||||
|
public class BlobStorageServiceImpl implements BlobStorageService {
|
||||||
|
|
||||||
|
private final BlobServiceClient blobServiceClient;
|
||||||
|
private final MenuRepository menuRepository;
|
||||||
|
private final StoreRepository storeRepository;
|
||||||
|
|
||||||
|
@Value("${azure.storage.container.menu-images:menu-images}")
|
||||||
|
private String menuImageContainer;
|
||||||
|
|
||||||
|
@Value("${azure.storage.container.store-images:store-images}")
|
||||||
|
private String storeImageContainer;
|
||||||
|
|
||||||
|
@Value("${azure.storage.max-file-size:10485760}") // 10MB
|
||||||
|
private long maxFileSize;
|
||||||
|
|
||||||
|
// 허용되는 이미지 확장자
|
||||||
|
private static final List<String> ALLOWED_EXTENSIONS = Arrays.asList(
|
||||||
|
"jpg", "jpeg", "png", "gif", "bmp", "webp"
|
||||||
|
);
|
||||||
|
|
||||||
|
// 허용되는 MIME 타입
|
||||||
|
private static final List<String> ALLOWED_MIME_TYPES = Arrays.asList(
|
||||||
|
"image/jpeg", "image/png", "image/gif", "image/bmp", "image/webp"
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 이미지 파일 업로드
|
||||||
|
*
|
||||||
|
* @param file 업로드할 파일
|
||||||
|
* @param containerName 컨테이너 이름
|
||||||
|
* @param fileName 저장할 파일명
|
||||||
|
* @return 업로드된 파일의 URL
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String uploadImage(MultipartFile file, String containerName, String fileName) {
|
||||||
|
// 파일 유효성 검증
|
||||||
|
validateImageFile(file);
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 컨테이너 존재 확인 및 생성
|
||||||
|
ensureContainerExists(containerName);
|
||||||
|
|
||||||
|
// Blob 클라이언트 생성
|
||||||
|
BlobContainerClient containerClient = blobServiceClient.getBlobContainerClient(containerName);
|
||||||
|
BlobClient blobClient = containerClient.getBlobClient(fileName);
|
||||||
|
|
||||||
|
// 파일 업로드 (간단한 방식)
|
||||||
|
BinaryData binaryData = BinaryData.fromBytes(file.getBytes());
|
||||||
|
|
||||||
|
// 파일 업로드 실행 (덮어쓰기 허용)
|
||||||
|
blobClient.upload(binaryData, true);
|
||||||
|
|
||||||
|
// Content-Type 설정
|
||||||
|
BlobHttpHeaders headers = new BlobHttpHeaders().setContentType(file.getContentType());
|
||||||
|
blobClient.setHttpHeaders(headers);
|
||||||
|
|
||||||
|
String fileUrl = blobClient.getBlobUrl();
|
||||||
|
log.info("이미지 업로드 성공: {}", fileUrl);
|
||||||
|
|
||||||
|
return fileUrl;
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
log.error("이미지 업로드 실패 - 파일 읽기 오류: {}", e.getMessage());
|
||||||
|
throw new BusinessException(ErrorCode.FILE_UPLOAD_FAILED);
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("이미지 업로드 실패: {}", e.getMessage());
|
||||||
|
throw new BusinessException(ErrorCode.FILE_UPLOAD_FAILED);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 메뉴 이미지 업로드
|
||||||
|
*
|
||||||
|
* @param file 업로드할 파일
|
||||||
|
* @return 업로드된 파일의 URL
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public MenuResponse uploadMenuImage(MultipartFile file, Long menuId) {
|
||||||
|
String fileName = generateMenuImageFileName(file.getOriginalFilename());
|
||||||
|
|
||||||
|
//메뉴id로 데이터를 찾아서
|
||||||
|
Menu menu = menuRepository.findById(menuId)
|
||||||
|
.orElseThrow(() -> new BusinessException(ErrorCode.MENU_NOT_FOUND));
|
||||||
|
|
||||||
|
// 기존 이미지가 있다면 삭제
|
||||||
|
if (menu.getImage() != null && !menu.getImage().isEmpty()) {
|
||||||
|
deleteFile(menu.getImage());
|
||||||
|
}
|
||||||
|
|
||||||
|
//새로 올리고
|
||||||
|
String fileUrl = uploadImage(file, menuImageContainer, fileName);
|
||||||
|
|
||||||
|
//메뉴에 다시 저장
|
||||||
|
menu.updateImage(fileUrl);
|
||||||
|
menuRepository.save(menu);
|
||||||
|
|
||||||
|
return MenuResponse.builder()
|
||||||
|
.menuId(menu.getMenuId())
|
||||||
|
.menuName(menu.getMenuName())
|
||||||
|
.category(menu.getCategory())
|
||||||
|
.price(menu.getPrice())
|
||||||
|
.image(fileUrl)
|
||||||
|
.description(menu.getDescription())
|
||||||
|
.createdAt(menu.getCreatedAt())
|
||||||
|
.updatedAt(menu.getUpdatedAt())
|
||||||
|
.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 매장 이미지 업로드
|
||||||
|
*
|
||||||
|
* @param file 업로드할 파일
|
||||||
|
* @param storeId 매장 ID
|
||||||
|
* @return 업로드된 파일의 URL
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public StoreResponse uploadStoreImage(MultipartFile file, Long storeId) {
|
||||||
|
String fileName = generateStoreImageFileName(storeId, file.getOriginalFilename());
|
||||||
|
|
||||||
|
Store store = storeRepository.findById(storeId)
|
||||||
|
.orElseThrow(() -> new BusinessException(ErrorCode.STORE_NOT_FOUND));
|
||||||
|
|
||||||
|
// 기존 이미지가 있다면 삭제
|
||||||
|
if (store.getStoreImage() != null && !store.getStoreImage().isEmpty()) {
|
||||||
|
deleteFile(store.getStoreImage());
|
||||||
|
}
|
||||||
|
//새로 올리고
|
||||||
|
String fileUrl = uploadImage(file, storeImageContainer, fileName);
|
||||||
|
|
||||||
|
store.updateImage(fileUrl);
|
||||||
|
storeRepository.save(store);
|
||||||
|
|
||||||
|
return StoreResponse.builder()
|
||||||
|
.storeId(store.getId())
|
||||||
|
.storeName(store.getStoreName())
|
||||||
|
.businessType(store.getBusinessType())
|
||||||
|
.address(store.getAddress())
|
||||||
|
.phoneNumber(store.getPhoneNumber())
|
||||||
|
.businessHours(store.getBusinessHours())
|
||||||
|
.closedDays(store.getClosedDays())
|
||||||
|
.seatCount(store.getSeatCount())
|
||||||
|
.snsAccounts(store.getSnsAccounts())
|
||||||
|
.storeImage(fileUrl)
|
||||||
|
.description(store.getDescription())
|
||||||
|
.createdAt(store.getCreatedAt())
|
||||||
|
.updatedAt(store.getUpdatedAt())
|
||||||
|
.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 파일 삭제
|
||||||
|
*
|
||||||
|
* @param fileUrl 삭제할 파일의 URL
|
||||||
|
*/
|
||||||
|
// @Override
|
||||||
|
public void deleteFile(String fileUrl) {
|
||||||
|
try {
|
||||||
|
// URL에서 컨테이너명과 파일명 추출
|
||||||
|
String[] urlParts = extractContainerAndFileName(fileUrl);
|
||||||
|
String containerName = urlParts[0];
|
||||||
|
String fileName = urlParts[1];
|
||||||
|
|
||||||
|
BlobContainerClient containerClient = blobServiceClient.getBlobContainerClient(containerName);
|
||||||
|
BlobClient blobClient = containerClient.getBlobClient(fileName);
|
||||||
|
|
||||||
|
boolean deleted = blobClient.deleteIfExists();
|
||||||
|
|
||||||
|
if (deleted) {
|
||||||
|
log.info("파일 삭제 성공: {}", fileUrl);
|
||||||
|
} else {
|
||||||
|
log.warn("파일이 존재하지 않음: {}", fileUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("파일 삭제 실패: {}", e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 컨테이너 존재 여부 확인 및 생성
|
||||||
|
*
|
||||||
|
* @param containerName 컨테이너 이름
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void ensureContainerExists(String containerName) {
|
||||||
|
try {
|
||||||
|
BlobContainerClient containerClient = blobServiceClient.getBlobContainerClient(containerName);
|
||||||
|
|
||||||
|
if (!containerClient.exists()) {
|
||||||
|
containerClient.createWithResponse(null, PublicAccessType.BLOB, null, null);
|
||||||
|
log.info("컨테이너 생성 완료: {}", containerName);
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("컨테이너 생성 실패: {}", e.getMessage());
|
||||||
|
throw new BusinessException(ErrorCode.STORAGE_CONTAINER_ERROR);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 이미지 파일 유효성 검증
|
||||||
|
*
|
||||||
|
* @param file 검증할 파일
|
||||||
|
*/
|
||||||
|
private void validateImageFile(MultipartFile file) {
|
||||||
|
// 파일 존재 여부 확인
|
||||||
|
if (file == null || file.isEmpty()) {
|
||||||
|
throw new BusinessException(ErrorCode.FILE_NOT_FOUND);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 파일 크기 확인
|
||||||
|
if (file.getSize() > maxFileSize) {
|
||||||
|
throw new BusinessException(ErrorCode.FILE_SIZE_EXCEEDED);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 파일 확장자 확인
|
||||||
|
String originalFilename = file.getOriginalFilename();
|
||||||
|
if (originalFilename == null) {
|
||||||
|
throw new BusinessException(ErrorCode.INVALID_FILE_NAME);
|
||||||
|
}
|
||||||
|
|
||||||
|
String extension = getFileExtension(originalFilename).toLowerCase();
|
||||||
|
if (!ALLOWED_EXTENSIONS.contains(extension)) {
|
||||||
|
throw new BusinessException(ErrorCode.INVALID_FILE_EXTENSION);
|
||||||
|
}
|
||||||
|
|
||||||
|
// MIME 타입 확인
|
||||||
|
String contentType = file.getContentType();
|
||||||
|
if (contentType == null || !ALLOWED_MIME_TYPES.contains(contentType)) {
|
||||||
|
throw new BusinessException(ErrorCode.INVALID_FILE_TYPE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 메뉴 이미지 파일명 생성
|
||||||
|
*
|
||||||
|
* @param originalFilename 원본 파일명
|
||||||
|
* @return 생성된 파일명
|
||||||
|
*/
|
||||||
|
private String generateMenuImageFileName(String originalFilename) {
|
||||||
|
String extension = getFileExtension(originalFilename);
|
||||||
|
String timestamp = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMdd_HHmmss"));
|
||||||
|
String uuid = UUID.randomUUID().toString().substring(0, 8);
|
||||||
|
|
||||||
|
return String.format("menu_%s_%s.%s", timestamp, uuid, extension);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 매장 이미지 파일명 생성
|
||||||
|
*
|
||||||
|
* @param storeId 매장 ID
|
||||||
|
* @param originalFilename 원본 파일명
|
||||||
|
* @return 생성된 파일명
|
||||||
|
*/
|
||||||
|
private String generateStoreImageFileName(Long storeId, String originalFilename) {
|
||||||
|
String extension = getFileExtension(originalFilename);
|
||||||
|
String timestamp = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMdd_HHmmss"));
|
||||||
|
String uuid = UUID.randomUUID().toString().substring(0, 8);
|
||||||
|
|
||||||
|
return String.format("store_%d_%s_%s.%s", storeId, timestamp, uuid, extension);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 파일 확장자 추출
|
||||||
|
*
|
||||||
|
* @param filename 파일명
|
||||||
|
* @return 확장자
|
||||||
|
*/
|
||||||
|
private String getFileExtension(String filename) {
|
||||||
|
int lastDotIndex = filename.lastIndexOf('.');
|
||||||
|
if (lastDotIndex == -1) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
return filename.substring(lastDotIndex + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* URL에서 컨테이너명과 파일명 추출
|
||||||
|
*
|
||||||
|
* @param fileUrl 파일 URL
|
||||||
|
* @return [컨테이너명, 파일명] 배열
|
||||||
|
*/
|
||||||
|
private String[] extractContainerAndFileName(String fileUrl) {
|
||||||
|
// URL 형식: https://accountname.blob.core.windows.net/container/filename
|
||||||
|
try {
|
||||||
|
String[] parts = fileUrl.split("/");
|
||||||
|
String containerName = parts[parts.length - 2];
|
||||||
|
String fileName = parts[parts.length - 1];
|
||||||
|
return new String[]{containerName, fileName};
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new BusinessException(ErrorCode.INVALID_FILE_URL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,8 +1,10 @@
|
|||||||
package com.won.smarketing.store.service;
|
package com.won.smarketing.store.service;
|
||||||
|
|
||||||
|
import com.won.smarketing.store.dto.ImageUploadResponse;
|
||||||
import com.won.smarketing.store.dto.MenuCreateRequest;
|
import com.won.smarketing.store.dto.MenuCreateRequest;
|
||||||
import com.won.smarketing.store.dto.MenuResponse;
|
import com.won.smarketing.store.dto.MenuResponse;
|
||||||
import com.won.smarketing.store.dto.MenuUpdateRequest;
|
import com.won.smarketing.store.dto.MenuUpdateRequest;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@ -43,4 +45,13 @@ public interface MenuService {
|
|||||||
* @param menuId 메뉴 ID
|
* @param menuId 메뉴 ID
|
||||||
*/
|
*/
|
||||||
void deleteMenu(Long menuId);
|
void deleteMenu(Long menuId);
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * 메뉴 이미지 업로드
|
||||||
|
// *
|
||||||
|
// * @param menuId 메뉴 ID
|
||||||
|
// * @param file 업로드할 이미지 파일
|
||||||
|
// * @return 이미지 업로드 결과
|
||||||
|
// */
|
||||||
|
// ImageUploadResponse uploadMenuImage(Long menuId, MultipartFile file);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,7 @@ package com.won.smarketing.store.service;
|
|||||||
|
|
||||||
import com.won.smarketing.common.exception.BusinessException;
|
import com.won.smarketing.common.exception.BusinessException;
|
||||||
import com.won.smarketing.common.exception.ErrorCode;
|
import com.won.smarketing.common.exception.ErrorCode;
|
||||||
|
import com.won.smarketing.store.dto.ImageUploadResponse;
|
||||||
import com.won.smarketing.store.dto.MenuCreateRequest;
|
import com.won.smarketing.store.dto.MenuCreateRequest;
|
||||||
import com.won.smarketing.store.dto.MenuResponse;
|
import com.won.smarketing.store.dto.MenuResponse;
|
||||||
import com.won.smarketing.store.dto.MenuUpdateRequest;
|
import com.won.smarketing.store.dto.MenuUpdateRequest;
|
||||||
@ -10,6 +11,7 @@ import com.won.smarketing.store.repository.MenuRepository;
|
|||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
@ -41,7 +43,6 @@ public class MenuServiceImpl implements MenuService {
|
|||||||
.category(request.getCategory())
|
.category(request.getCategory())
|
||||||
.price(request.getPrice())
|
.price(request.getPrice())
|
||||||
.description(request.getDescription())
|
.description(request.getDescription())
|
||||||
.image(request.getImage())
|
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
Menu savedMenu = menuRepository.save(menu);
|
Menu savedMenu = menuRepository.save(menu);
|
||||||
@ -84,8 +85,7 @@ public class MenuServiceImpl implements MenuService {
|
|||||||
request.getMenuName(),
|
request.getMenuName(),
|
||||||
request.getCategory(),
|
request.getCategory(),
|
||||||
request.getPrice(),
|
request.getPrice(),
|
||||||
request.getDescription(),
|
request.getDescription()
|
||||||
request.getImage()
|
|
||||||
);
|
);
|
||||||
|
|
||||||
Menu updatedMenu = menuRepository.save(menu);
|
Menu updatedMenu = menuRepository.save(menu);
|
||||||
@ -119,9 +119,48 @@ public class MenuServiceImpl implements MenuService {
|
|||||||
.category(menu.getCategory())
|
.category(menu.getCategory())
|
||||||
.price(menu.getPrice())
|
.price(menu.getPrice())
|
||||||
.description(menu.getDescription())
|
.description(menu.getDescription())
|
||||||
.image(menu.getImage())
|
|
||||||
.createdAt(menu.getCreatedAt())
|
.createdAt(menu.getCreatedAt())
|
||||||
.updatedAt(menu.getUpdatedAt())
|
.updatedAt(menu.getUpdatedAt())
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * 메뉴 이미지 업로드
|
||||||
|
// *
|
||||||
|
// * @param menuId 메뉴 ID
|
||||||
|
// * @param file 업로드할 이미지 파일
|
||||||
|
// * @return 이미지 업로드 결과
|
||||||
|
// */
|
||||||
|
// @Override
|
||||||
|
// @Transactional
|
||||||
|
// public ImageUploadResponse uploadMenuImage(Long menuId, MultipartFile file) {
|
||||||
|
// // 메뉴 존재 여부 확인
|
||||||
|
// Menu menu = menuRepository.findById(menuId)
|
||||||
|
// .orElseThrow(() -> new BusinessException(ErrorCode.MENU_NOT_FOUND));
|
||||||
|
//
|
||||||
|
// try {
|
||||||
|
// // 기존 이미지가 있다면 삭제
|
||||||
|
// if (menu.getImage() != null && !menu.getImage().isEmpty()) {
|
||||||
|
// blobStorageService.deleteFile(menu.getImage());
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// // 새 이미지 업로드
|
||||||
|
// String imageUrl = blobStorageService.uploadMenuImage(file, menuId);
|
||||||
|
//
|
||||||
|
// // 메뉴 엔티티의 이미지 URL 업데이트
|
||||||
|
// menu.updateImage(imageUrl);
|
||||||
|
// menuRepository.save(menu);
|
||||||
|
//
|
||||||
|
// return ImageUploadResponse.builder()
|
||||||
|
// .imageUrl(imageUrl)
|
||||||
|
// .originalFileName(file.getOriginalFilename())
|
||||||
|
// .fileSize(file.getSize())
|
||||||
|
// .success(true)
|
||||||
|
// .message("메뉴 이미지 업로드가 완료되었습니다.")
|
||||||
|
// .build();
|
||||||
|
//
|
||||||
|
// } catch (Exception e) {
|
||||||
|
// throw new BusinessException(ErrorCode.FILE_UPLOAD_FAILED);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,11 @@ server:
|
|||||||
port: ${SERVER_PORT:8082}
|
port: ${SERVER_PORT:8082}
|
||||||
|
|
||||||
spring:
|
spring:
|
||||||
|
servlet:
|
||||||
|
multipart:
|
||||||
|
max-file-size: 10MB
|
||||||
|
max-request-size: 10MB
|
||||||
|
enabled: true
|
||||||
application:
|
application:
|
||||||
name: store-service
|
name: store-service
|
||||||
datasource:
|
datasource:
|
||||||
@ -31,3 +36,13 @@ jwt:
|
|||||||
secret: ${JWT_SECRET:mySecretKeyForJWTTokenGenerationAndValidation123456789}
|
secret: ${JWT_SECRET:mySecretKeyForJWTTokenGenerationAndValidation123456789}
|
||||||
access-token-validity: ${JWT_ACCESS_VALIDITY:3600000}
|
access-token-validity: ${JWT_ACCESS_VALIDITY:3600000}
|
||||||
refresh-token-validity: ${JWT_REFRESH_VALIDITY:604800000}
|
refresh-token-validity: ${JWT_REFRESH_VALIDITY:604800000}
|
||||||
|
# Azure Storage 설정
|
||||||
|
azure:
|
||||||
|
storage:
|
||||||
|
account-name: ${AZURE_STORAGE_ACCOUNT_NAME:stdigitalgarage02}
|
||||||
|
account-key: ${AZURE_STORAGE_ACCOUNT_KEY:}
|
||||||
|
endpoint: ${AZURE_STORAGE_ENDPOINT:https://stdigitalgarage02.blob.core.windows.net}
|
||||||
|
container:
|
||||||
|
menu-images: ${AZURE_STORAGE_MENU_CONTAINER:smarketing-menu-images}
|
||||||
|
store-images: ${AZURE_STORAGE_STORE_CONTAINER:smarketing-store-images}
|
||||||
|
max-file-size: ${AZURE_STORAGE_MAX_FILE_SIZE:10485760} # 10MB
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user