All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.server.project.ws.IndexAction Maven / Gradle / Ivy

There is a newer version: 7.2.1
Show newest version
/*
 * 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.project.ws;

import com.google.common.io.Resources;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import org.sonar.api.server.ws.Change;
import org.sonar.api.server.ws.Request;
import org.sonar.api.server.ws.Response;
import org.sonar.api.server.ws.WebService;
import org.sonar.api.utils.text.JsonWriter;
import org.sonar.api.web.UserRole;
import org.sonar.core.util.stream.MoreCollectors;
import org.sonar.db.DbClient;
import org.sonar.db.DbSession;
import org.sonar.db.component.ComponentDto;
import org.sonar.server.user.UserSession;

import static java.util.Optional.ofNullable;
import static org.sonar.server.ws.KeyExamples.KEY_PROJECT_EXAMPLE_001;
import static org.sonarqube.ws.client.project.ProjectsWsParameters.ACTION_INDEX;

/**
 * This web service is used by old version of SonarLint.
 */
public class IndexAction implements ProjectsWsAction {

  private static final String PARAM_PROJECT = "project";
  private static final String PARAM_SEARCH = "search";
  private static final String PARAM_SUB_PROJECTS = "subprojects";
  private static final String PARAM_FORMAT = "format";

  private final DbClient dbClient;
  private final UserSession userSession;

  public IndexAction(DbClient dbClient, UserSession userSession) {
    this.dbClient = dbClient;
    this.userSession = userSession;
  }

  @Override
  public void define(WebService.NewController context) {
    WebService.NewAction action = context.createAction(ACTION_INDEX)
      .setDescription("This web service is deprecated, please use api/components/search instead")
      .setSince("2.10")
      .setDeprecatedSince("6.3")
      .setHandler(this)
      .setResponseExample(Resources.getResource(this.getClass(), "index-example.json"));

    action.setChangelog(
      new Change("6.3", "The parameters 'desc', 'views', 'libs' and 'versions' have no effect."));

    action.createParam(PARAM_PROJECT)
      .setDescription("key or ID of the project")
      .setDeprecatedKey("key", "6.4")
      .setExampleValue(KEY_PROJECT_EXAMPLE_001);

    action.createParam(PARAM_SEARCH)
      .setDescription("Substring of project name, case insensitive. Ignored if the parameter key is set")
      .setExampleValue("Sonar");
    action.createParam(PARAM_SUB_PROJECTS)
      .setDescription("Load sub-projects. Ignored if the parameter key is set")
      .setDefaultValue("false")
      .setBooleanPossibleValues();

    action.createParam(PARAM_FORMAT)
      .setDescription("Only json response format is available")
      .setPossibleValues("json");

    addRemovedParameter("desc", action);
    addRemovedParameter("views", action);
    addRemovedParameter("libs", action);
    addRemovedParameter("versions", action);
  }

  @Override
  public void handle(Request request, Response response) throws Exception {
    try (DbSession dbSession = dbClient.openSession(false)) {
      List projects = getAuthorizedComponents(searchComponents(dbSession, request))
        .stream()
        .filter(p -> p.getMainBranchProjectUuid() == null)
        .collect(MoreCollectors.toList());
      JsonWriter json = response.newJsonWriter();
      json.beginArray();
      for (ComponentDto project : projects) {
        addProject(json, project);
      }
      json.endArray();
      json.close();
    }
  }

  private List searchComponents(DbSession dbSession, Request request) {
    String projectKey = request.param(PARAM_PROJECT);
    List projects = new ArrayList<>();
    if (projectKey != null) {
      getProjectByKeyOrId(dbSession, projectKey).ifPresent(projects::add);
    } else {
      String nameQuery = request.param(PARAM_SEARCH);
      boolean includeModules = request.paramAsBoolean(PARAM_SUB_PROJECTS);
      projects.addAll(dbClient.componentDao().selectProjectsByNameQuery(dbSession, nameQuery, includeModules));
    }
    return projects;
  }

  private Optional getProjectByKeyOrId(DbSession dbSession, String component) {
    try {
      Long componentId = Long.parseLong(component);
      return ofNullable(dbClient.componentDao().selectById(dbSession, componentId).orNull());
    } catch (NumberFormatException e) {
      return ofNullable(dbClient.componentDao().selectByKey(dbSession, component).orNull());
    }
  }

  private List getAuthorizedComponents(List components) {
    return userSession.keepAuthorizedComponents(UserRole.USER, components);
  }

  private static void addProject(JsonWriter json, ComponentDto project) {
    json.beginObject()
      .prop("id", project.getId())
      .prop("k", project.getDbKey())
      .prop("nm", project.name())
      .prop("sc", project.scope())
      .prop("qu", project.qualifier())
      .endObject();
  }

  private static void addRemovedParameter(String key, WebService.NewAction action) {
    action.createParam(key)
      .setDescription("Since 6.3, this parameter has no effect")
      .setDeprecatedSince("6.3");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy