ci: 保存rsakey到minio
This commit is contained in:
parent
5b662b92d4
commit
193b54a02c
|
@ -1,19 +1,42 @@
|
|||
package io.metersphere.sdk.config;
|
||||
|
||||
|
||||
import io.metersphere.sdk.file.FileRepository;
|
||||
import io.metersphere.sdk.file.FileRequest;
|
||||
import io.metersphere.sdk.log.constants.OperationLogModule;
|
||||
import io.metersphere.sdk.util.RsaKey;
|
||||
import io.metersphere.sdk.util.RsaUtil;
|
||||
import jakarta.annotation.Resource;
|
||||
import org.apache.commons.lang3.SerializationUtils;
|
||||
import org.springframework.boot.ApplicationArguments;
|
||||
import org.springframework.boot.ApplicationRunner;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
@Configuration
|
||||
public class RsaConfig implements ApplicationRunner {
|
||||
// @Resource
|
||||
// private FileService fileService;
|
||||
@Resource
|
||||
private FileRepository fileRepository;
|
||||
|
||||
@Override
|
||||
public void run(ApplicationArguments args) throws Exception {
|
||||
// // todo 从数据库中获取 RSA 密钥对
|
||||
// RsaKey value = fileService.checkRsaKey();
|
||||
// RsaUtil.setRsaKey(value);
|
||||
FileRequest request = new FileRequest();
|
||||
request.setFileName("rsa.key");
|
||||
request.setProjectId("system");
|
||||
request.setResourceId(OperationLogModule.SYSTEM_PARAMETER_SETTING);
|
||||
//
|
||||
try {
|
||||
byte[] file = fileRepository.getFile(request);
|
||||
if (file != null) {
|
||||
RsaKey rsaKey = SerializationUtils.deserialize(file);
|
||||
RsaUtil.setRsaKey(rsaKey);
|
||||
return;
|
||||
}
|
||||
} catch (Exception ignored) {
|
||||
}
|
||||
// 保存到minio
|
||||
RsaKey rsaKey = RsaUtil.getRsaKey();
|
||||
byte[] bytes = SerializationUtils.serialize(rsaKey);
|
||||
fileRepository.saveFile(bytes, request);
|
||||
RsaUtil.setRsaKey(rsaKey);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue