org.sonar.server.ui.ws.SettingsAction Maven / Gradle / Ivy
/*
* SonarQube
* Copyright (C) 2009-2018 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.server.ui.ws;
import org.sonar.api.config.Configuration;
import org.sonar.api.server.ws.Request;
import org.sonar.api.server.ws.Response;
import org.sonar.api.server.ws.WebService.NewController;
import org.sonar.api.utils.text.JsonWriter;
import org.sonar.api.web.page.Page;
import org.sonar.core.config.WebConstants;
import org.sonar.server.ui.PageRepository;
import org.sonar.server.user.UserSession;
public class SettingsAction implements NavigationWsAction {
private final PageRepository pageRepository;
private final Configuration config;
private final UserSession userSession;
public SettingsAction(PageRepository pageRepository, Configuration config, UserSession userSession) {
this.pageRepository = pageRepository;
this.config = config;
this.userSession = userSession;
}
@Override
public void define(NewController context) {
context.createAction("settings")
.setDescription("Get configuration information for the settings page:" +
"" +
" - List plugin-contributed pages
" +
" - Show update center (or not)
" +
"
")
.setHandler(this)
.setInternal(true)
.setResponseExample(getClass().getResource("settings-example.json"))
.setSince("5.2");
}
@Override
public void handle(Request request, Response response) throws Exception {
boolean isSysAdmin = userSession.isSystemAdministrator();
try (JsonWriter json = response.newJsonWriter()) {
json.beginObject();
json.prop("showUpdateCenter", isSysAdmin && config.getBoolean(WebConstants.SONAR_UPDATECENTER_ACTIVATE).orElse(false));
json.name("extensions").beginArray();
if (isSysAdmin) {
for (Page page : pageRepository.getGlobalPages(true)) {
json.beginObject()
.prop("key", page.getKey())
.prop("name", page.getName())
.endObject();
}
}
json.endArray().endObject();
}
}
}