-
Notifications
You must be signed in to change notification settings - Fork 3k
文件上传增加S3协议的OSS支持 #328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
liujiang157
wants to merge
9
commits into
hs-web:master
Choose a base branch
from
liujiang157:feature/oss-support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
文件上传增加S3协议的OSS支持 #328
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
fe9da58
文件上传增加S3协议的OSS支持
liujiang157 28e1325
解耦两种文件上传方式的的Configuration
liujiang157 d9fece3
提交上传流的返回路径
liujiang157 72c89ca
补齐文件流上传测试
liujiang157 a5c1e7d
调整代码
liujiang157 a491553
新增S3FileProperties
liujiang157 ec8edfa
修改代码规范问题
liujiang157 947c695
提交UriComponentsBuilder构建url
liujiang157 6e7dd9e
修改上传static文件逻辑
liujiang157 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 85 additions & 0 deletions
85
...stem/hsweb-system-file/src/main/java/org/hswebframework/web/file/S3StorageProperties.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package org.hswebframework.web.file; | ||
|
||
import lombok.Data; | ||
import org.apache.commons.collections4.CollectionUtils; | ||
import org.springframework.boot.context.properties.ConfigurationProperties; | ||
import org.springframework.http.MediaType; | ||
|
||
import java.io.File; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.nio.file.Paths; | ||
import java.nio.file.attribute.PosixFileAttributeView; | ||
import java.nio.file.attribute.PosixFilePermission; | ||
import java.util.Locale; | ||
import java.util.Set; | ||
|
||
@Data | ||
@ConfigurationProperties(prefix = "oss.s3") | ||
public class S3StorageProperties { | ||
private String endpoint; | ||
private String region; | ||
private String accessKey; | ||
private String secretKey; | ||
private String bucket; | ||
private String baseUrl; | ||
|
||
private Set<String> allowFiles; | ||
|
||
private Set<String> denyFiles; | ||
|
||
private Set<String> allowMediaType; | ||
|
||
private Set<String> denyMediaType; | ||
|
||
private Set<PosixFilePermission> permissions; | ||
|
||
|
||
public void applyFilePermission(File file) { | ||
|
||
if (CollectionUtils.isEmpty(permissions)) { | ||
return; | ||
} | ||
try { | ||
Path path = Paths.get(file.toURI()); | ||
PosixFileAttributeView view = Files.getFileAttributeView(path, PosixFileAttributeView.class); | ||
view.setPermissions(permissions); | ||
} catch (Throwable ignore) { | ||
// 失败时忽略,兼容Windows等不支持Posix的系统 | ||
} | ||
} | ||
|
||
public boolean denied(String name, MediaType mediaType) { | ||
String suffix = (name.contains(".") ? name.substring(name.lastIndexOf(".") + 1) : "").toLowerCase(Locale.ROOT); | ||
boolean defaultDeny = false; | ||
if (CollectionUtils.isNotEmpty(denyFiles)) { | ||
if (denyFiles.contains(suffix)) { | ||
return true; | ||
} | ||
defaultDeny = false; | ||
} | ||
|
||
if (CollectionUtils.isNotEmpty(allowFiles)) { | ||
if (allowFiles.contains(suffix)) { | ||
return false; | ||
} | ||
defaultDeny = true; | ||
} | ||
|
||
if (CollectionUtils.isNotEmpty(denyMediaType)) { | ||
if (denyMediaType.contains(mediaType.toString())) { | ||
return true; | ||
} | ||
defaultDeny = false; | ||
} | ||
|
||
if (CollectionUtils.isNotEmpty(allowMediaType)) { | ||
if (allowMediaType.contains(mediaType.toString())) { | ||
return false; | ||
} | ||
defaultDeny = true; | ||
} | ||
|
||
return defaultDeny; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
...b-system-file/src/main/java/org/hswebframework/web/file/service/S3FileStorageService.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
package org.hswebframework.web.file.service; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.SneakyThrows; | ||
import org.hswebframework.web.file.S3StorageProperties; | ||
import org.springframework.core.io.buffer.DataBuffer; | ||
import org.springframework.core.io.buffer.DataBufferUtils; | ||
import org.springframework.http.MediaType; | ||
import org.springframework.http.codec.multipart.FilePart; | ||
import reactor.core.publisher.Flux; | ||
import reactor.core.publisher.Mono; | ||
import reactor.core.scheduler.Schedulers; | ||
import software.amazon.awssdk.core.async.AsyncRequestBody; | ||
import software.amazon.awssdk.core.sync.RequestBody; | ||
import software.amazon.awssdk.services.s3.S3Client; | ||
import software.amazon.awssdk.services.s3.model.PutObjectRequest; | ||
|
||
import java.io.ByteArrayInputStream; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.util.Locale; | ||
import java.util.UUID; | ||
import java.util.concurrent.CompletableFuture; | ||
|
||
@AllArgsConstructor | ||
public class S3FileStorageService implements FileStorageService { | ||
|
||
private final S3StorageProperties properties; | ||
|
||
private final S3Client s3Client; | ||
|
||
@Override | ||
public Mono<String> saveFile(FilePart filePart) { | ||
String filename = buildFileName(filePart.filename()); | ||
return DataBufferUtils.join(filePart.content()) | ||
liujiang157 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
.publishOn(Schedulers.boundedElastic()) | ||
.map(dataBuffer -> { | ||
byte[] bytes = new byte[dataBuffer.readableByteCount()]; | ||
dataBuffer.read(bytes); | ||
DataBufferUtils.release(dataBuffer); | ||
return new ByteArrayInputStream(bytes); | ||
}) | ||
.map(inputStream -> { | ||
PutObjectRequest request = PutObjectRequest.builder() | ||
.bucket(properties.getBucket()) | ||
.key(filename) | ||
.build(); | ||
|
||
s3Client.putObject(request, RequestBody.fromInputStream(inputStream, inputStream.available())); | ||
return buildFileUrl(filename); | ||
}); | ||
} | ||
|
||
|
||
@Override | ||
@SneakyThrows | ||
public Mono<String> saveFile(InputStream inputStream, String fileType) { | ||
return Mono.fromCallable(() -> { | ||
String key = UUID.randomUUID().toString() + (fileType.startsWith(".") ? fileType : "." + fileType); | ||
|
||
PutObjectRequest request = PutObjectRequest.builder() | ||
.bucket(properties.getBucket()) | ||
.key(key) | ||
.build(); | ||
|
||
s3Client.putObject(request, RequestBody.fromInputStream(inputStream, inputStream.available())); | ||
return properties.getBaseUrl() + "/" + key; | ||
}) | ||
.subscribeOn(Schedulers.boundedElastic()); | ||
} | ||
|
||
private String buildFileName(String originalName) { | ||
String suffix = ""; | ||
if (originalName != null && originalName.contains(".")) { | ||
suffix = originalName.substring(originalName.lastIndexOf(".")); | ||
} | ||
return UUID.randomUUID().toString().replace("-", "") + suffix.toLowerCase(Locale.ROOT); | ||
} | ||
|
||
private String buildFileUrl(String key) { | ||
if (properties.getBaseUrl() != null && !properties.getBaseUrl().isEmpty()) { | ||
liujiang157 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
return properties.getBaseUrl() + "/" + key; | ||
} | ||
return "https://" + properties.getBucket() + "." + properties.getEndpoint().replace("https://", "").replace("http://", "") + "/" + key; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 66 additions & 0 deletions
66
...tem/hsweb-system-file/src/main/java/org/hswebframework/web/file/web/S3FileController.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
package org.hswebframework.web.file.web; | ||
|
||
import io.swagger.v3.oas.annotations.Operation; | ||
import io.swagger.v3.oas.annotations.Parameter; | ||
import io.swagger.v3.oas.annotations.enums.ParameterStyle; | ||
import io.swagger.v3.oas.annotations.tags.Tag; | ||
import lombok.SneakyThrows; | ||
import lombok.extern.slf4j.Slf4j; | ||
import org.hswebframework.web.authorization.annotation.Resource; | ||
import org.hswebframework.web.authorization.annotation.ResourceAction; | ||
import org.hswebframework.web.authorization.exception.AccessDenyException; | ||
import org.hswebframework.web.file.FileUploadProperties; | ||
import org.hswebframework.web.file.S3StorageProperties; | ||
import org.hswebframework.web.file.service.FileStorageService; | ||
import org.springframework.http.codec.multipart.FilePart; | ||
import org.springframework.http.codec.multipart.Part; | ||
import org.springframework.web.bind.annotation.PostMapping; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RequestPart; | ||
import org.springframework.web.bind.annotation.RestController; | ||
import reactor.core.publisher.Mono; | ||
|
||
import java.io.IOException; | ||
|
||
@RestController | ||
@Resource(id = "ossFile", name = "文件上传") | ||
@Slf4j | ||
@RequestMapping("/oss/file") | ||
@Tag(name = "文件上传") | ||
public class S3FileController { | ||
liujiang157 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
private final S3StorageProperties properties; | ||
|
||
private final FileStorageService fileStorageService; | ||
|
||
|
||
public S3FileController(S3StorageProperties properties, FileStorageService fileStorageService) { | ||
this.properties = properties; | ||
this.fileStorageService = fileStorageService; | ||
} | ||
|
||
|
||
@PostMapping("/static") | ||
@SneakyThrows | ||
@ResourceAction(id = "upload-static", name = "静态文件") | ||
@Operation(summary = "上传静态文件") | ||
public Mono<String> uploadStatic(@RequestPart("file") | ||
@Parameter(name = "file", description = "文件", style = ParameterStyle.FORM) Mono<Part> partMono) { | ||
return partMono | ||
.flatMap(part -> { | ||
if (part instanceof FilePart) { | ||
FilePart filePart = ((FilePart) part); | ||
if (properties.denied(filePart.filename(), filePart.headers().getContentType())) { | ||
return Mono.error( new AccessDenyException()); | ||
} | ||
try { | ||
return fileStorageService.saveFile(filePart); | ||
} catch (IOException e) { | ||
throw new RuntimeException(e); | ||
} | ||
} else { | ||
return Mono.error(() -> new IllegalArgumentException("[file] part is not a file")); | ||
} | ||
}); | ||
|
||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.