com.synopsys.integration.jira.common.cloud.configuration.JiraCloudRestConfigBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of int-jira-common Show documentation
Show all versions of int-jira-common Show documentation
A library for using various capabilities of Jira.
/**
* int-jira-common
*
* Copyright (c) 2019 Synopsys, Inc.
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* http://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.synopsys.integration.jira.common.cloud.configuration;
import java.net.MalformedURLException;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.math.NumberUtils;
import com.google.gson.Gson;
import com.synopsys.integration.builder.BuilderProperties;
import com.synopsys.integration.builder.BuilderPropertyKey;
import com.synopsys.integration.builder.BuilderStatus;
import com.synopsys.integration.builder.IntegrationBuilder;
import com.synopsys.integration.log.IntLogger;
import com.synopsys.integration.log.LogLevel;
import com.synopsys.integration.log.PrintStreamIntLogger;
import com.synopsys.integration.rest.credentials.Credentials;
import com.synopsys.integration.rest.credentials.CredentialsBuilder;
import com.synopsys.integration.rest.proxy.ProxyInfo;
import com.synopsys.integration.rest.proxy.ProxyInfoBuilder;
import com.synopsys.integration.rest.support.AuthenticationSupport;
public class JiraCloudRestConfigBuilder extends IntegrationBuilder {
public static final BuilderPropertyKey URL_KEY = new BuilderPropertyKey("JIRA_URL");
public static final BuilderPropertyKey AUTH_USER_EMAIL = new BuilderPropertyKey("JIRA_AUTH_USER_EMAIL");
public static final BuilderPropertyKey ACCESS_TOKEN_KEY = new BuilderPropertyKey("JIRA_API_TOKEN");
public static final BuilderPropertyKey TRUST_CERT_KEY = new BuilderPropertyKey("JIRA_TRUST_CERT");
public static final BuilderPropertyKey TIMEOUT_KEY = new BuilderPropertyKey("JIRA_TIMEOUT");
public static final BuilderPropertyKey PROXY_HOST_KEY = new BuilderPropertyKey("JIRA_PROXY_HOST");
public static final BuilderPropertyKey PROXY_PORT_KEY = new BuilderPropertyKey("JIRA_PROXY_PORT");
public static final BuilderPropertyKey PROXY_USERNAME_KEY = new BuilderPropertyKey("JIRA_PROXY_USERNAME");
public static final BuilderPropertyKey PROXY_PASSWORD_KEY = new BuilderPropertyKey("JIRA_PROXY_PASSWORD");
public static final BuilderPropertyKey PROXY_NTLM_DOMAIN_KEY = new BuilderPropertyKey("JIRA_PROXY_NTLM_DOMAIN");
public static final BuilderPropertyKey PROXY_NTLM_WORKSTATION_KEY = new BuilderPropertyKey("JIRA_PROXY_NTLM_WORKSTATION");
public static int DEFAULT_TIMEOUT_SECONDS = 120;
private final BuilderProperties builderProperties;
private IntLogger logger = new PrintStreamIntLogger(System.out, LogLevel.INFO);
private Gson gson = new Gson();
private AuthenticationSupport authenticationSupport = new AuthenticationSupport();
public JiraCloudRestConfigBuilder() {
Set propertyKeys = new HashSet<>();
propertyKeys.add(URL_KEY);
propertyKeys.add(AUTH_USER_EMAIL);
propertyKeys.add(ACCESS_TOKEN_KEY);
propertyKeys.add(TIMEOUT_KEY);
propertyKeys.add(PROXY_HOST_KEY);
propertyKeys.add(PROXY_PORT_KEY);
propertyKeys.add(PROXY_USERNAME_KEY);
propertyKeys.add(PROXY_PASSWORD_KEY);
propertyKeys.add(PROXY_NTLM_DOMAIN_KEY);
propertyKeys.add(PROXY_NTLM_WORKSTATION_KEY);
propertyKeys.add(TRUST_CERT_KEY);
builderProperties = new BuilderProperties(propertyKeys);
builderProperties.set(TIMEOUT_KEY, Integer.toString(JiraCloudRestConfigBuilder.DEFAULT_TIMEOUT_SECONDS));
}
@Override
protected JiraCloudRestConfig buildWithoutValidation() {
URL jiraUrl = null;
try {
jiraUrl = new URL(getUrl());
} catch (MalformedURLException e) {
}
return new JiraCloudRestConfig(jiraUrl, getTimeoutInSeconds(), getProxyInfo(), isTrustCert(), gson, authenticationSupport, getAuthUserEmail(), getApiToken());
}
@Override
protected void validate(BuilderStatus builderStatus) {
if (StringUtils.isBlank(getUrl())) {
builderStatus.addErrorMessage("The Jira Cloud url must be specified.");
} else {
try {
URL blackDuckURL = new URL(getUrl());
blackDuckURL.toURI();
} catch (MalformedURLException | URISyntaxException e) {
builderStatus.addErrorMessage(String.format("The provided Jira Cloud url (%s) is not a valid URL.", getUrl()));
}
}
if (StringUtils.isBlank(getAuthUserEmail())) {
builderStatus.addErrorMessage("The Jira Cloud user name must be specified.");
}
if (StringUtils.isBlank(getApiToken())) {
builderStatus.addErrorMessage("The Jira Cloud access token must be specified.");
}
if (getTimeoutInSeconds() <= 0) {
builderStatus.addErrorMessage("A timeout (in seconds) greater than zero must be specified.");
}
CredentialsBuilder proxyCredentialsBuilder = new CredentialsBuilder();
proxyCredentialsBuilder.setUsername(getProxyUsername());
proxyCredentialsBuilder.setPassword(getProxyPassword());
BuilderStatus proxyCredentialsBuilderStatus = proxyCredentialsBuilder.validateAndGetBuilderStatus();
if (!proxyCredentialsBuilderStatus.isValid()) {
builderStatus.addErrorMessage("The proxy credentials were not valid.");
builderStatus.addAllErrorMessages(proxyCredentialsBuilderStatus.getErrorMessages());
} else {
Credentials proxyCredentials = proxyCredentialsBuilder.build();
ProxyInfoBuilder proxyInfoBuilder = new ProxyInfoBuilder();
proxyInfoBuilder.setCredentials(proxyCredentials);
proxyInfoBuilder.setHost(getProxyHost());
proxyInfoBuilder.setPort(getProxyPort());
proxyInfoBuilder.setNtlmDomain(getProxyNtlmDomain());
proxyInfoBuilder.setNtlmWorkstation(getProxyNtlmWorkstation());
BuilderStatus proxyInfoBuilderStatus = proxyInfoBuilder.validateAndGetBuilderStatus();
if (!proxyInfoBuilderStatus.isValid()) {
builderStatus.addAllErrorMessages(proxyInfoBuilderStatus.getErrorMessages());
}
}
}
public Set getEnvironmentVariableKeys() {
Set allEnvironmentVariableKeys = new HashSet<>();
allEnvironmentVariableKeys.addAll(builderProperties.getEnvironmentVariableKeys());
return allEnvironmentVariableKeys;
}
public Map getProperties() {
return builderProperties.getProperties();
}
public void setProperties(Set extends Map.Entry> propertyEntries) {
propertyEntries.forEach(entry -> setProperty(entry.getKey(), entry.getValue()));
}
public void setProperty(String key, String value) {
String resolvedKey = resolveKey(key).getKey();
builderProperties.setProperty(resolvedKey, value);
}
private BuilderPropertyKey resolveKey(String key) {
String fixedKey = key.toUpperCase().replace(".", "_");
return new BuilderPropertyKey(fixedKey);
}
private ProxyInfo getProxyInfo() {
if (StringUtils.isBlank(getProxyHost())) {
return ProxyInfo.NO_PROXY_INFO;
}
CredentialsBuilder credentialsBuilder = Credentials.newBuilder();
credentialsBuilder.setUsernameAndPassword(getProxyUsername(), getProxyPassword());
Credentials proxyCredentials = credentialsBuilder.build();
ProxyInfoBuilder proxyInfoBuilder = ProxyInfo.newBuilder();
proxyInfoBuilder.setHost(getProxyHost());
proxyInfoBuilder.setPort(getProxyPort());
proxyInfoBuilder.setCredentials(proxyCredentials);
proxyInfoBuilder.setNtlmDomain(getProxyNtlmDomain());
proxyInfoBuilder.setNtlmWorkstation(getProxyNtlmWorkstation());
return proxyInfoBuilder.build();
}
public IntLogger getLogger() {
return logger;
}
public JiraCloudRestConfigBuilder setLogger(IntLogger logger) {
if (null != logger) {
this.logger = logger;
}
return this;
}
public Gson getGson() {
return gson;
}
public JiraCloudRestConfigBuilder setGson(Gson gson) {
if (null != gson) {
this.gson = gson;
}
return this;
}
public AuthenticationSupport getAuthenticationSupport() {
return authenticationSupport;
}
public JiraCloudRestConfigBuilder setAuthenticationSupport(AuthenticationSupport authenticationSupport) {
if (null != authenticationSupport) {
this.authenticationSupport = authenticationSupport;
}
return this;
}
public String getUrl() {
return builderProperties.get(URL_KEY);
}
public JiraCloudRestConfigBuilder setUrl(String url) {
builderProperties.set(URL_KEY, url);
return this;
}
public String getAuthUserEmail() {
return builderProperties.get(AUTH_USER_EMAIL);
}
public JiraCloudRestConfigBuilder setAuthUserEmail(String authUserEmail) {
builderProperties.set(AUTH_USER_EMAIL, authUserEmail);
return this;
}
public String getApiToken() {
return builderProperties.get(ACCESS_TOKEN_KEY);
}
public JiraCloudRestConfigBuilder setApiToken(String accessToken) {
builderProperties.set(ACCESS_TOKEN_KEY, accessToken);
return this;
}
public int getTimeoutInSeconds() {
return NumberUtils.toInt(builderProperties.get(TIMEOUT_KEY), JiraCloudRestConfigBuilder.DEFAULT_TIMEOUT_SECONDS);
}
public JiraCloudRestConfigBuilder setTimeoutInSeconds(String timeout) {
builderProperties.set(TIMEOUT_KEY, timeout);
return this;
}
public JiraCloudRestConfigBuilder setTimeoutInSeconds(int timeout) {
setTimeoutInSeconds(String.valueOf(timeout));
return this;
}
public String getProxyHost() {
return builderProperties.get(PROXY_HOST_KEY);
}
public JiraCloudRestConfigBuilder setProxyHost(String proxyHost) {
builderProperties.set(PROXY_HOST_KEY, proxyHost);
return this;
}
public int getProxyPort() {
return NumberUtils.toInt(builderProperties.get(PROXY_PORT_KEY), 0);
}
public JiraCloudRestConfigBuilder setProxyPort(String proxyPort) {
builderProperties.set(PROXY_PORT_KEY, proxyPort);
return this;
}
public JiraCloudRestConfigBuilder setProxyPort(int proxyPort) {
setProxyPort(String.valueOf(proxyPort));
return this;
}
public String getProxyUsername() {
return builderProperties.get(PROXY_USERNAME_KEY);
}
public JiraCloudRestConfigBuilder setProxyUsername(String proxyUsername) {
builderProperties.set(PROXY_USERNAME_KEY, proxyUsername);
return this;
}
public String getProxyPassword() {
return builderProperties.get(PROXY_PASSWORD_KEY);
}
public JiraCloudRestConfigBuilder setProxyPassword(String proxyPassword) {
builderProperties.set(PROXY_PASSWORD_KEY, proxyPassword);
return this;
}
public String getProxyNtlmDomain() {
return builderProperties.get(PROXY_NTLM_DOMAIN_KEY);
}
public JiraCloudRestConfigBuilder setProxyNtlmDomain(String proxyNtlmDomain) {
builderProperties.set(PROXY_NTLM_DOMAIN_KEY, proxyNtlmDomain);
return this;
}
public String getProxyNtlmWorkstation() {
return builderProperties.get(PROXY_NTLM_WORKSTATION_KEY);
}
public JiraCloudRestConfigBuilder setProxyNtlmWorkstation(String proxyNtlmWorkstation) {
builderProperties.set(PROXY_NTLM_WORKSTATION_KEY, proxyNtlmWorkstation);
return this;
}
public boolean isTrustCert() {
return Boolean.parseBoolean(builderProperties.get(TRUST_CERT_KEY));
}
public JiraCloudRestConfigBuilder setTrustCert(String trustCert) {
builderProperties.set(TRUST_CERT_KEY, trustCert);
return this;
}
public JiraCloudRestConfigBuilder setTrustCert(boolean trustCert) {
setTrustCert(String.valueOf(trustCert));
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy