blob: 23be84bd0d333f8afd91cb246b9e49285133e2c9 [file] [log] [blame]
// Copyright (C) 2013 The Android Open Source Project
//
// 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
//
// 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.googlesource.gerrit.plugins.hooks.rtc;
import java.io.IOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.gerrit.pgm.init.InitStep;
import com.google.gerrit.pgm.init.Section;
import com.google.gerrit.pgm.init.Section.Factory;
import com.google.gerrit.pgm.util.ConsoleUI;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import com.googlesource.gerrit.plugins.hooks.its.InitIts;
import com.googlesource.gerrit.plugins.hooks.rtc.network.RTCClient;
import com.googlesource.gerrit.plugins.hooks.validation.ItsAssociationPolicy;
/** Initialize the GitRepositoryManager configuration section. */
@Singleton
class InitRTC extends InitIts implements InitStep {
private static final Logger log = LoggerFactory.getLogger(InitRTC.class);
private static final String COMMENT_LINK_SECTION = "commentLink";
private final ConsoleUI ui;
private Section rtc;
private Section rtcComment;
private Factory sections;
private String rtcUrl;
private String rtcUsername;
private String rtcPassword;
@Inject
InitRTC(final ConsoleUI ui, final Section.Factory sections) {
this.ui = ui;
this.sections = sections;
}
public void run() {
this.rtc = sections.get(RTCItsFacade.ITS_NAME_RTC, null);
this.rtcComment =
sections.get(COMMENT_LINK_SECTION, RTCItsFacade.ITS_NAME_RTC);
ui.message("\n");
ui.header("IBM Rational Team Concert connectivity");
boolean sslVerify = true;
do {
rtcUrl = enterRTCConnectivity();
if(rtcUrl != null) {
sslVerify = enterSSLVerify(rtc);
}
} while (rtcUrl != null
&& (isConnectivityRequested(ui, rtcUrl) && !isRTCConnectSuccessful(rtcUrl, sslVerify)));
if (rtcUrl == null) {
return;
}
ui.header("Rational Team Concert issue-tracking association");
rtcComment.string("RTC Issue-Id regex", "match", "RTC#([0-9]+)");
rtcComment.set("html",
String.format("<a href=\"%s/browse/$1\">$1</a>", rtcUrl));
rtcComment.select("RTC Issue-Id enforced in commit message", "association",
ItsAssociationPolicy.OPTIONAL);
}
public String enterRTCConnectivity() {
String url = rtc.string("RTC CCM URL (empty to skip)", "url", null);
if (url != null) {
rtcUsername = rtc.string("RTC username", "username", "");
rtcPassword = rtc.password("username", "password");
}
return url;
}
private boolean isRTCConnectSuccessful(String rtcUrl, boolean sslVerify) {
ui.message("Checking IBM Rational Team Concert connectivity ... ");
try {
RTCClient rtcClient = new RTCClient(rtcUrl, sslVerify, null);
rtcClient.sessionApi().login(rtcUsername, rtcPassword);
ui.message("[OK]\n");
return true;
} catch (IOException e) {
ui.message("*FAILED* (%s)\n", e.getLocalizedMessage());
return false;
}
}
}