use of org.apache.inlong.manager.client.api.auth.SecretTokenAuthentication in project incubator-inlong by apache.
the class InlongGroupTransfer method createFlinkExtInfo.
public static List<InlongGroupExtInfo> createFlinkExtInfo(FlinkSortBaseConf flinkSortBaseConf) {
List<InlongGroupExtInfo> extInfos = new ArrayList<>();
InlongGroupExtInfo sortType = new InlongGroupExtInfo();
sortType.setKeyName(InlongGroupSettings.SORT_TYPE);
sortType.setKeyValue(SortType.FLINK.getType());
extInfos.add(sortType);
if (flinkSortBaseConf.getAuthentication() != null) {
Authentication authentication = flinkSortBaseConf.getAuthentication();
AuthType authType = authentication.getAuthType();
AssertUtil.isTrue(authType == AuthType.SECRET_AND_TOKEN, String.format("Unsupported authentication:%s for flink", authType.name()));
final SecretTokenAuthentication secretTokenAuthentication = (SecretTokenAuthentication) authentication;
InlongGroupExtInfo authTypeExt = new InlongGroupExtInfo();
authTypeExt.setKeyName(InlongGroupSettings.SORT_AUTHENTICATION_TYPE);
authTypeExt.setKeyValue(authType.toString());
extInfos.add(authTypeExt);
InlongGroupExtInfo authValue = new InlongGroupExtInfo();
authValue.setKeyName(InlongGroupSettings.SORT_AUTHENTICATION);
authValue.setKeyValue(secretTokenAuthentication.toString());
extInfos.add(authValue);
}
if (StringUtils.isNotEmpty(flinkSortBaseConf.getServiceUrl())) {
InlongGroupExtInfo flinkUrl = new InlongGroupExtInfo();
flinkUrl.setKeyName(InlongGroupSettings.SORT_URL);
flinkUrl.setKeyValue(flinkSortBaseConf.getServiceUrl());
extInfos.add(flinkUrl);
}
if (MapUtils.isNotEmpty(flinkSortBaseConf.getProperties())) {
InlongGroupExtInfo flinkProperties = new InlongGroupExtInfo();
flinkProperties.setKeyName(InlongGroupSettings.SORT_PROPERTIES);
flinkProperties.setKeyValue(JsonUtils.toJson(flinkSortBaseConf.getProperties()));
extInfos.add(flinkProperties);
}
return extInfos;
}
Aggregations