blob: 7c0936fe2a829798b02239caf8d605898d477402 [file] [log] [blame]
// Copyright (C) 2024 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.gerrit.extensions.common.BatchLabelInput;
import com.google.gerrit.extensions.common.ChangeInfo;
import com.google.gerrit.extensions.restapi.Response;
import com.google.gerrit.extensions.restapi.RestApiException;
import com.google.gerrit.extensions.restapi.RestModifyView;
import com.google.gerrit.server.permissions.PermissionBackendException;
import com.google.gerrit.server.project.ProjectConfig;
import com.google.gerrit.server.project.ProjectResource;
import com.google.gerrit.server.restapi.project.RepoMetaDataUpdater.ConfigChangeCreator;
import com.google.gerrit.server.update.UpdateException;
import com.google.inject.Inject;
import java.io.IOException;
import javax.inject.Singleton;
import org.eclipse.jgit.errors.ConfigInvalidException;
@Singleton
public class PostLabelsReview implements RestModifyView<ProjectResource, BatchLabelInput> {
private final RepoMetaDataUpdater repoMetaDataUpdater;
private final PostLabels postLabels;
@Inject
PostLabelsReview(RepoMetaDataUpdater repoMetaDataUpdater, PostLabels postLabels) {
this.repoMetaDataUpdater = repoMetaDataUpdater;
this.postLabels = postLabels;
}
@Override
public Response<ChangeInfo> apply(ProjectResource rsrc, BatchLabelInput input)
throws PermissionBackendException, IOException, ConfigInvalidException, UpdateException,
RestApiException {
try (ConfigChangeCreator creator =
repoMetaDataUpdater.configChangeCreator(
rsrc.getNameKey(), input.commitMessage, "Review labels change")) {
ProjectConfig config = creator.getConfig();
var unused = postLabels.updateProjectConfig(config, input);
return creator.createChange();
}
}
}