260 lines
12 KiB
Java
260 lines
12 KiB
Java
package com.kamco.cd.kamcoback.mapsheet;
|
|
|
|
import com.kamco.cd.kamcoback.code.dto.CommonCodeDto;
|
|
import com.kamco.cd.kamcoback.config.api.ApiResponseDto;
|
|
import com.kamco.cd.kamcoback.mapsheet.dto.FileDto.FoldersDto;
|
|
import com.kamco.cd.kamcoback.mapsheet.dto.FileDto.SrchFoldersDto;
|
|
import com.kamco.cd.kamcoback.mapsheet.dto.MapSheetMngDto;
|
|
import com.kamco.cd.kamcoback.mapsheet.service.MapSheetMngService;
|
|
import com.kamco.cd.kamcoback.model.dto.ModelMngDto.ModelUploadResDto;
|
|
import com.kamco.cd.kamcoback.upload.dto.UploadDto;
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
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 jakarta.validation.Valid;
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
import java.util.UUID;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.data.domain.Page;
|
|
import org.springframework.http.MediaType;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PutMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RequestPart;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
@Tag(name = "영상 관리", description = "영상 관리 API")
|
|
@RestController
|
|
@RequiredArgsConstructor
|
|
@RequestMapping({"/api/imagery/dataset"})
|
|
public class MapSheetMngApiController {
|
|
|
|
private final MapSheetMngService mapSheetMngService;
|
|
|
|
@Value("${file.sync-root-dir}")
|
|
private String syncRootDir;
|
|
|
|
@Value("${file.sync-tmp-dir}")
|
|
private String syncRootTmpDir;
|
|
|
|
@Operation(summary = "영상데이터관리 > 목록 조회", description = "영상데이터관리 > 목록 조회")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(
|
|
responseCode = "200",
|
|
description = "조회 성공",
|
|
content =
|
|
@Content(
|
|
mediaType = "application/json",
|
|
schema = @Schema(implementation = CommonCodeDto.Basic.class))),
|
|
@ApiResponse(responseCode = "404", description = "코드를 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@PostMapping("/mng-list")
|
|
public ApiResponseDto<List<MapSheetMngDto.MngDto>> findMapSheetMngList() {
|
|
|
|
return ApiResponseDto.ok(mapSheetMngService.findMapSheetMngList());
|
|
}
|
|
|
|
@Operation(summary = "영상데이터관리 > 상세 조회", description = "영상데이터관리 > 상세 조회")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(
|
|
responseCode = "200",
|
|
description = "조회 성공",
|
|
content =
|
|
@Content(
|
|
mediaType = "application/json",
|
|
schema = @Schema(implementation = CommonCodeDto.Basic.class))),
|
|
@ApiResponse(responseCode = "404", description = "코드를 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@GetMapping("/mng")
|
|
public ApiResponseDto<MapSheetMngDto.MngDto> findMapSheetMng(@RequestParam int mngYyyy) {
|
|
|
|
return ApiResponseDto.ok(mapSheetMngService.findMapSheetMng(mngYyyy));
|
|
}
|
|
|
|
@Operation(summary = "영상데이터관리 > 데이터 등록", description = "영상데이터관리 > 데이터 등록")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(
|
|
responseCode = "201",
|
|
description = "데이터 등록 성공",
|
|
content =
|
|
@Content(
|
|
mediaType = "application/json",
|
|
schema = @Schema(implementation = Long.class))),
|
|
@ApiResponse(responseCode = "400", description = "잘못된 요청 데이터", content = @Content),
|
|
@ApiResponse(responseCode = "404", description = "데이터를 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@PutMapping("/mng-data-save")
|
|
public ApiResponseDto<MapSheetMngDto.DmlReturn> mngDataSave(
|
|
@RequestBody @Valid MapSheetMngDto.AddReq AddReq) {
|
|
return ApiResponseDto.ok(mapSheetMngService.mngDataSave(AddReq));
|
|
}
|
|
|
|
@Operation(summary = "영상데이터관리 > 데이터 등록 > 연도 선택 목록", description = "영상데이터관리 > 데이터 등록 > 연도 선택 목록")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(
|
|
responseCode = "200",
|
|
description = "조회 성공",
|
|
content =
|
|
@Content(
|
|
mediaType = "application/json",
|
|
schema = @Schema(implementation = CommonCodeDto.Basic.class))),
|
|
@ApiResponse(responseCode = "404", description = "코드를 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@PostMapping("/mng-year-list")
|
|
public ApiResponseDto<List<Integer>> findMapSheetMngYyyyList() {
|
|
|
|
return ApiResponseDto.ok(mapSheetMngService.findMapSheetMngYyyyList());
|
|
}
|
|
|
|
@Operation(summary = "영상데이터관리 > 상세 > 오류 처리 내역", description = "영상데이터관리 > 상세 > 오류 처리 내역")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(
|
|
responseCode = "200",
|
|
description = "조회 성공",
|
|
content =
|
|
@Content(
|
|
mediaType = "application/json",
|
|
schema = @Schema(implementation = CommonCodeDto.Basic.class))),
|
|
@ApiResponse(responseCode = "404", description = "코드를 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@PostMapping("/error-list")
|
|
public ApiResponseDto<Page<MapSheetMngDto.ErrorDataDto>> findMapSheetErrorList(
|
|
@RequestBody @Valid MapSheetMngDto.ErrorSearchReq searchReq) {
|
|
return ApiResponseDto.ok(mapSheetMngService.findMapSheetErrorList(searchReq));
|
|
}
|
|
|
|
@Operation(
|
|
summary = "영상데이터관리 > 상세 > 오류 처리 내역 > 업로드 (페어 파일 저장)",
|
|
description = "영상데이터관리 > 상세 > 오류 처리 내역 > 업로드 (페어 파일 저장)")
|
|
@PostMapping(value = "/upload-pair", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
|
public ApiResponseDto<MapSheetMngDto.DmlReturn> uploadPair(
|
|
@RequestPart("tfw") MultipartFile tfwFile,
|
|
@RequestParam(value = "tifFileName") String tifFile,
|
|
@RequestParam(value = "tifFileSize") Long tifFileSize,
|
|
@RequestParam(value = "hstUid", required = false) Long hstUid) {
|
|
|
|
return ApiResponseDto.createOK(
|
|
mapSheetMngService.uploadPair(tfwFile, tifFile, hstUid, tifFileSize));
|
|
}
|
|
|
|
@Operation(
|
|
summary = "영상데이터관리 > 상세 > 오류 처리 내역 > 중복제거 > 팝업 내 해당 파일조회",
|
|
description = "영상데이터관리 > 상세 > 오류 처리 내역 > 중복제거 > 팝업 내 해당 파일조회")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(
|
|
responseCode = "201",
|
|
description = "파일조회 성공",
|
|
content =
|
|
@Content(
|
|
mediaType = "application/json",
|
|
schema = @Schema(implementation = Long.class))),
|
|
@ApiResponse(responseCode = "400", description = "잘못된 요청 데이터", content = @Content),
|
|
@ApiResponse(responseCode = "404", description = "코드를 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@GetMapping("/mng-file-list")
|
|
public ApiResponseDto<List<MapSheetMngDto.MngFilesDto>> findByHstUidMapSheetFileList(
|
|
@RequestParam @Valid Long hstUid) {
|
|
return ApiResponseDto.ok(mapSheetMngService.findByHstUidMapSheetFileList(hstUid));
|
|
}
|
|
|
|
@Operation(
|
|
summary = "영상데이터관리 > 상세 > 오류 처리 내역 > 중복제거 업데이트",
|
|
description = "영상데이터관리 > 상세 > 오류 처리 내역 > 중복제거 업데이트")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(
|
|
responseCode = "201",
|
|
description = "중복제거 업데이트 처리 성공",
|
|
content =
|
|
@Content(
|
|
mediaType = "application/json",
|
|
schema = @Schema(implementation = Long.class))),
|
|
@ApiResponse(responseCode = "400", description = "잘못된 요청 데이터", content = @Content),
|
|
@ApiResponse(responseCode = "404", description = "코드를 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@PutMapping("/update-use-mng-files")
|
|
public ApiResponseDto<MapSheetMngDto.DmlReturn> updateUseByFileUidMngFile(
|
|
@RequestParam @Valid List<Long> fileUids) {
|
|
return ApiResponseDto.ok(mapSheetMngService.setUseByFileUidMngFile(fileUids));
|
|
}
|
|
|
|
@Operation(summary = "영상데이터관리 > 데이터 등록 > NAS 폴더 선택", description = "영상데이터관리 > 데이터 등록 > NAS 폴더 선택")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(
|
|
responseCode = "200",
|
|
description = "조회 성공",
|
|
content =
|
|
@Content(
|
|
mediaType = "application/json",
|
|
schema = @Schema(implementation = CommonCodeDto.Basic.class))),
|
|
@ApiResponse(responseCode = "404", description = "코드를 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@PostMapping("/folder-list")
|
|
public ApiResponseDto<FoldersDto> getDir(@RequestBody SrchFoldersDto srchDto) {
|
|
|
|
return ApiResponseDto.createOK(mapSheetMngService.getFolderAll(srchDto));
|
|
}
|
|
|
|
@Operation(
|
|
summary = "영상데이터관리 > 상세 > 오류 처리 내역 > 업로드 (영상 tif 대용량 파일 분할 전송)",
|
|
description = "영상데이터관리 > 상세 > 오류 처리 내역 > 업로드 (영상 tif 대용량 파일 분할 전송)")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(responseCode = "200", description = "청크 업로드 성공", content = @Content),
|
|
@ApiResponse(responseCode = "400", description = "잘못된 요청 데이터", content = @Content),
|
|
@ApiResponse(responseCode = "404", description = "업로드 세션을 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@PostMapping(value = "/file-chunk-upload", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
|
public ApiResponseDto<ModelUploadResDto> fileChunkUpload(
|
|
@RequestParam("hstUid") Long hstUid,
|
|
@RequestParam("uuid") UUID uuid,
|
|
@RequestParam("fileName") String fileName,
|
|
@RequestParam("fileSize") long fileSize,
|
|
@RequestParam("chunkIndex") Integer chunkIndex,
|
|
@RequestParam("chunkTotalIndex") Integer chunkTotalIndex,
|
|
@RequestPart("chunkFile") MultipartFile chunkFile)
|
|
throws IOException {
|
|
|
|
String uploadDivi = "mapsheet";
|
|
|
|
UploadDto.UploadAddReq upAddReqDto = new UploadDto.UploadAddReq();
|
|
upAddReqDto.setDatasetId(0L);
|
|
upAddReqDto.setFileName(fileName);
|
|
upAddReqDto.setFileSize(fileSize);
|
|
upAddReqDto.setChunkIndex(chunkIndex);
|
|
upAddReqDto.setChunkTotalIndex(chunkTotalIndex);
|
|
upAddReqDto.setUploadDivi(uploadDivi);
|
|
upAddReqDto.setUuid(uuid);
|
|
upAddReqDto.setFinalPath(syncRootDir);
|
|
upAddReqDto.setTempPath(syncRootTmpDir);
|
|
|
|
return ApiResponseDto.ok(
|
|
mapSheetMngService.uploadChunkMapSheetFile(hstUid, upAddReqDto, chunkFile));
|
|
}
|
|
}
|