/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.isis.core.runtime.services.userreg; import java.io.IOException; import java.net.URL; import java.util.Collections; import java.util.List; import java.util.regex.Pattern; import javax.annotation.PostConstruct; import com.google.common.base.Charsets; import com.google.common.io.Resources; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.apache.isis.applib.annotation.DomainService; import org.apache.isis.applib.annotation.NatureOfService; import org.apache.isis.applib.annotation.Programmatic; import org.apache.isis.applib.services.email.EmailService; import org.apache.isis.applib.services.userreg.EmailNotificationService; import org.apache.isis.applib.services.userreg.events.EmailEventAbstract; import org.apache.isis.applib.services.userreg.events.EmailRegistrationEvent; import org.apache.isis.applib.services.userreg.events.PasswordResetEvent; import static java.util.regex.Pattern.compile; import static java.util.regex.Pattern.quote; /** * A service that sends email notifications when specific events occur */ @com.google.inject.Singleton // necessary because is registered in and injected by google guice @DomainService( nature = NatureOfService.DOMAIN, menuOrder = "" + Integer.MAX_VALUE ) public class EmailNotificationServiceDefault implements EmailNotificationService { private static final Logger LOG = LoggerFactory.getLogger(EmailNotificationServiceDefault.class); //region > constants private static final Pattern EMAIL_PATTERN = compile(quote("${email}")); private static final Pattern CONFIRMATION_URL_PATTERN = compile(quote("${confirmationUrl}")); private static final Pattern APPLICATION_NAME_PATTERN = compile(quote("${applicationName}")); private String passwordResetTemplate; private String emailVerificationTemplate; //endregion //region > init private boolean initialized; /** * Loads responsive email templates borrowed from http://zurb.com/ink/templates.php (Basic) */ @PostConstruct @Programmatic public void init() { if(initialized) { return; } emailVerificationTemplate = loadResource("EmailVerificationTemplate.html"); passwordResetTemplate = loadResource("PasswordResetTemplate.html"); initialized = true; } protected String loadResource(final String resourceName) { final URL templateUrl = Resources.getResource(EmailNotificationServiceDefault.class, resourceName); try { return Resources.toString(templateUrl, Charsets.UTF_8); } catch (IOException e) { throw new IllegalStateException(String.format("Unable to read resource URL '%s'", templateUrl)); } } //endregion //region > isConfigured @Programmatic @Override public boolean isConfigured() { return emailService != null && emailService.isConfigured(); } //endregion //region > send @Programmatic @Override public boolean send(final EmailRegistrationEvent emailRegistrationEvent) { ensureConfigured(); final String body = replace(emailVerificationTemplate, emailRegistrationEvent); return sendEmail(emailRegistrationEvent, body); } @Programmatic @Override public boolean send(final PasswordResetEvent passwordResetEvent) { ensureConfigured(); final String body = replace(passwordResetTemplate, passwordResetEvent); return sendEmail(passwordResetEvent, body); } //endregion //region > helper methods for send(...) private void ensureConfigured() { if(!isConfigured()) { throw new IllegalStateException("Not configured"); } } protected boolean sendEmail(final EmailEventAbstract emailEvent, final String body) { final String subject = buildSubject(emailEvent); final String to = emailEvent.getEmail(); return sendEmail(to, subject, body); } protected String buildSubject(final EmailEventAbstract emailEvent) { String subject = "["+emailEvent.getApplicationName()+"]"; if (emailEvent instanceof EmailRegistrationEvent) { subject += " Please confirm your identity"; } else if (emailEvent instanceof PasswordResetEvent) { subject += " Password reset request"; } return subject; } protected boolean sendEmail(final String to, final String subject, final String body) { final List<String> toList = Collections.singletonList(to); final List<String> cc = Collections.emptyList(); final List<String> bcc = Collections.emptyList(); return emailService.send(toList, cc, bcc, subject, body); } protected String replace(final String template, final EmailEventAbstract emailEvent) { String message = template; message = EMAIL_PATTERN.matcher(message).replaceFirst(emailEvent.getEmail()); message = CONFIRMATION_URL_PATTERN.matcher(message).replaceAll(emailEvent.getConfirmationUrl()); message = APPLICATION_NAME_PATTERN.matcher(message).replaceAll(emailEvent.getApplicationName()); return message; } //endregion //region > dependencies @javax.inject.Inject private EmailService emailService; //endregion }