blob: f0b76fbe2a3da1423a3cb7521123f31306e2f95f [file] [log] [blame]
// Copyright (C) 2015 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.cfoauth;
import com.google.gerrit.extensions.annotations.PluginName;
import com.google.gerrit.pgm.init.api.ConsoleUI;
import com.google.gerrit.pgm.init.api.InitStep;
import com.google.gerrit.pgm.init.api.Section;
import com.google.inject.Inject;
class InitOAuthConfig implements InitStep {
static final String PLUGIN_SECTION = "plugin";
static final String SERVER_URL = "serverUrl";
static final String CLIENT_ID = "clientId";
static final String CLIENT_SECRET = "clientSecret";
static final String VERIFIY_SIGNATURES = "verifySignatures";
static final String DEFAULT_SERVER_URL = "http://localhost:8080/uaa";
static final String DEFAULT_CLIENT_ID = "gerrit";
private final ConsoleUI ui;
private final Section cfg;
@Inject
InitOAuthConfig(ConsoleUI ui,
Section.Factory sections,
@PluginName String pluginName) {
this.ui = ui;
this.cfg = sections.get(PLUGIN_SECTION, pluginName);
}
@Override
public void run() throws Exception {
ui.header("Cloud Foundry UAA OAuth 2.0 Authentication Provider");
cfg.string("UAA server URL", SERVER_URL, DEFAULT_SERVER_URL);
cfg.string("Client id", CLIENT_ID, DEFAULT_CLIENT_ID);
cfg.passwordForKey("Client secret", CLIENT_SECRET);
cfg.set(VERIFIY_SIGNATURES, Boolean.toString(
ui.yesno(true, "Verify token signatures", VERIFIY_SIGNATURES)));
}
@Override
public void postRun() throws Exception {
}
}