|
@@ -1,11 +1,13 @@
|
|
|
package com.gxzc.zen.web.sys.controller
|
|
|
|
|
|
+import com.gxzc.zen.api.sys.service.ISysUploadInfoService
|
|
|
import com.gxzc.zen.common.base.BaseController
|
|
|
import com.gxzc.zen.common.dto.ZenFileMetadata
|
|
|
import com.gxzc.zen.common.exception.ZenException
|
|
|
import com.gxzc.zen.common.util.UploadUtil
|
|
|
import io.swagger.annotations.ApiOperation
|
|
|
import org.slf4j.LoggerFactory
|
|
|
+import org.springframework.beans.factory.annotation.Autowired
|
|
|
import org.springframework.http.HttpStatus
|
|
|
import org.springframework.http.ResponseEntity
|
|
|
import org.springframework.web.bind.annotation.GetMapping
|
|
@@ -27,12 +29,24 @@ class UploadController : BaseController() {
|
|
|
private val logger = LoggerFactory.getLogger(UploadController::class.java)
|
|
|
}
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private lateinit var uploadInfoService: ISysUploadInfoService
|
|
|
+
|
|
|
@ApiOperation("获取已上传分片列表")
|
|
|
@GetMapping
|
|
|
fun checkChunk(fileMetadata: ZenFileMetadata): ResponseEntity<*> {
|
|
|
// 检查已上传文件分片
|
|
|
val ret = UploadUtil.checkUpload(fileMetadata)
|
|
|
return if (ret.uploadedChunks != null) {
|
|
|
+ when (ret.status) {
|
|
|
+ // 单文件完成,插入数据库
|
|
|
+ UploadUtil.STATUS.UPLOADED -> uploadInfoService.addUploadFile(fileMetadata, ret.file!!)
|
|
|
+ // 批次完成,将最后个文件插入 而后取出所有本批次文件信息
|
|
|
+ UploadUtil.STATUS.BATCH_UPLOADED -> {
|
|
|
+ uploadInfoService.addUploadFile(fileMetadata, ret.file!!)
|
|
|
+ ret.info = uploadInfoService.getUploadInfosByBatchId(fileMetadata.batchId!!)
|
|
|
+ }
|
|
|
+ }
|
|
|
ResponseEntity.ok(ret)
|
|
|
} else {
|
|
|
ResponseEntity.status(204).body(ret)
|
|
@@ -52,6 +66,15 @@ class UploadController : BaseController() {
|
|
|
}
|
|
|
|
|
|
return if (uploadResponse != null) {
|
|
|
+ when (uploadResponse.status) {
|
|
|
+ // 单文件完成,插入数据库
|
|
|
+ UploadUtil.STATUS.UPLOADED -> uploadInfoService.addUploadFile(fileMetadata, uploadResponse.file!!)
|
|
|
+ // 批次完成,将最后个文件插入 而后取出所有本批次文件信息
|
|
|
+ UploadUtil.STATUS.BATCH_UPLOADED -> {
|
|
|
+ uploadInfoService.addUploadFile(fileMetadata, uploadResponse.file!!)
|
|
|
+ uploadResponse.info = uploadInfoService.getUploadInfosByBatchId(fileMetadata.batchId!!)
|
|
|
+ }
|
|
|
+ }
|
|
|
ResponseEntity.ok(uploadResponse)
|
|
|
} else {
|
|
|
ResponseEntity.status(HttpStatus.NOT_ACCEPTABLE.value()).body(null)
|