com.dahuatech.icc.oauth.profile.IccProfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-oauth Show documentation
Show all versions of java-sdk-oauth Show documentation
Dahua ICC Open API SDK for Java
The newest version!
package com.dahuatech.icc.oauth.profile;
import com.dahuatech.hutool.core.util.StrUtil;
import com.dahuatech.hutool.http.HttpRequest;
import com.dahuatech.hutool.http.HttpResponse;
import com.dahuatech.hutool.http.HttpStatus;
import com.dahuatech.hutool.log.Log;
import com.dahuatech.hutool.log.LogFactory;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.http.IccHttpHttpRequest;
import com.dahuatech.icc.oauth.http.IccResponse;
import com.dahuatech.icc.oauth.http.Versions;
import com.dahuatech.icc.util.BeanUtil;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.concurrent.ConcurrentHashMap;
/**
* @author 232676
* @since 1.0.0 2020-10-24 20:59:11
*/
public class IccProfile {
private static final Log logger = LogFactory.get();
/** 各个子系统的版本 */
public static volatile Map systemVersionMap = new ConcurrentHashMap<>();
public static volatile boolean inited = Boolean.FALSE;
/** 平台服务IP或域名 */
public static String host;
/** 客户端认证ID */
public static String clientId;
/** 客户端认证秘钥 */
public static String clientSecret;
/** 当前使用认证类型 */
public static GrantType grantType;
/** 密码认证用户名 */
public static String username;
/** 认证密码 */
public static String password;
/** 密码认证客户端ID */
public static String pwdClientId;
/** 密码认证客户端秘钥 */
public static String pwdClientSecret;
/** 客户端认证请求头用户userId=1 */
public static String CONFIG_CLIENT_USERID = "1";
/** 是否开启客户端模式,自动携带请求头User-Id=1 */
public static boolean CONFIG_CLIENT_USERID_ENABLE = Boolean.TRUE;
private static String HTTPS_PROTOCOL = "https://";
/** 默认HTTPS,例如https://api.dahuatech.com,尾部不包含"/" */
public static String URL_SCHEME = HTTPS_PROTOCOL;
private static String HTTP_PROTOCOL = "http://";
/** 配置config */
private final String CONFIG_HTTPS = "icc.sdk.enable.https";
private volatile Properties configuration = new Properties();
private IccProfile() throws ClientException {
init();
}
public static synchronized IccProfile getInstance() {
return IccProfile.ConfigurationHolder.configuration;
}
public synchronized void init() throws ClientException {
if (inited) {
return;
}
inited = true;
loadEnvConfig();
// 记载子系统版本信息
initSystemVersion();
}
private void loadEnvConfig() throws ClientException {
loadIccSdkProperties();
String configClientEnable = "icc.sdk.config.client.enable";
if (this.configuration.containsKey(configClientEnable)
&& "false".equalsIgnoreCase(this.configuration.getProperty(configClientEnable))) {
CONFIG_CLIENT_USERID_ENABLE = false;
} else {
String configClientValue = System.getProperty(configClientEnable);
if (StrUtil.isNotBlank(configClientValue)) {
CONFIG_CLIENT_USERID_ENABLE = Boolean.parseBoolean(configClientValue);
}
}
String configClientUserId = "icc.sdk.config.client.userId";
if (this.configuration.containsKey(configClientUserId)) {
CONFIG_CLIENT_USERID = this.configuration.getProperty(configClientUserId);
} else {
String configUserId = System.getProperty(configClientUserId);
if (StrUtil.isNotBlank(configUserId)) {
CONFIG_CLIENT_USERID = configUserId;
}
}
String configHttps = "";
if (this.configuration.containsKey(CONFIG_HTTPS)) {
configHttps = this.configuration.getProperty(CONFIG_HTTPS);
} else {
configHttps = System.getProperty(CONFIG_HTTPS);
}
if (StrUtil.isNotBlank(configHttps) && "false".equalsIgnoreCase(configHttps)) {
HTTPS_PROTOCOL = HTTP_PROTOCOL;
}
String sdkHost = "icc.sdk.host";
if (StrUtil.isBlank(host) && this.configuration.containsKey(sdkHost)) {
host = this.configuration.getProperty(sdkHost);
} else if (StrUtil.isBlank(host)) {
host = System.getProperty(sdkHost);
}
URL_SCHEME = HTTPS_PROTOCOL + host;
String sdkClientId = "icc.sdk.clientId";
if (StrUtil.isBlank(clientId) && this.configuration.containsKey(sdkClientId)) {
clientId = this.configuration.getProperty(sdkClientId);
} else if (StrUtil.isBlank(clientId)) {
clientId = System.getProperty(sdkClientId);
}
String sdkClientSecret = "icc.sdk.clientSecret";
if (StrUtil.isBlank(clientSecret) && this.configuration.containsKey(sdkClientSecret)) {
clientSecret = StrUtil.trim(this.configuration.getProperty(sdkClientSecret));
} else if (StrUtil.isBlank(clientSecret)) {
clientSecret = System.getProperty(sdkClientSecret);
}
String sdkPwdClientId = "icc.sdk.pwdClientId";
if (StrUtil.isBlank(pwdClientId) && this.configuration.containsKey(sdkPwdClientId)) {
pwdClientId = this.configuration.getProperty(sdkPwdClientId);
} else if (StrUtil.isBlank(pwdClientId)) {
pwdClientId = System.getProperty(sdkPwdClientId);
}
String sdkPwdClientSecretKey = "icc.sdk.pwdClientSecret";
if (StrUtil.isBlank(pwdClientSecret) && this.configuration.containsKey(sdkPwdClientSecretKey)) {
pwdClientSecret = this.configuration.getProperty(sdkPwdClientSecretKey);
} else if (StrUtil.isBlank(pwdClientSecret)) {
pwdClientSecret = System.getProperty(sdkPwdClientSecretKey);
}
String sdkUsername = "icc.sdk.username";
if (StrUtil.isBlank(username) && this.configuration.containsKey(sdkUsername)) {
username = this.configuration.getProperty(sdkUsername);
} else if (StrUtil.isBlank(username)) {
username = System.getProperty(sdkUsername);
}
String sdkPassword = "icc.sdk.password";
if (StrUtil.isBlank(password) && this.configuration.containsKey(sdkPassword)) {
password = this.configuration.getProperty(sdkPassword);
} else if (StrUtil.isBlank(password)) {
password = System.getProperty(sdkPassword);
}
String sdkGrantType = "icc.sdk.grantType";
if (grantType == null && this.configuration.containsKey(sdkGrantType)) {
sdkGrantType = this.configuration.getProperty(sdkGrantType);
grantType = GrantType.valueOf(sdkGrantType);
} else if (grantType == null && StrUtil.isNotBlank(System.getProperty(sdkGrantType))) {
sdkGrantType = System.getProperty(sdkGrantType);
grantType = GrantType.valueOf(sdkGrantType);
}
if (grantType == null) {
logger.error("IccProfile grantType can not be null , please set first");
}
if (grantType != null && grantType.equals(GrantType.password)) {
if (StrUtil.isBlank(username)
|| StrUtil.isBlank(password)
|| StrUtil.isBlank(pwdClientId)
|| StrUtil.isBlank(pwdClientSecret)) {
logger.error(
"GrantType type [password] ,`username` or `password` `pwdClientId` or `pwdClientSecret` can not null,please set first");
}
}
if (grantType != null && grantType.equals(GrantType.client_credentials)) {
logger.error(
"GrantType type [client_credentials] not support");
throw new ClientException("GrantType type [client_credentials] do not support ");
}
}
private void loadIccSdkProperties() {
// 根路径为classpath
InputStream is = this.getClass().getResourceAsStream("/config/iccSdk.properties");
if (is != null) {
try {
this.configuration.clear();
this.configuration.load(is);
} catch (IOException e) {
} finally {
try {
is.close();
} catch (Throwable t) {
}
}
}else{
logger.info("can not load [classpath:resources/config/iccSdk.properties] , use DefaultClient constructor instead ");
}
}
/** 2步初始化资源系统版本信息 */
private void initSystemVersion() {
// 第一步-先获取evo-brm版本
String baseVersion = null;
String BRM_BASE_VERSION_URL = "/evo-apigw/evo-brm/version";
try {
HttpRequest request = HttpRequest.get(URL_SCHEME + BRM_BASE_VERSION_URL);
request.timeout(80000);
request.setReadTimeout(80000);
HttpResponse evoVersion = request.execute();
if (evoVersion.getStatus() == HttpStatus.HTTP_OK) {
String versionBody = evoVersion.body();
Versions versions = BeanUtil.toBean(versionBody, Versions.class);
if (versions.isSuccess()) {
baseVersion = versions.getData().getVersion();
}
}
} catch (Exception e) {
logger.error(
"init icc subsystem version error [{}],error [{}]", URL_SCHEME + BRM_BASE_VERSION_URL, e);
e.printStackTrace();
}
try {
// 第二步,根据evo-brm获取各个子系统的版本
if (StrUtil.isNotBlank(baseVersion)) {
String BRM_VERSION_URL = "/evo-apigw/evo-brm/%S/config/get-version";
IccHttpHttpRequest subSystemRequest =
new IccHttpHttpRequest(String.format(URL_SCHEME + BRM_VERSION_URL, baseVersion));
HttpResponse evoVersions = subSystemRequest.executeResponse();
if (evoVersions.getStatus() == HttpStatus.HTTP_OK) {
String evoVersionBody = evoVersions.body();
SystemVersions systemVersions = BeanUtil.toBean(evoVersionBody, SystemVersions.class);
if (systemVersions.isSuccess()
&& systemVersions.getData() != null
&& systemVersions.getData().getVersionInfo().size() > 0) {
List versionInfos = systemVersions.getData().getVersionInfo();
for (VersionInfo vi : versionInfos) {
// 版本为空,不给与设置
if (StrUtil.isBlank(vi.getVersion())) {
continue;
}
systemVersionMap.put(vi.getSystemName(), vi.getVersion());
}
}
}
}
} catch (ClientException e) {
logger.error("fetch subSystem version error [{}]", e);
e.printStackTrace();
}
}
private static class ConfigurationHolder {
private static IccProfile configuration;
static {
try {
configuration = new IccProfile();
} catch (ClientException e) {
e.printStackTrace();
}
}
}
static class VersionInfo {
private String systemName;
private String version;
public String getSystemName() {
return systemName;
}
public void setSystemName(String systemName) {
this.systemName = systemName;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
@Override
public String toString() {
return "VersionInfo{"
+ "systemName='"
+ systemName
+ '\''
+ ", version='"
+ version
+ '\''
+ '}';
}
}
static class SystemVersions extends IccResponse {
private VersionInfoDO data;
public VersionInfoDO getData() {
return data;
}
public void setData(VersionInfoDO data) {
this.data = data;
}
@Override
public String toString() {
return "SystemVersions{" + "data=" + data + '}';
}
public class VersionInfoDO {
private List versionInfo;
public List getVersionInfo() {
return versionInfo;
}
public void setVersionInfo(List versionInfo) {
this.versionInfo = versionInfo;
}
}
}
}