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

de.frachtwerk.essencium.backend.service.UserMailService Maven / Gradle / Ivy

Go to download

Essencium Backend is a software library built on top of Spring Boot that allows developers to quickly get started on new software projects. Essencium provides, for example, a fully implemented role-rights concept as well as various field-tested solutions for access management and authentication.

The newest version!
/*
 * Copyright (C) 2024 Frachtwerk GmbH, Leopoldstraße 7C, 76133 Karlsruhe.
 *
 * This file is part of essencium-backend.
 *
 * essencium-backend 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.
 *
 * essencium-backend 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 essencium-backend. If not, see .
 */

package de.frachtwerk.essencium.backend.service;

import de.frachtwerk.essencium.backend.configuration.properties.MailConfigProperties;
import de.frachtwerk.essencium.backend.model.Mail;
import de.frachtwerk.essencium.backend.model.exception.checked.CheckedMailException;
import de.frachtwerk.essencium.backend.model.mail.LoginMessageData;
import de.frachtwerk.essencium.backend.model.mail.ResetTokenMessageData;
import de.frachtwerk.essencium.backend.model.representation.TokenRepresentation;
import de.frachtwerk.essencium.backend.service.translation.TranslationService;
import freemarker.template.TemplateException;
import io.sentry.Sentry;
import jakarta.validation.constraints.NotNull;
import java.io.IOException;
import java.text.MessageFormat;
import java.util.Locale;
import java.util.Set;
import lombok.RequiredArgsConstructor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.mail.MailException;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;

@Service
@RequiredArgsConstructor
public class UserMailService {

  private final Logger LOG = LoggerFactory.getLogger(UserMailService.class);

  @NotNull private final SimpleMailService mailService;

  @NotNull private final MailConfigProperties.NewUserMail newUserMailConfig;

  @NotNull private final MailConfigProperties.ResetTokenMail resetTokenMailConfig;

  @NotNull private final MailConfigProperties.Branding mailBranding;
  @NotNull private final MailConfigProperties.NewLoginMail newLoginMailConfig;

  @NotNull private final TranslationService translationService;

  @Async
  public void sendNewUserMail(
      @NotNull final String userMailAddress,
      @NotNull final String resetToken,
      @NotNull final Locale locale)
      throws CheckedMailException {
    final String resetLink = mailBranding.getUrl() + newUserMailConfig.getResetLink();
    final String subject =
        MessageFormat.format(
            translationService
                .translate(newUserMailConfig.getSubjectKey(), locale)
                .orElse("Welcome New User"),
            mailBranding.getName());
    try {
      String message =
          mailService.getMessageFromTemplate(
              newUserMailConfig.getTemplate(),
              locale,
              new ResetTokenMessageData(
                  mailBranding, userMailAddress, resetLink, resetToken, subject));

      var newMail = new Mail(null, Set.of(userMailAddress), subject, message);
      LOG.debug("Sending welcome mail.");
      mailService.sendMail(newMail);
    } catch (MailException | TemplateException | IOException e) {
      throw new CheckedMailException(e);
    }
  }

  @Async
  public void sendResetToken(
      @NotNull final String userMailAddress,
      @NotNull final String resetToken,
      @NotNull final Locale locale)
      throws CheckedMailException {
    final String resetLink = mailBranding.getUrl() + resetTokenMailConfig.getResetLink();
    final String subject =
        translationService
            .translate(resetTokenMailConfig.getSubjectKey(), locale)
            .orElse("Reset Password");

    try {
      String message =
          mailService.getMessageFromTemplate(
              resetTokenMailConfig.getTemplate(),
              locale,
              new ResetTokenMessageData(
                  mailBranding, userMailAddress, resetLink, resetToken, subject));

      var newMail = new Mail(null, Set.of(userMailAddress), subject, message);
      LOG.debug("Sending reset token mail.");
      mailService.sendMail(newMail);
    } catch (TemplateException | IOException | MailException e) {
      throw new CheckedMailException(e);
    }
  }

  @Async
  public void sendLoginMail(String email, TokenRepresentation tokenRepresentation, Locale locale) {
    final String subject =
        translationService
            .translate(newLoginMailConfig.getSubjectKey(), locale)
            .orElse("New Login");
    try {
      String message =
          mailService.getMessageFromTemplate(
              newLoginMailConfig.getTemplate(),
              locale,
              new LoginMessageData(mailBranding, email, subject, tokenRepresentation));

      var newMail = new Mail(null, Set.of(email), subject, message);
      LOG.debug("Sending login mail.");
      mailService.sendMail(newMail);
    } catch (MailException | TemplateException | IOException e) {
      Sentry.captureException(e);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy