-
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 all commits
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
1 change: 1 addition & 0 deletions
1
...tem/hsweb-system-file/src/main/java/org/hswebframework/web/file/FileUploadProperties.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
15 changes: 15 additions & 0 deletions
15
...-system/hsweb-system-file/src/main/java/org/hswebframework/web/file/S3FileProperties.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,15 @@ | ||
package org.hswebframework.web.file; | ||
|
||
import lombok.Data; | ||
import org.springframework.boot.context.properties.ConfigurationProperties; | ||
|
||
@ConfigurationProperties(prefix = "hsweb.file.upload.s3") | ||
@Data | ||
public class S3FileProperties { | ||
private String endpoint; | ||
private String accessKey; | ||
private String secretKey; | ||
private String bucket; | ||
private String region; | ||
private String baseUrl; | ||
} |
43 changes: 43 additions & 0 deletions
43
...web-system-file/src/main/java/org/hswebframework/web/file/S3FileStorageConfiguration.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,43 @@ | ||
package org.hswebframework.web.file; | ||
|
||
import org.hswebframework.web.file.service.FileStorageService; | ||
import org.hswebframework.web.file.service.S3FileStorageService; | ||
import org.hswebframework.web.file.web.ReactiveFileController; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; | ||
import org.springframework.boot.context.properties.EnableConfigurationProperties; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import software.amazon.awssdk.auth.credentials.AwsBasicCredentials; | ||
import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider; | ||
import software.amazon.awssdk.regions.Region; | ||
import software.amazon.awssdk.services.s3.S3Client; | ||
|
||
import java.net.URI; | ||
|
||
@Configuration | ||
@ConditionalOnClass(S3Client.class) | ||
@ConditionalOnProperty(name = "hsweb.file.storage", havingValue = "s3", matchIfMissing = false) | ||
@EnableConfigurationProperties({S3FileProperties.class, FileUploadProperties.class}) | ||
public class S3FileStorageConfiguration { | ||
|
||
|
||
@Bean | ||
@ConditionalOnMissingBean | ||
public S3Client s3Client(S3FileProperties properties) { | ||
return S3Client.builder() | ||
.endpointOverride(URI.create(properties.getEndpoint())) | ||
.credentialsProvider(StaticCredentialsProvider.create( | ||
AwsBasicCredentials.create(properties.getAccessKey(), properties.getSecretKey()))) | ||
.region(Region.of(properties.getRegion())) | ||
.build(); | ||
} | ||
|
||
@Bean | ||
public FileStorageService s3FileStorageService( | ||
S3FileProperties s3Properties, | ||
S3Client s3Client) { | ||
return new S3FileStorageService(s3Properties, s3Client); | ||
} | ||
} |
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
83 changes: 83 additions & 0 deletions
83
...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,83 @@ | ||
package org.hswebframework.web.file.service; | ||
|
||
import com.google.common.io.Files; | ||
import lombok.AllArgsConstructor; | ||
import lombok.SneakyThrows; | ||
import org.hswebframework.web.file.S3FileProperties; | ||
import org.springframework.core.io.buffer.DataBufferUtils; | ||
import org.springframework.http.codec.multipart.FilePart; | ||
import org.springframework.web.util.UriComponentsBuilder; | ||
import reactor.core.publisher.Mono; | ||
import reactor.core.scheduler.Schedulers; | ||
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; | ||
|
||
@AllArgsConstructor | ||
public class S3FileStorageService implements FileStorageService { | ||
|
||
private final S3FileProperties 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
|
||
.flatMap(dataBuffer -> { | ||
InputStream inputStream = dataBuffer.asInputStream(true); | ||
return saveFile(inputStream, Files.getFileExtension(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 buildFileUrl(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 UriComponentsBuilder | ||
.fromUriString(properties.getBaseUrl()) | ||
.pathSegment(key) | ||
.build() | ||
.toUriString(); | ||
} | ||
String host = properties.getBucket() + "." + properties.getEndpoint().replaceFirst("^https?://", ""); | ||
return UriComponentsBuilder | ||
.newInstance() | ||
.scheme("https") | ||
.host(host) | ||
.pathSegment(key) | ||
.build() | ||
.toUriString(); | ||
} | ||
} |
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
61 changes: 61 additions & 0 deletions
61
...system/hsweb-system-file/src/test/java/org/hswebframework/web/file/web/OssUploadTest.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,61 @@ | ||
package org.hswebframework.web.file.web; | ||
|
||
import org.hswebframework.web.file.S3FileStorageConfiguration; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.autoconfigure.ImportAutoConfiguration; | ||
import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest; | ||
import org.springframework.core.io.ClassPathResource; | ||
import org.springframework.http.HttpEntity; | ||
import org.springframework.http.MediaType; | ||
import org.springframework.test.context.junit4.SpringRunner; | ||
import org.springframework.test.web.reactive.server.WebTestClient; | ||
import org.springframework.util.StreamUtils; | ||
import org.springframework.web.reactive.function.BodyInserters; | ||
|
||
@WebFluxTest(ReactiveFileController.class) | ||
@RunWith(SpringRunner.class) | ||
@ImportAutoConfiguration(S3FileStorageConfiguration.class) | ||
public class OssUploadTest { | ||
|
||
static { | ||
System.setProperty("hsweb.file.upload.s3.endpoint", "https://oss-cn-beijing.aliyuncs.com"); | ||
System.setProperty("hsweb.file.upload.s3.region", "us-east-1"); | ||
System.setProperty("hsweb.file.upload.s3.accessKey", ""); | ||
System.setProperty("hsweb.file.upload.s3.secretKey", ""); | ||
System.setProperty("hsweb.file.upload.s3.bucket", "maydaysansan"); | ||
System.setProperty("hsweb.file.storage", "s3"); | ||
} | ||
|
||
@Autowired | ||
WebTestClient client; | ||
|
||
@Test | ||
public void testStatic(){ | ||
client.post() | ||
.uri("/file/static") | ||
.contentType(MediaType.MULTIPART_FORM_DATA) | ||
.body(BodyInserters.fromMultipartData("file",new HttpEntity<>(new ClassPathResource("test.json")))) | ||
.exchange() | ||
.expectStatus() | ||
.isOk(); | ||
|
||
} | ||
|
||
@Test | ||
public void testStream() throws Exception { | ||
byte[] fileBytes = StreamUtils.copyToByteArray(new ClassPathResource("test.json").getInputStream()); | ||
|
||
client.post() | ||
.uri(uriBuilder -> | ||
uriBuilder.path("/file/static/stream") | ||
.queryParam("fileType", "json") | ||
.build()) | ||
.contentType(MediaType.APPLICATION_OCTET_STREAM) | ||
.bodyValue(fileBytes) | ||
.exchange() | ||
.expectStatus().isOk(); | ||
} | ||
|
||
} |
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
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.