| // Copyright (C) 2012 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.change; |
| |
| import static com.google.gerrit.server.update.context.RefUpdateContext.RefUpdateType.CHANGE_MODIFICATION; |
| |
| import com.google.gerrit.entities.Change; |
| import com.google.gerrit.extensions.api.changes.DeleteReviewerInput; |
| import com.google.gerrit.extensions.api.changes.NotifyHandling; |
| 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.change.DeleteReviewerByEmailOp; |
| import com.google.gerrit.server.change.DeleteReviewerOp; |
| import com.google.gerrit.server.change.NotifyResolver; |
| import com.google.gerrit.server.change.ReviewerResource; |
| import com.google.gerrit.server.update.BatchUpdate; |
| import com.google.gerrit.server.update.BatchUpdateOp; |
| import com.google.gerrit.server.update.UpdateException; |
| import com.google.gerrit.server.update.context.RefUpdateContext; |
| import com.google.gerrit.server.util.time.TimeUtil; |
| import com.google.inject.Inject; |
| import com.google.inject.Singleton; |
| |
| @Singleton |
| public class DeleteReviewer implements RestModifyView<ReviewerResource, DeleteReviewerInput> { |
| private final BatchUpdate.Factory updateFactory; |
| private final DeleteReviewerOp.Factory deleteReviewerOpFactory; |
| private final DeleteReviewerByEmailOp.Factory deleteReviewerByEmailOpFactory; |
| |
| @Inject |
| DeleteReviewer( |
| BatchUpdate.Factory updateFactory, |
| DeleteReviewerOp.Factory deleteReviewerOpFactory, |
| DeleteReviewerByEmailOp.Factory deleteReviewerByEmailOpFactory) { |
| this.updateFactory = updateFactory; |
| this.deleteReviewerOpFactory = deleteReviewerOpFactory; |
| this.deleteReviewerByEmailOpFactory = deleteReviewerByEmailOpFactory; |
| } |
| |
| @Override |
| public Response<Object> apply(ReviewerResource rsrc, DeleteReviewerInput input) |
| throws RestApiException, UpdateException { |
| if (input == null) { |
| input = new DeleteReviewerInput(); |
| } |
| try (RefUpdateContext ctx = RefUpdateContext.open(CHANGE_MODIFICATION)) { |
| try (BatchUpdate bu = |
| updateFactory.create( |
| rsrc.getChangeResource().getProject(), |
| rsrc.getChangeResource().getUser(), |
| TimeUtil.now())) { |
| bu.setNotify(getNotify(rsrc.getChange(), input)); |
| BatchUpdateOp op; |
| if (rsrc.isByEmail()) { |
| op = deleteReviewerByEmailOpFactory.create(rsrc.getReviewerByEmail()); |
| } else { |
| op = deleteReviewerOpFactory.create(rsrc.getReviewerUser().getAccount(), input); |
| } |
| bu.addOp(rsrc.getChange().getId(), op); |
| bu.execute(); |
| } |
| } |
| return Response.none(); |
| } |
| |
| private static NotifyResolver.Result getNotify(Change change, DeleteReviewerInput input) { |
| NotifyHandling notifyHandling = input.notify; |
| if (notifyHandling == null) { |
| notifyHandling = change.isWorkInProgress() ? NotifyHandling.NONE : NotifyHandling.ALL; |
| } |
| return NotifyResolver.Result.create(notifyHandling); |
| } |
| } |