blob: 72d65f353acd254ecc147f4e3a5d0dd5e5f84544 [file] [log] [blame]
/*
* Copyright (C) 2016 Jorge Ruesga
*
* 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.ruesga.gerrit.plugins.fcm.handlers;
import java.util.List;
import com.google.common.collect.ImmutableList;
import com.google.gerrit.extensions.annotations.PluginName;
import com.google.gerrit.extensions.common.ApprovalInfo;
import com.google.gerrit.extensions.events.VoteDeletedListener;
import com.google.gerrit.server.IdentifiedUser.GenericFactory;
import com.google.gerrit.server.account.CapabilityControl;
import com.google.gerrit.server.account.WatchConfig.NotifyType;
import com.google.gerrit.server.config.AllProjectsName;
import com.google.gerrit.server.query.account.InternalAccountQuery;
import com.google.gerrit.server.query.change.ChangeQueryBuilder;
import com.google.gerrit.server.query.change.ChangeQueryProcessor;
import com.google.gson.annotations.SerializedName;
import com.google.inject.Inject;
import com.google.inject.Provider;
import com.ruesga.gerrit.plugins.fcm.messaging.Notification;
import com.ruesga.gerrit.plugins.fcm.rest.CloudNotificationEvents;
import com.ruesga.gerrit.plugins.fcm.workers.FcmUploaderWorker;
public class VoteDeletedEventHandler extends EventHandler
implements VoteDeletedListener {
private static class VoteDeletedEntryInfo {
@SerializedName("vote") public String vote;
@SerializedName("account") public String account;
}
private static class VoteDeletedInfo {
@SerializedName("votes") public VoteDeletedEntryInfo[] votes;
}
@Inject
public VoteDeletedEventHandler(
@PluginName String pluginName,
FcmUploaderWorker uploader,
AllProjectsName allProjectsName,
ChangeQueryBuilder cqb,
ChangeQueryProcessor cqp,
Provider<InternalAccountQuery> accountQueryProvider,
CapabilityControl.Factory capabilityControlFactory,
GenericFactory identifiedUserFactory) {
super(pluginName,
uploader,
allProjectsName,
cqb, cqp,
accountQueryProvider,
capabilityControlFactory,
identifiedUserFactory);
}
protected int getEventType() {
return CloudNotificationEvents.VOTE_DELETED_EVENT;
}
protected NotifyType getNotifyType() {
return NotifyType.ALL_COMMENTS;
}
@Override
public void onVoteDeleted(Event event) {
VoteDeletedInfo info = toVoteDeletedInfo(event);
final String msg;
if (info.votes.length == 1) {
msg = " removed " + info.votes[0].vote + " by " + info.votes[0].account;
} else {
msg = " removed multiple votes";
}
Notification notification = createNotification(event);
notification.extra = getSerializer().toJson(info);
notification.body = formatAccount(event.getWho()) + msg;
notify(notification, event);
}
private VoteDeletedInfo toVoteDeletedInfo(Event event) {
VoteDeletedInfo info = new VoteDeletedInfo();
List<ApprovalInfo> approvals = ImmutableList.copyOf(event.getOldApprovals().values());
int count = approvals.size();
info.votes = new VoteDeletedEntryInfo[count];
for (int i = 0; i < count; i++) {
ApprovalInfo approval = approvals.get(i);
info.votes[i] = new VoteDeletedEntryInfo();
info.votes[i].vote = toVote(approval);
info.votes[i].account = formatAccount(approval);
}
return info;
}
private String toVote(ApprovalInfo approval) {
if (approval.value == null || approval.value == 0) {
return approval.tag;
} else if (approval.value > 0) {
return approval.tag + "+" + approval.value;
} else {
return approval.tag + approval.value;
}
}
}