org.sonar.plugins.github.GitHubPluginConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-github-plugin Show documentation
Show all versions of sonar-github-plugin Show documentation
Provide some integration between GitHub and SonarQube
The newest version!
/*
* SonarQube :: GitHub Plugin
* Copyright (C) 2015-2017 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.plugins.github;
import java.net.Authenticator;
import java.net.PasswordAuthentication;
import java.net.Proxy;
import java.net.ProxySelector;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.annotation.CheckForNull;
import org.sonar.api.CoreProperties;
import org.sonar.api.batch.BatchSide;
import org.sonar.api.batch.InstantiationStrategy;
import org.sonar.api.config.Settings;
import org.sonar.api.utils.MessageException;
import org.sonar.api.utils.System2;
import org.sonar.api.utils.log.Logger;
import org.sonar.api.utils.log.Loggers;
import static org.apache.commons.lang.StringUtils.isNotBlank;
@BatchSide
@InstantiationStrategy(InstantiationStrategy.PER_BATCH)
public class GitHubPluginConfiguration {
public static final int MAX_GLOBAL_ISSUES = 10;
private static final Logger LOG = Loggers.get(GitHubPluginConfiguration.class);
public static final String HTTP_PROXY_HOSTNAME = "http.proxyHost";
public static final String HTTPS_PROXY_HOSTNAME = "https.proxyHost";
public static final String PROXY_SOCKS_HOSTNAME = "socksProxyHost";
public static final String HTTP_PROXY_PORT = "http.proxyPort";
public static final String HTTPS_PROXY_PORT = "https.proxyPort";
public static final String HTTP_PROXY_USER = "http.proxyUser";
public static final String HTTP_PROXY_PASS = "http.proxyPassword";
private final Settings settings;
private final System2 system2;
private final Pattern gitSshPattern;
private final Pattern gitHttpPattern;
public GitHubPluginConfiguration(Settings settings, System2 system2) {
this.settings = settings;
this.system2 = system2;
this.gitSshPattern = Pattern.compile(".*@github\\.com:(.*/.*)\\.git");
this.gitHttpPattern = Pattern.compile("https?://github\\.com/(.*/.*)\\.git");
}
public int pullRequestNumber() {
return settings.getInt(GitHubPlugin.GITHUB_PULL_REQUEST);
}
public String repository() {
if (settings.hasKey(GitHubPlugin.GITHUB_REPO)) {
return repoFromProp();
}
if (isNotBlank(settings.getString(CoreProperties.LINKS_SOURCES_DEV)) || isNotBlank(settings.getString(CoreProperties.LINKS_SOURCES))) {
return repoFromScmProps();
}
throw MessageException.of("Unable to determine GitHub repository name for this project. Please provide it using property '" + GitHubPlugin.GITHUB_REPO
+ "' or configure property '" + CoreProperties.LINKS_SOURCES + "'.");
}
private String repoFromScmProps() {
String repo = null;
if (isNotBlank(settings.getString(CoreProperties.LINKS_SOURCES_DEV))) {
String url = settings.getString(CoreProperties.LINKS_SOURCES_DEV);
repo = extractRepoFromGitUrl(url);
}
if (repo == null && isNotBlank(settings.getString(CoreProperties.LINKS_SOURCES))) {
String url = settings.getString(CoreProperties.LINKS_SOURCES);
repo = extractRepoFromGitUrl(url);
}
if (repo == null) {
throw MessageException.of("Unable to parse GitHub repository name for this project. Please check configuration:\n * " + CoreProperties.LINKS_SOURCES_DEV
+ ": " + settings.getString(CoreProperties.LINKS_SOURCES_DEV) + "\n * " + CoreProperties.LINKS_SOURCES + ": " + settings.getString(CoreProperties.LINKS_SOURCES));
}
return repo;
}
private String repoFromProp() {
String urlOrRepo = settings.getString(GitHubPlugin.GITHUB_REPO);
String repo = extractRepoFromGitUrl(urlOrRepo);
if (repo == null) {
return urlOrRepo;
}
return repo;
}
@CheckForNull
private String extractRepoFromGitUrl(String urlOrRepo) {
Matcher matcher = gitSshPattern.matcher(urlOrRepo);
if (matcher.matches()) {
return matcher.group(1);
}
matcher = gitHttpPattern.matcher(urlOrRepo);
if (matcher.matches()) {
return matcher.group(1);
}
return null;
}
@CheckForNull
public String oauth() {
return settings.getString(GitHubPlugin.GITHUB_OAUTH);
}
public boolean isEnabled() {
return settings.hasKey(GitHubPlugin.GITHUB_PULL_REQUEST);
}
public String endpoint() {
return settings.getString(GitHubPlugin.GITHUB_ENDPOINT);
}
public boolean tryReportIssuesInline() {
return !settings.getBoolean(GitHubPlugin.GITHUB_DISABLE_INLINE_COMMENTS);
}
/**
* Checks if a proxy was passed with command line parameters or configured in the system.
* If only an HTTP proxy was configured then it's properties are copied to the HTTPS proxy (like SonarQube configuration)
* @return True iff a proxy was configured to be used in the plugin.
*/
public boolean isProxyConnectionEnabled() {
return system2.property(HTTP_PROXY_HOSTNAME) != null
|| system2.property(HTTPS_PROXY_HOSTNAME) != null
|| system2.property(PROXY_SOCKS_HOSTNAME) != null;
}
public Proxy getHttpProxy() {
try {
if (system2.property(HTTP_PROXY_HOSTNAME) != null && system2.property(HTTPS_PROXY_HOSTNAME) == null) {
System.setProperty(HTTPS_PROXY_HOSTNAME, system2.property(HTTP_PROXY_HOSTNAME));
System.setProperty(HTTPS_PROXY_PORT, system2.property(HTTP_PROXY_PORT));
}
String proxyUser = system2.property(HTTP_PROXY_USER);
String proxyPass = system2.property(HTTP_PROXY_PASS);
if (proxyUser != null && proxyPass != null) {
Authenticator.setDefault(
new Authenticator() {
@Override
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(
proxyUser, proxyPass.toCharArray());
}
});
}
Proxy selectedProxy = ProxySelector.getDefault().select(new URI(endpoint())).get(0);
if (selectedProxy.type() == Proxy.Type.DIRECT) {
LOG.debug("There was no suitable proxy found to connect to GitHub - direct connection is used ");
}
LOG.info("A proxy has been configured - {}", selectedProxy.toString());
return selectedProxy;
} catch (URISyntaxException e) {
throw new IllegalArgumentException("Unable to perform GitHub WS operation - endpoint in wrong format: " + endpoint(), e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy