
org.sonar.server.project.ws.ProjectsWs Maven / Gradle / Ivy
/*
* SonarQube
* Copyright (C) 2009-2016 SonarSource SA
* mailto:contact 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.project.ws;
import com.google.common.io.Resources;
import org.sonar.api.server.ws.RailsHandler;
import org.sonar.api.server.ws.WebService;
import static org.sonar.server.ws.KeyExamples.KEY_PROJECT_EXAMPLE_001;
public class ProjectsWs implements WebService {
public static final String ENDPOINT = "api/projects";
private static final String FALSE = "false";
private static final String TRUE = "true";
private final ProjectsWsAction[] actions;
public ProjectsWs(ProjectsWsAction... actions) {
this.actions = actions;
}
@Override
public void define(Context context) {
NewController controller = context.createController(ENDPOINT)
.setSince("2.10")
.setDescription("Manage project existence.");
defineIndexAction(controller);
defineCreateAction(controller);
for (ProjectsWsAction action : actions) {
action.define(controller);
}
controller.done();
}
private void defineIndexAction(NewController controller) {
WebService.NewAction action = controller.createAction("index")
.setDescription("Search for projects")
.setSince("2.10")
.setHandler(RailsHandler.INSTANCE)
.setResponseExample(Resources.getResource(this.getClass(), "projects-example-index.json"));
action.createParam("key")
.setDescription("id or key of the project")
.setExampleValue(KEY_PROJECT_EXAMPLE_001);
action.createParam("search")
.setDescription("Substring of project name, case insensitive")
.setExampleValue("Sonar");
action.createParam("desc")
.setDescription("Load project description")
.setDefaultValue(TRUE)
.setBooleanPossibleValues();
action.createParam("subprojects")
.setDescription("Load sub-projects. Ignored if the parameter key is set")
.setDefaultValue(FALSE)
.setBooleanPossibleValues();
action.createParam("views")
.setDescription("Load views and sub-views. Ignored if the parameter key is set")
.setDefaultValue(FALSE)
.setBooleanPossibleValues();
action.createParam("libs")
.setDescription("Load libraries. Ignored if the parameter key is set")
.setDefaultValue(FALSE)
.setBooleanPossibleValues();
action.createParam("versions")
.setDescription("Load version")
.setDefaultValue(FALSE)
.setPossibleValues(TRUE, FALSE, "last");
RailsHandler.addFormatParam(action);
}
private void defineCreateAction(NewController controller) {
WebService.NewAction action = controller.createAction("create")
.setDescription("Create a project. Requires Create Projects permission")
.setSince("4.0")
.setPost(true)
.setHandler(RailsHandler.INSTANCE)
.setResponseExample(Resources.getResource(this.getClass(), "projects-example-create.json"));
action.createParam("key")
.setDescription("Key of the project")
.setRequired(true)
.setExampleValue(KEY_PROJECT_EXAMPLE_001);
action.createParam("name")
.setDescription("Name of the project")
.setRequired(true)
.setExampleValue("SonarQube");
action.createParam("branch")
.setDescription("SCM Branch of the project. The key of the project will become key:branch, for instance 'SonarQube:branch-5.0'")
.setRequired(false)
.setExampleValue("branch-5.0");
RailsHandler.addFormatParam(action);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy