All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog2.alerts.EmailRecipients Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
/**
 * This file is part of Graylog.
 *
 * Graylog is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Graylog 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Graylog.  If not, see .
 */
package org.graylog2.alerts;

import com.google.common.base.Splitter;
import com.google.common.collect.ImmutableSet;
import com.google.inject.Inject;
import com.google.inject.assistedinject.Assisted;
import org.graylog2.plugin.database.users.User;
import org.graylog2.shared.users.UserService;

import java.util.List;
import java.util.Set;

import static com.google.common.base.Strings.isNullOrEmpty;

public class EmailRecipients {
    private final UserService userService;

    private final List usernames;
    private final List emails;

    private Set resolvedEmails;

    public interface Factory {
        EmailRecipients create(
                @Assisted("usernames") List usernames,
                @Assisted("emails") List emails);
    }

    @Inject
    public EmailRecipients(UserService userService,
                           @Assisted("usernames") List usernames,
                           @Assisted("emails") List emails) {
        this.userService = userService;
        this.usernames = usernames;
        this.emails = emails;
    }

    public Set getEmailRecipients() {
        if (resolvedEmails != null) {
            return resolvedEmails;
        }

        final ImmutableSet.Builder emails = ImmutableSet.builder();
        emails.addAll(this.emails);

        for (String username : usernames) {
            final User user = userService.load(username);

            if (user != null && !isNullOrEmpty(user.getEmail())) {
                // LDAP users might have multiple email addresses defined.
                // See: https://github.com/Graylog2/graylog2-server/issues/1439
                final Iterable addresses = Splitter.on(",").omitEmptyStrings().trimResults().split(user.getEmail());
                emails.addAll(addresses);
            }
        }

        resolvedEmails = emails.build();

        return resolvedEmails;
    }

    public boolean isEmpty() {
        return usernames.isEmpty() && emails.isEmpty();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy