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

com.amazon.opendistroforelasticsearch.alerting.destination.client.DestinationEmailClient Maven / Gradle / Ivy

There is a newer version: 1.13.1.0
Show newest version
/*
 *   Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 *   Licensed under the Apache License, Version 2.0 (the "License").
 *   You may not use this file except in compliance with the License.
 *   A copy of the License is located at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *   or in the "license" file accompanying this file. This file 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.amazon.opendistroforelasticsearch.alerting.destination.client;

import com.amazon.opendistroforelasticsearch.alerting.destination.message.BaseMessage;
import com.amazon.opendistroforelasticsearch.alerting.destination.message.EmailMessage;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;

/**
 * This class handles the connections to the given Destination.
 */
public class DestinationEmailClient {

    private static final Logger logger = LogManager.getLogger(DestinationEmailClient.class);
    
    public String execute(BaseMessage message) throws Exception {
        if (message instanceof EmailMessage) {
            EmailMessage emailMessage = (EmailMessage) message;
            Session session = null;

            Properties prop = new Properties();
            prop.put("mail.transport.protocol", "smtp");
            prop.put("mail.smtp.host", emailMessage.getHost());
            prop.put("mail.smtp.port", emailMessage.getPort());

            if (emailMessage.getUsername() != null && !emailMessage.getUsername().equals("".toCharArray())) {
                prop.put("mail.smtp.auth", true);
                try {
                    session = Session.getInstance(prop, new Authenticator() {
	                    protected PasswordAuthentication getPasswordAuthentication() {
	                        return new PasswordAuthentication(
	                                emailMessage.getUsername().toString(),
                                    emailMessage.getPassword().toString());
                        }
		            });
                } catch (IllegalStateException e) {
                    return e.getMessage();
                }
            } else {
                session = Session.getInstance(prop);
            }

            switch(emailMessage.getMethod()) {
            case "ssl":
                prop.put("mail.smtp.ssl.enable", true);
                break;
            case "starttls":
                prop.put("mail.smtp.starttls.enable", true);
                break;
            }

            try {
                Message mailmsg = new MimeMessage(session);
                mailmsg.setFrom(new InternetAddress(emailMessage.getFrom()));
                mailmsg.setRecipients(Message.RecipientType.TO, getRecipientsAsAddresses(emailMessage.getRecipients()));
                mailmsg.setSubject(emailMessage.getSubject());
                mailmsg.setText(emailMessage.getMessageContent());

                SendMessage(mailmsg);
            } catch (MessagingException e) {
                return e.getMessage();
            }
        }
        return "Sent";
    }

    /*
     * This method is useful for mocking the client
     */
    public void SendMessage(Message msg) throws Exception {
        Transport.send(msg);
    }

    private InternetAddress[] getRecipientsAsAddresses(List recipients) throws Exception {
        ArrayList addresses = new ArrayList<>();
        for (String recipient : recipients) {
            addresses.add(new InternetAddress(recipient));
        }

        return addresses.toArray(new InternetAddress[0]);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy