feat(uploader): 增加文件上传下载模块
This commit is contained in:
@@ -1,21 +1,18 @@
|
||||
package com.lanyuanxiaoyao.service.uploader;
|
||||
|
||||
import com.ulisesbocchio.jasyptspringboot.annotation.EnableEncryptableProperties;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
||||
import org.springframework.retry.annotation.EnableRetry;
|
||||
|
||||
/**
|
||||
* @author lanyuanxiaoyao
|
||||
* @date 2024-01-24
|
||||
*/
|
||||
@EnableDiscoveryClient
|
||||
@SpringBootApplication(scanBasePackages = {"com.lanyuanxiaoyao.service"})
|
||||
// @EnableDiscoveryClient
|
||||
@SpringBootApplication/* (scanBasePackages = {"com.lanyuanxiaoyao.service"}) */
|
||||
@EnableConfigurationProperties
|
||||
@EnableEncryptableProperties
|
||||
@EnableRetry
|
||||
// @EnableEncryptableProperties
|
||||
// @EnableRetry
|
||||
public class UploaderApplication {
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(UploaderApplication.class, args);
|
||||
|
||||
@@ -10,7 +10,16 @@ import org.springframework.context.annotation.Configuration;
|
||||
@Configuration
|
||||
@ConfigurationProperties("uploader")
|
||||
public class UploaderConfiguration {
|
||||
private String tmpDir;
|
||||
private String backend = "local";
|
||||
private String tmpDir = "./";
|
||||
|
||||
public String getBackend() {
|
||||
return backend;
|
||||
}
|
||||
|
||||
public void setBackend(String backend) {
|
||||
this.backend = backend;
|
||||
}
|
||||
|
||||
public String getTmpDir() {
|
||||
return tmpDir;
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
package com.lanyuanxiaoyao.service.uploader.controller;
|
||||
|
||||
import cn.hutool.core.io.IoUtil;
|
||||
import com.lanyuanxiaoyao.service.uploader.configuration.UploaderConfiguration;
|
||||
import com.lanyuanxiaoyao.service.uploader.service.filesystem.UploadAndDownloadService;
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Enumeration;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.context.ApplicationContext;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @author lanyuanxiaoyao
|
||||
* @date 2024-03-01
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("file")
|
||||
public class FileController {
|
||||
private static final Logger logger = LoggerFactory.getLogger(FileController.class);
|
||||
private final UploadAndDownloadService service;
|
||||
|
||||
public FileController(UploaderConfiguration uploaderConfiguration, ApplicationContext applicationContext) {
|
||||
this.service = applicationContext.getBean(uploaderConfiguration.getBackend(), UploadAndDownloadService.class);
|
||||
}
|
||||
|
||||
@RequestMapping("upload/{filename}")
|
||||
public void upload(@PathVariable("filename") String filename, HttpServletRequest request) throws Exception {
|
||||
service.upload(filename, request.getInputStream());
|
||||
}
|
||||
|
||||
@RequestMapping("download/{filename}")
|
||||
public void download(@PathVariable("filename") String filename, HttpServletResponse response) throws Exception {
|
||||
service.download(filename, response.getOutputStream());
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,12 @@
|
||||
package com.lanyuanxiaoyao.service.uploader.service.filesystem;
|
||||
|
||||
import cn.hutool.core.io.file.FileNameUtil;
|
||||
import cn.hutool.core.io.IoUtil;
|
||||
import com.lanyuanxiaoyao.service.uploader.configuration.UploaderConfiguration;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.fs.FSDataInputStream;
|
||||
import org.apache.hadoop.fs.FSDataOutputStream;
|
||||
import org.apache.hadoop.fs.FileSystem;
|
||||
import org.apache.hadoop.fs.Path;
|
||||
import org.slf4j.Logger;
|
||||
@@ -15,7 +19,7 @@ import org.springframework.stereotype.Service;
|
||||
* @author lanyuanxiaoyao
|
||||
* @date 2024-01-24
|
||||
*/
|
||||
@Service
|
||||
@Service("hdfs")
|
||||
public class HdfsUploadAndDownloadService implements UploadAndDownloadService {
|
||||
private static final Logger logger = LoggerFactory.getLogger(HdfsUploadAndDownloadService.class);
|
||||
private final UploaderConfiguration uploaderConfiguration;
|
||||
@@ -23,21 +27,22 @@ public class HdfsUploadAndDownloadService implements UploadAndDownloadService {
|
||||
|
||||
public HdfsUploadAndDownloadService(UploaderConfiguration uploaderConfiguration) {
|
||||
this.uploaderConfiguration = uploaderConfiguration;
|
||||
configuration = new Configuration();
|
||||
this.configuration = new Configuration();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void download(String path) throws Exception {
|
||||
String filename = FileNameUtil.getName(path);
|
||||
public void upload(String filename, InputStream inputStream) throws Exception {
|
||||
try (FileSystem fileSystem = FileSystem.get(configuration)) {
|
||||
fileSystem.copyToLocalFile(new Path(path), new Path(uploaderConfiguration.getTmpDir(), filename));
|
||||
FSDataOutputStream outputStream = fileSystem.create(new Path(uploaderConfiguration.getTmpDir(), filename), true);
|
||||
IoUtil.copy(inputStream, outputStream);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void upload(String filename, String targetPath) throws Exception {
|
||||
public void download(String filename, OutputStream outputStream) throws Exception {
|
||||
try (FileSystem fileSystem = FileSystem.get(configuration)) {
|
||||
fileSystem.copyFromLocalFile(new Path(uploaderConfiguration.getTmpDir(), filename), new Path(targetPath, filename));
|
||||
FSDataInputStream inputStream = fileSystem.open(new Path(uploaderConfiguration.getTmpDir(), filename));
|
||||
IoUtil.copy(inputStream, outputStream);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
package com.lanyuanxiaoyao.service.uploader.service.filesystem;
|
||||
|
||||
import cn.hutool.core.io.IoUtil;
|
||||
import com.lanyuanxiaoyao.service.uploader.configuration.UploaderConfiguration;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Paths;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 处理上传事宜
|
||||
*
|
||||
* @author lanyuanxiaoyao
|
||||
* @date 2024-01-24
|
||||
*/
|
||||
@Service("local")
|
||||
public class LocalUploadAndDownloadService implements UploadAndDownloadService {
|
||||
private static final Logger logger = LoggerFactory.getLogger(LocalUploadAndDownloadService.class);
|
||||
private final UploaderConfiguration uploaderConfiguration;
|
||||
|
||||
public LocalUploadAndDownloadService(UploaderConfiguration uploaderConfiguration) {
|
||||
this.uploaderConfiguration = uploaderConfiguration;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void upload(String filename, InputStream inputStream) throws Exception {
|
||||
IoUtil.copy(inputStream, Files.newOutputStream(Paths.get(uploaderConfiguration.getTmpDir(), filename)));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void download(String filename, OutputStream outputStream) throws Exception {
|
||||
IoUtil.copy(Files.newInputStream(Paths.get(uploaderConfiguration.getTmpDir(), filename)), outputStream);
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,8 @@
|
||||
package com.lanyuanxiaoyao.service.uploader.service.filesystem;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
|
||||
/**
|
||||
* 上传和下载
|
||||
*
|
||||
@@ -7,7 +10,7 @@ package com.lanyuanxiaoyao.service.uploader.service.filesystem;
|
||||
* @date 2024-01-24
|
||||
*/
|
||||
public interface UploadAndDownloadService {
|
||||
void download(String path) throws Exception;
|
||||
void upload(String filename, InputStream inputStream) throws Exception;
|
||||
|
||||
void upload(String filename, String targetPath) throws Exception;
|
||||
void download(String filename, OutputStream outputStream) throws Exception;
|
||||
}
|
||||
|
||||
@@ -3,3 +3,5 @@ spring:
|
||||
name: service-uploader
|
||||
profiles:
|
||||
include: random-port,common,discovery,metrics
|
||||
uploader:
|
||||
tmp-dir:
|
||||
|
||||
Reference in New Issue
Block a user