com.taotao.boot.oss.tencent.TencentOssConfiguration Maven / Gradle / Ivy
/*
* Copyright (c) 2020-2030, Shuigedeng ([email protected] & https://blog.taotaocloud.top/).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.taotao.boot.oss.tencent;
import com.qcloud.cos.COSClient;
import com.qcloud.cos.ClientConfig;
import com.qcloud.cos.auth.BasicCOSCredentials;
import com.qcloud.cos.auth.COSCredentials;
import com.taotao.boot.common.constant.StarterName;
import com.taotao.boot.common.utils.log.LogUtils;
import com.taotao.boot.oss.common.condition.ConditionalOnOssEnabled;
import com.taotao.boot.oss.common.propeties.OssProperties;
import com.taotao.boot.oss.common.service.StandardOssClient;
import org.dromara.hutool.core.util.ObjUtil;
import org.dromara.hutool.extra.spring.SpringUtil;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.boot.autoconfigure.AutoConfiguration;
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 java.util.Map;
/**
* 腾讯oss配置
*
* @author shuigedeng
* @version 2022.04
* @since 2022-04-27 17:43:13
*/
@AutoConfiguration
@ConditionalOnOssEnabled
@ConditionalOnClass(COSClient.class)
@EnableConfigurationProperties({TencentOssProperties.class})
@ConditionalOnProperty(prefix = OssProperties.PREFIX, name = "type", havingValue = "tencent")
public class TencentOssConfiguration implements InitializingBean {
public TencentOssConfiguration(TencentOssProperties tencentOssProperties) {
this.tencentOssProperties = tencentOssProperties;
}
@Override
public void afterPropertiesSet() throws Exception {
LogUtils.started(TencentOssConfiguration.class, StarterName.OSS_TENCENT_STARTER);
}
public static final String DEFAULT_BEAN_NAME = "tencentOssClient";
private final TencentOssProperties tencentOssProperties;
@Bean
@ConditionalOnMissingBean
public StandardOssClient tencentOssClient() {
Map tencentOssConfigMap = tencentOssProperties.getOssConfig();
if (tencentOssConfigMap.isEmpty()) {
SpringUtil.registerBean(DEFAULT_BEAN_NAME, tencentOssClient(tencentOssProperties));
} else {
String secretId = tencentOssProperties.getSecretId();
String secretKey = tencentOssProperties.getSecretKey();
ClientConfig clientConfig = tencentOssProperties.getClientConfig();
tencentOssConfigMap.forEach((name, tencentOssConfig) -> {
if (ObjUtil.isEmpty(tencentOssConfig.getSecretId())) {
tencentOssConfig.setSecretId(secretId);
}
if (ObjUtil.isEmpty(tencentOssConfig.getSecretKey())) {
tencentOssConfig.setSecretKey(secretKey);
}
if (ObjUtil.isEmpty(tencentOssConfig.getClientConfig())) {
tencentOssConfig.setClientConfig(clientConfig);
}
SpringUtil.registerBean(name, tencentOssClient(tencentOssConfig));
});
}
return null;
}
private StandardOssClient tencentOssClient(TencentOssConfig tencentOssConfig) {
ClientConfig clientConfig = tencentOssConfig.getClientConfig();
COSCredentials cosCredentials = cosCredentials(tencentOssConfig);
COSClient cosClient = cosClient(cosCredentials, clientConfig);
return tencentOssClient(cosClient, tencentOssConfig);
}
public StandardOssClient tencentOssClient(COSClient cosClient, TencentOssConfig tencentOssConfig) {
return new TencentOssClient(cosClient, tencentOssConfig);
}
public COSCredentials cosCredentials(TencentOssConfig tencentOssConfig) {
return new BasicCOSCredentials(tencentOssConfig.getSecretId(), tencentOssConfig.getSecretKey());
}
public COSClient cosClient(COSCredentials cred, ClientConfig clientConfig) {
return new COSClient(cred, clientConfig);
}
}