You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.3 KiB
118 lines
3.3 KiB
10 months ago
|
package com.teaching.backend.controller.resource;
|
||
10 months ago
|
|
||
10 months ago
|
import com.aliyun.oss.OSS;
|
||
|
import com.aliyun.oss.OSSClientBuilder;
|
||
10 months ago
|
|
||
10 months ago
|
import com.teaching.backend.common.BaseResponse;
|
||
|
import com.teaching.backend.common.ResultUtils;
|
||
10 months ago
|
import com.teaching.backend.service.resource.CourseResourcesService;
|
||
10 months ago
|
|
||
10 months ago
|
import org.springframework.beans.factory.annotation.Value;
|
||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
import org.springframework.web.multipart.MultipartFile;
|
||
|
|
||
|
import javax.annotation.Resource;
|
||
|
import javax.servlet.http.HttpServletResponse;
|
||
10 months ago
|
|
||
10 months ago
|
import java.io.*;
|
||
10 months ago
|
import java.util.UUID;
|
||
|
|
||
|
/**
|
||
|
* ClassName: CommonController
|
||
|
* Package: com.teaching.backend.controller
|
||
|
* Description:
|
||
|
*
|
||
|
* @Author 姜钧瀚
|
||
|
* @Create 2024/6/1 10:30
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
@RestController
|
||
10 months ago
|
public class ResourceController {
|
||
10 months ago
|
|
||
|
|
||
|
@Resource
|
||
10 months ago
|
private CourseResourcesService courseResourcesService;
|
||
10 months ago
|
|
||
10 months ago
|
@Value("${aliyun.oss.endpoint}")
|
||
|
private String endpoint;
|
||
|
|
||
|
@Value("${aliyun.oss.accessKeyId}")
|
||
|
private String accessKeyId;
|
||
|
|
||
|
@Value("${aliyun.oss.accessKeySecret}")
|
||
|
private String accessKeySecret;
|
||
|
|
||
|
@Value("${aliyun.oss.bucketName}")
|
||
|
private String bucketName;
|
||
10 months ago
|
|
||
|
|
||
|
@PostMapping("/upload")
|
||
10 months ago
|
public BaseResponse<String> upload(MultipartFile file) throws IOException {
|
||
10 months ago
|
|
||
10 months ago
|
|
||
10 months ago
|
OSS ossClient = new OSSClientBuilder().build(endpoint, accessKeyId, accessKeySecret);
|
||
10 months ago
|
|
||
|
String originalFilename = file.getOriginalFilename();
|
||
|
|
||
|
String suffix = originalFilename.substring(originalFilename.lastIndexOf("."));
|
||
10 months ago
|
Integer Filetype;
|
||
10 months ago
|
String subDir;
|
||
|
if (suffix.equalsIgnoreCase(".jpg") || suffix.equalsIgnoreCase(".jpeg") || suffix.equalsIgnoreCase(".png")) {
|
||
|
subDir = "img/";
|
||
10 months ago
|
Filetype=1 ;
|
||
10 months ago
|
} else if (suffix.equalsIgnoreCase(".mp4") || suffix.equalsIgnoreCase(".avi") || suffix.equalsIgnoreCase(".mov")) {
|
||
|
subDir = "video/";
|
||
10 months ago
|
Filetype=2 ;
|
||
|
} else if (suffix.equalsIgnoreCase(".mp3") || suffix.equalsIgnoreCase(".wav") || suffix.equalsIgnoreCase(".flac")) {
|
||
|
subDir = "video/";
|
||
|
Filetype = 3;
|
||
|
}else {
|
||
10 months ago
|
subDir = "others/";
|
||
10 months ago
|
Filetype=4;
|
||
10 months ago
|
}
|
||
|
|
||
10 months ago
|
|
||
10 months ago
|
String fileName = UUID.randomUUID().toString().replace("-", "") + suffix;
|
||
|
|
||
|
|
||
10 months ago
|
ossClient.putObject(bucketName, subDir + fileName, file.getInputStream());
|
||
10 months ago
|
|
||
|
|
||
10 months ago
|
String objectUrl = "https://" + bucketName + "." + endpoint + "/" + subDir + fileName;
|
||
|
Integer type=Filetype;
|
||
|
courseResourcesService.updateFile(type, fileName, objectUrl); // 更新文件路径为OSS生成的URL
|
||
10 months ago
|
|
||
10 months ago
|
ossClient.shutdown();
|
||
10 months ago
|
|
||
10 months ago
|
System.out.println("文件的地址是:" + objectUrl);
|
||
|
|
||
|
return ResultUtils.success(objectUrl);
|
||
10 months ago
|
}
|
||
|
|
||
|
//文件下载
|
||
|
@GetMapping("/download")
|
||
10 months ago
|
public BaseResponse<String> download(@RequestParam String Id, @RequestParam String path, HttpServletResponse response) throws IOException {
|
||
10 months ago
|
System.out.println("执行了下载的方法");
|
||
10 months ago
|
|
||
10 months ago
|
courseResourcesService.download(Id,path,response,endpoint,accessKeyId,accessKeySecret,bucketName);
|
||
10 months ago
|
|
||
10 months ago
|
return ResultUtils.success("成功");
|
||
|
}
|
||
10 months ago
|
|
||
10 months ago
|
}
|
||
10 months ago
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|