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

com.google.gerrit.server.restapi.project.LabelDefinitionInputParser Maven / Gradle / Ivy

There is a newer version: 3.10.0-rc7
Show newest version
// Copyright (C) 2019 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.google.gerrit.server.restapi.project;

import com.google.common.collect.ImmutableList;
import com.google.common.primitives.Shorts;
import com.google.gerrit.entities.LabelFunction;
import com.google.gerrit.entities.LabelType;
import com.google.gerrit.entities.LabelValue;
import com.google.gerrit.entities.PermissionRule;
import com.google.gerrit.entities.RefNames;
import com.google.gerrit.exceptions.InvalidNameException;
import com.google.gerrit.extensions.restapi.BadRequestException;
import com.google.gerrit.server.project.RefPattern;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;

public class LabelDefinitionInputParser {
  public static LabelFunction parseFunction(String functionString) throws BadRequestException {
    Optional function = LabelFunction.parse(functionString.trim());
    return function.orElseThrow(
        () -> new BadRequestException("unknown function: " + functionString));
  }

  public static List parseValues(Map values)
      throws BadRequestException {
    List valueList = new ArrayList<>();
    Set allValues = new HashSet<>();
    for (Map.Entry e : values.entrySet()) {
      short value;
      try {
        value = Shorts.checkedCast(PermissionRule.parseInt(e.getKey().trim()));
      } catch (NumberFormatException ex) {
        throw new BadRequestException("invalid value: " + e.getKey(), ex);
      }
      if (!allValues.add(value)) {
        throw new BadRequestException("duplicate value: " + value);
      }
      String valueDescription = e.getValue().trim();
      if (valueDescription.isEmpty()) {
        throw new BadRequestException("description for value '" + e.getKey() + "' cannot be empty");
      }
      valueList.add(LabelValue.create(value, valueDescription));
    }
    return valueList;
  }

  public static short parseDefaultValue(LabelType.Builder labelType, short defaultValue)
      throws BadRequestException {
    if (!labelType.getValues().stream().anyMatch(v -> v.getValue() == defaultValue)) {
      throw new BadRequestException("invalid default value: " + defaultValue);
    }
    return defaultValue;
  }

  public static ImmutableList parseBranches(List branches)
      throws BadRequestException {
    ImmutableList.Builder validBranches = ImmutableList.builder();
    for (String branch : branches) {
      String newBranch = branch.trim();
      if (newBranch.isEmpty()) {
        continue;
      }
      if (!RefPattern.isRE(newBranch) && !newBranch.startsWith(RefNames.REFS)) {
        newBranch = RefNames.REFS_HEADS + newBranch;
      }
      try {
        RefPattern.validate(newBranch);
      } catch (InvalidNameException e) {
        throw new BadRequestException("invalid branch: " + branch, e);
      }
      validBranches.add(newBranch);
    }
    return validBranches.build();
  }

  private LabelDefinitionInputParser() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy