- 
                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 5 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
    
  
  
    
              
              
  
    
      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
    
  
  
    
              
        
          
          
            49 changes: 49 additions & 0 deletions
          
          49 
        
  ...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,49 @@ | ||
| 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(FileUploadProperties.class) | ||
| public class S3FileStorageConfiguration { | ||
| 
     | 
||
| 
     | 
||
| @Bean | ||
| @ConditionalOnMissingBean | ||
| public S3Client s3Client(FileUploadProperties properties) { | ||
| return S3Client.builder() | ||
| .endpointOverride(URI.create(properties.getS3().getEndpoint())) | ||
| .credentialsProvider(StaticCredentialsProvider.create( | ||
| AwsBasicCredentials.create(properties.getS3().getAccessKey(), properties.getS3().getSecretKey()))) | ||
| .region(Region.of(properties.getS3().getRegion())) | ||
| .build(); | ||
| } | ||
| 
     | 
||
| @Bean | ||
| @ConditionalOnMissingBean(FileStorageService.class) | ||
                
      
                  liujiang157 marked this conversation as resolved.
               
              
                Outdated
          
            Show resolved
            Hide resolved
         | 
||
| public FileStorageService s3FileStorageService(FileUploadProperties properties, S3Client s3Client) { | ||
| return new S3FileStorageService(properties, s3Client); | ||
| } | ||
| 
     | 
||
| @Bean | ||
| @ConditionalOnMissingBean(name = "reactiveFileController") | ||
| public ReactiveFileController reactiveFileController(FileUploadProperties properties, | ||
                
      
                  liujiang157 marked this conversation as resolved.
               
              
                Outdated
          
            Show resolved
            Hide resolved
         | 
||
| FileStorageService storageService) { | ||
| return new ReactiveFileController(properties, storageService); | ||
| } | ||
| } | ||
  
    
      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
    
  
  
    
              
        
          
          
            80 changes: 80 additions & 0 deletions
          
          80 
        
  ...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,80 @@ | ||
| package org.hswebframework.web.file.service; | ||
| 
     | 
||
| import lombok.AllArgsConstructor; | ||
| import lombok.SneakyThrows; | ||
| import org.hswebframework.web.file.FileUploadProperties; | ||
| import org.springframework.core.io.buffer.DataBufferUtils; | ||
| import org.springframework.http.codec.multipart.FilePart; | ||
| 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.InputStream; | ||
| import java.util.Locale; | ||
| import java.util.UUID; | ||
| 
     | 
||
| @AllArgsConstructor | ||
| public class S3FileStorageService implements FileStorageService { | ||
| 
     | 
||
| private final FileUploadProperties 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.getS3().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.getS3().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.getS3().getBaseUrl() != null && !properties.getS3().getBaseUrl().isEmpty()) { | ||
| return properties.getS3().getBaseUrl() + "/" + key; | ||
| } | ||
| return "https://" + properties.getS3().getBucket() + "." + properties.getS3().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
    
  
  
    
              
        
          
          
            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/oss/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/oss/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.