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

org.sonar.server.permission.ws.SearchProjectPermissionsData 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.permission.ws;

import com.google.common.collect.FluentIterable;
import com.google.common.collect.Iterables;
import com.google.common.collect.Ordering;
import com.google.common.collect.Table;
import java.util.List;
import java.util.Set;
import org.sonar.api.utils.Paging;
import org.sonar.db.component.ComponentDto;

import static com.google.common.base.MoreObjects.firstNonNull;
import static com.google.common.base.Preconditions.checkState;
import static com.google.common.collect.ImmutableList.copyOf;
import static com.google.common.collect.ImmutableTable.copyOf;

class SearchProjectPermissionsData {
  private final List rootComponents;
  private final Paging paging;
  private final Table userCountByProjectIdAndPermission;
  private final Table groupCountByProjectIdAndPermission;

  private SearchProjectPermissionsData(Builder builder) {
    this.rootComponents = copyOf(builder.projects);
    this.paging = builder.paging;
    this.userCountByProjectIdAndPermission = copyOf(builder.userCountByProjectIdAndPermission);
    this.groupCountByProjectIdAndPermission = copyOf(builder.groupCountByProjectIdAndPermission);
  }

  static Builder newBuilder() {
    return new Builder();
  }

  List rootComponents() {
    return rootComponents;
  }

  Paging paging() {
    return paging;
  }

  int userCount(long rootComponentId, String permission) {
    return firstNonNull(userCountByProjectIdAndPermission.get(rootComponentId, permission), 0);
  }

  int groupCount(long rootComponentId, String permission) {
    return firstNonNull(groupCountByProjectIdAndPermission.get(rootComponentId, permission), 0);
  }

  Set permissions(long rootComponentId) {
    return FluentIterable.from(
      Iterables.concat(
        userCountByProjectIdAndPermission.row(rootComponentId).keySet(),
        groupCountByProjectIdAndPermission.row(rootComponentId).keySet()))
      .toSortedSet(Ordering.natural());
  }

  static class Builder {
    private List projects;
    private Paging paging;
    private Table userCountByProjectIdAndPermission;
    private Table groupCountByProjectIdAndPermission;

    private Builder() {
      // prevents instantiation outside main class
    }

    SearchProjectPermissionsData build() {
      checkState(projects != null);
      checkState(userCountByProjectIdAndPermission != null);
      checkState(groupCountByProjectIdAndPermission != null);

      return new SearchProjectPermissionsData(this);
    }

    Builder rootComponents(List projects) {
      this.projects = projects;
      return this;
    }

    Builder paging(Paging paging) {
      this.paging = paging;
      return this;
    }

    Builder userCountByProjectIdAndPermission(Table userCountByProjectIdAndPermission) {
      this.userCountByProjectIdAndPermission = userCountByProjectIdAndPermission;
      return this;
    }

    Builder groupCountByProjectIdAndPermission(Table groupCountByProjectIdAndPermission) {
      this.groupCountByProjectIdAndPermission = groupCountByProjectIdAndPermission;
      return this;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy