新增minio相关

cert
anthonywj 2 years ago
parent 9955633eb0
commit 78ade5f375

@ -309,8 +309,6 @@
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-bridge --> <!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-bridge -->
<dependency> <dependency>
<groupId>org.apache.xmlgraphics</groupId> <groupId>org.apache.xmlgraphics</groupId>
@ -391,7 +389,12 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId> <artifactId>spring-boot-starter-freemarker</artifactId>
</dependency> </dependency>
<!--minio-->
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>3.0.10</version>
</dependency>
</dependencies> </dependencies>

@ -0,0 +1,51 @@
package com.glxp.api.config;
import io.minio.MinioClient;
import io.minio.errors.InvalidEndpointException;
import io.minio.errors.InvalidPortException;
import lombok.Data;
import lombok.RequiredArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
@RequiredArgsConstructor
public class MinioConfig {
@Data
@ConfigurationProperties("minio")
@Configuration
public class MinioProperties {
/**
*
*/
private String endpoint;
/**
*
*/
private String accessKey;
/**
*
*/
private String secretKey;
}
/**
*
*
* @return
*/
@Bean
public MinioClient minioClient(MinioProperties minioProperties) {
try {
return new MinioClient(minioProperties.getEndpoint(), minioProperties.getAccessKey(), minioProperties.getSecretKey());
} catch (InvalidEndpointException | InvalidPortException e) {
throw new RuntimeException(e);
}
}
}

@ -0,0 +1,156 @@
package com.glxp.api.util;
import cn.hutool.core.io.FileUtil;
import io.minio.MinioClient;
import io.minio.errors.*;
import io.minio.http.Method;
import io.minio.policy.PolicyType;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.web.multipart.MultipartFile;
import org.xmlpull.v1.XmlPullParserException;
import java.io.IOException;
import java.io.InputStream;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
/**
* minio
*/
@Slf4j
@Component
public class MinioUtil {
private static MinioClient minioClient;
@Autowired
public void setMinioClient(MinioClient minioClient) {
MinioUtil.minioClient = minioClient;
}
/**
* bucket
*
* @return Boolean
*/
private static void makeBucket(String bucketName) {
try {
boolean exists = minioClient.bucketExists(bucketName);
if (!exists) {
minioClient.makeBucket(bucketName);
minioClient.setBucketPolicy(bucketName, "*", PolicyType.READ_ONLY);
}
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
/**
*
*
* @param fileFullName
* @param file
*/
public static void uploadFile(String fileFullName, MultipartFile file) {
try {
//从fileName中获取bucketName和objectName
String reg = "/(\\S*?)(/\\S*)";
String bucketName = fileFullName.replaceFirst(reg, "$1");
String objectName = fileFullName.replaceFirst(reg, "$2");
makeBucket(bucketName);
minioClient.putObject(bucketName, objectName, file.getInputStream(), FileUtil.getMimeType(fileFullName));
} catch (InvalidBucketNameException | NoSuchAlgorithmException | InsufficientDataException | IOException |
InvalidKeyException | ErrorResponseException | InternalException | InvalidArgumentException |
XmlPullParserException | NoResponseException e) {
throw new RuntimeException(e);
}
}
/**
*
*
* @param fileFullName
* @param file
* @param fileContentType contentType
* @throws Exception
*/
public static void uploadFile(String fileFullName, InputStream file, String fileContentType) throws InvalidArgumentException, XmlPullParserException, NoResponseException {
try {
//从fileName中获取bucketName和objectName
String reg = "/(\\S*?)(/\\S*)";
String bucketName = fileFullName.replaceFirst(reg, "$1");
String objectName = fileFullName.replaceFirst(reg, "$2");
makeBucket(bucketName);
minioClient.putObject(bucketName, objectName, file, fileContentType);
} catch (InvalidBucketNameException | NoSuchAlgorithmException | InsufficientDataException | IOException |
InvalidKeyException | ErrorResponseException |
InternalException e) {
e.printStackTrace();
throw new RuntimeException(e);
} finally {
try {
file.close();
} catch (IOException e) {
log.error(e.getMessage(), e);
}
}
}
/**
*
*
* @param fileFullName
* @param expires
* @return 访
*/
public static String getPresignedObjectUrl(String fileFullName, Integer expires) {
String reg = "/(\\S*?)(/\\S*)";
String bucketName = fileFullName.replaceFirst(reg, "$1");
String objectName = fileFullName.replaceFirst(reg, "$2");
try {
return minioClient.getPresignedObjectUrl(Method.GET, bucketName, objectName, expires, null);
} catch (InvalidBucketNameException | NoSuchAlgorithmException | InsufficientDataException | IOException |
InvalidKeyException | NoResponseException | XmlPullParserException | ErrorResponseException |
InternalException | InvalidExpiresRangeException e) {
throw new RuntimeException(e);
}
}
/**
*
*
* @param fileFullName
* @return inputStream
*/
public static InputStream getFileInputStream(String fileFullName) {
String reg = "/(\\S*?)(/\\S*)";
String bucketName = fileFullName.replaceFirst(reg, "$1");
String objectName = fileFullName.replaceFirst(reg, "$2");
try {
return minioClient.getObject(bucketName, objectName);
} catch (InvalidBucketNameException | NoSuchAlgorithmException | InsufficientDataException | IOException |
InvalidKeyException | NoResponseException | XmlPullParserException | ErrorResponseException |
InternalException | InvalidArgumentException e) {
throw new RuntimeException(e);
}
}
public static void deleteFile(String fileFullName) {
String reg = "/(\\S*?)(/\\S*)";
String bucketName = fileFullName.replaceFirst(reg, "$1");
String objectName = fileFullName.replaceFirst(reg, "$2");
try {
minioClient.removeObject(bucketName, objectName);
} catch (InvalidBucketNameException | NoSuchAlgorithmException | InsufficientDataException | IOException |
InvalidKeyException | NoResponseException | XmlPullParserException | ErrorResponseException |
InternalException e) {
// throw new RuntimeException(e);
}
}
}

@ -69,6 +69,10 @@ ok:
max-idle-connections: 200 max-idle-connections: 200
keep-alive-duration: 300 keep-alive-duration: 300
minio:
endpoint: http://139.9.219.60:9000
access-key: minioadmin
secret-key: minioadmin
logging: logging:
level: level:

@ -46,6 +46,10 @@ ok:
max-idle-connections: 200 max-idle-connections: 200
keep-alive-duration: 300 keep-alive-duration: 300
minio:
endpoint: http://139.9.219.60:9000
access-key: minioadmin
secret-key: minioadmin
logging: logging:
level: level:

Loading…
Cancel
Save