| | |
| | | package com.xinquan.file.controller; |
| | | |
| | | import com.xinquan.common.core.domain.R; |
| | | import com.xinquan.common.core.utils.file.FileUtils; |
| | | import com.xinquan.file.service.ISysFileService; |
| | | import com.xinquan.file.utils.ObsUploadUtil; |
| | | import com.xinquan.system.api.domain.SysFile; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestPart; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | import com.xinquan.common.core.domain.R; |
| | | import com.xinquan.common.core.utils.file.FileUtils; |
| | | import com.xinquan.file.service.ISysFileService; |
| | | import com.xinquan.system.api.domain.SysFile; |
| | | |
| | | /** |
| | | * 文件请求处理 |
| | |
| | | return R.fail(e.getMessage()); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 文件上传请求 |
| | | */ |
| | | @PostMapping("obs-upload") |
| | | @ApiOperation(value = "文件上传111",tags = "管理后台-文件上传1") |
| | | public R<String> uploadOSS(@RequestPart("file") MultipartFile file) { |
| | | try { |
| | | // 上传并返回访问地址 |
| | | String fileName = file.getOriginalFilename(); |
| | | String prefix = fileName.substring(fileName.lastIndexOf(".")); |
| | | long fileSize = file.getSize(); |
| | | String url = ObsUploadUtil.obsUpload(file); |
| | | return R.ok(url); |
| | | } catch (Exception e) { |
| | | log.error("上传文件失败", e); |
| | | return R.fail(e.getMessage()); |
| | | } |
| | | } |
| | | } |