blob: e255b6b905350611e829fe38d0d2df2a5e41f42b [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 com.google.gerrit.extensions.annotations.PluginName;
import com.google.gerrit.extensions.events.TopicEditedListener;
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 TopicEditedEventHandler extends EventHandler
implements TopicEditedListener {
private static class TopicInfo {
@SerializedName("old") public String old;
}
@Inject
public TopicEditedEventHandler(
@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.TOPIC_CHANGED_EVENT;
}
protected NotifyType getNotifyType() {
return NotifyType.NEW_PATCHSETS;
}
@Override
public void onTopicEdited(Event event) {
TopicInfo topic = new TopicInfo();
topic.old = event.getOldTopic();
Notification notification = createNotification(event);
notification.extra = getSerializer().toJson(topic);
notification.body = formatAccount(event.getWho())
+ " changed change's topic";
notify(notification, event);
}
}