blob: b75463da82e01eda95ea91f53812330923b072f1 [file] [log] [blame]
// Copyright (C) 2016 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.change;
import com.google.common.base.Optional;
import com.google.gerrit.extensions.api.changes.AssigneeInput;
import com.google.gerrit.extensions.restapi.AuthException;
import com.google.gerrit.extensions.restapi.BadRequestException;
import com.google.gerrit.extensions.restapi.RestApiException;
import com.google.gerrit.extensions.restapi.UnprocessableEntityException;
import com.google.gerrit.reviewdb.client.Account;
import com.google.gerrit.reviewdb.client.ChangeMessage;
import com.google.gerrit.server.ChangeMessagesUtil;
import com.google.gerrit.server.ChangeUtil;
import com.google.gerrit.server.IdentifiedUser;
import com.google.gerrit.server.account.AccountInfoCacheFactory;
import com.google.gerrit.server.account.AccountsCollection;
import com.google.gerrit.server.config.AnonymousCowardName;
import com.google.gerrit.server.git.BatchUpdate;
import com.google.gerrit.server.notedb.ChangeUpdate;
import com.google.gerrit.server.notedb.NotesMigration;
import com.google.gwtorm.server.OrmException;
import com.google.inject.assistedinject.Assisted;
import com.google.inject.assistedinject.AssistedInject;
public class SetAssigneeOp extends BatchUpdate.Op {
public interface Factory {
SetAssigneeOp create(AssigneeInput input);
}
private final AssigneeInput input;
private final AccountsCollection accounts;
private final ChangeMessagesUtil cmUtil;
private final AccountInfoCacheFactory.Factory accountInfosFactory;
private final NotesMigration notesMigration;
private final String anonymousCowardName;
private Account newAssignee;
@AssistedInject
SetAssigneeOp(AccountsCollection accounts,
NotesMigration notesMigration,
ChangeMessagesUtil cmUtil,
AccountInfoCacheFactory.Factory accountInfosFactory,
@AnonymousCowardName String anonymousCowardName,
@Assisted AssigneeInput input) {
this.accounts = accounts;
this.notesMigration = notesMigration;
this.cmUtil = cmUtil;
this.accountInfosFactory = accountInfosFactory;
this.anonymousCowardName = anonymousCowardName;
this.input = input;
}
@Override
public boolean updateChange(BatchUpdate.ChangeContext ctx)
throws OrmException, RestApiException {
if (!notesMigration.readChanges()) {
throw new BadRequestException(
"Cannot add Assignee; NoteDb is disabled");
}
if (!ctx.getControl().canEditAssignee()) {
throw new AuthException("Changing Assignee not permitted");
}
ChangeUpdate update = ctx.getUpdate(ctx.getChange().currentPatchSetId());
Optional<Account.Id> oldAssigneeId = update.getNotes().getAssignee();
if (input.assignee == null) {
if (oldAssigneeId != null && oldAssigneeId.isPresent()) {
throw new AuthException("Cannot set Assignee to empty");
}
return false;
}
Account oldAssignee = null;
if (oldAssigneeId != null && oldAssigneeId.isPresent()) {
oldAssignee = accountInfosFactory.create().get(oldAssigneeId.get());
}
IdentifiedUser newAssigneeUser = accounts.parse(input.assignee);
if (oldAssigneeId != null &&
oldAssigneeId.equals(newAssigneeUser.getAccountId())) {
newAssignee = oldAssignee;
return false;
}
if (!newAssigneeUser.getAccount().isActive()) {
throw new UnprocessableEntityException(String.format(
"Account of %s is not active", newAssigneeUser.getUserName()));
}
if (!ctx.getControl().forUser(newAssigneeUser).isRefVisible()) {
throw new AuthException(String.format(
"Change %s is not visible to %s.",
ctx.getChange().getChangeId(),
newAssigneeUser.getUserName()));
}
update.setAssignee(newAssigneeUser.getAccountId());
this.newAssignee = newAssigneeUser.getAccount();
addMessage(ctx, update, oldAssignee);
return true;
}
private void addMessage(BatchUpdate.ChangeContext ctx, ChangeUpdate update,
Account previousAssignee) throws OrmException {
StringBuilder msg = new StringBuilder();
msg.append("Assignee ");
if (previousAssignee == null) {
msg.append("added: ");
msg.append(newAssignee.getName(anonymousCowardName));
} else {
msg.append("changed from: ");
msg.append(previousAssignee.getName(anonymousCowardName));
msg.append(" to: ");
msg.append(newAssignee.getName(anonymousCowardName));
}
ChangeMessage cmsg = new ChangeMessage(
new ChangeMessage.Key(
ctx.getChange().getId(),
ChangeUtil.messageUUID(ctx.getDb())),
ctx.getAccountId(), ctx.getWhen(),
ctx.getChange().currentPatchSetId());
cmsg.setMessage(msg.toString());
cmUtil.addChangeMessage(ctx.getDb(), update, cmsg);
}
public Account getNewAssignee() {
return newAssignee;
}
}