org.sonar.plugins.core.notifications.violations.NewViolationsOnFirstDifferentialPeriod.java Source code

Java tutorial

Introduction

Here is the source code for org.sonar.plugins.core.notifications.violations.NewViolationsOnFirstDifferentialPeriod.java

Source

/*
 * Sonar, open source software quality management tool.
 * Copyright (C) 2008-2012 SonarSource
 * mailto:contact AT sonarsource DOT com
 *
 * Sonar is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * Sonar is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Sonar; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */
package org.sonar.plugins.core.notifications.violations;

import com.google.common.collect.Multimap;
import org.sonar.api.notifications.Notification;
import org.sonar.api.notifications.NotificationChannel;
import org.sonar.api.notifications.NotificationDispatcher;
import org.sonar.api.notifications.NotificationManager;

import java.util.Collection;
import java.util.Map;

/**
 * This dispatcher means: "notify me when new violations are introduced during the first differential period".
 * 
 * @since 2.14
 */
public class NewViolationsOnFirstDifferentialPeriod extends NotificationDispatcher {

    private NotificationManager notificationManager;

    public NewViolationsOnFirstDifferentialPeriod(NotificationManager notificationManager) {
        super("new-violations");
        this.notificationManager = notificationManager;
    }

    @Override
    public void dispatch(Notification notification, Context context) {
        int projectId = Integer.parseInt(notification.getFieldValue("projectId"));
        Multimap<String, NotificationChannel> subscribedRecipients = notificationManager
                .findSubscribedRecipientsForDispatcher(this, projectId);

        for (Map.Entry<String, Collection<NotificationChannel>> channelsByRecipients : subscribedRecipients.asMap()
                .entrySet()) {
            String userLogin = channelsByRecipients.getKey();
            for (NotificationChannel channel : channelsByRecipients.getValue()) {
                context.addUser(userLogin, channel);
            }
        }
    }

}