blob: 992fd5de700d0b6b0cd1cfb0bd21a8f8fbe7b0ef [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.HashtagsEditedListener;
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 HashtagsEditedEventHandler extends EventHandler
implements HashtagsEditedListener {
private static class HashtagsInfo {
@SerializedName("removed") public String[] removed;
@SerializedName("added") public String[] added;
}
@Inject
public HashtagsEditedEventHandler(
@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.HASHTAG_CHANGED_EVENT;
}
protected NotifyType getNotifyType() {
return NotifyType.NEW_PATCHSETS;
}
@Override
public void onHashtagsEdited(Event event) {
HashtagsInfo hashtags = new HashtagsInfo();
if (event.getRemovedHashtags() != null) {
hashtags.removed = event.getRemovedHashtags().toArray(
new String[event.getRemovedHashtags().size()]);
}
if (event.getAddedHashtags() != null) {
hashtags.added = event.getAddedHashtags().toArray(
new String[event.getAddedHashtags().size()]);
}
Notification notification = createNotification(event);
notification.extra = getSerializer().toJson(hashtags);
notification.body = formatAccount(event.getWho())
+ " changed change's hashtags";
notify(notification, event);
}
}