fix notifications
This commit is contained in:
parent
eab71c1210
commit
ffb3c65118
@ -13,6 +13,16 @@ import java.util.Map;
|
|||||||
@Service
|
@Service
|
||||||
public class PaperNotificationService {
|
public class PaperNotificationService {
|
||||||
private final static int DAYS_TO_DEADLINE_NOTIFICATION = 7;
|
private final static int DAYS_TO_DEADLINE_NOTIFICATION = 7;
|
||||||
|
private final static String TEMPLATE_DEADLINE = "paperDeadlineNotification";
|
||||||
|
private final static String TEMPLATE_CREATE = "paperCreateNotification";
|
||||||
|
private final static String TEMPLATE_STATUS_CHANGED = "paperStatusChangeNotification";
|
||||||
|
private final static String TEMPLATE_FAILED = "paperFailedNotification";
|
||||||
|
|
||||||
|
private final static String TITLE_DEADLINE = "Приближается дедлайн статьи";
|
||||||
|
private final static String TITLE_CREATE = "Создана статья";
|
||||||
|
private final static String TITLE_STATUS_CHANGED = "Изменился статус статьи";
|
||||||
|
private final static String TITLE_FAILED = "Статья провалена";
|
||||||
|
|
||||||
|
|
||||||
private final MailService mailService;
|
private final MailService mailService;
|
||||||
|
|
||||||
@ -36,30 +46,26 @@ public class PaperNotificationService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void sendMessageDeadline(Paper paper) {
|
private void sendMessageDeadline(Paper paper) {
|
||||||
paper.getAuthors().forEach(user -> {
|
Map<String, Object> variables = ImmutableMap.of("paper", paper);
|
||||||
mailService.sendEmail(user.getEmail(), "Приближается дедлайн статьи",
|
sendForAllAuhtors(variables, paper, TEMPLATE_DEADLINE, TITLE_DEADLINE);
|
||||||
"Срок сдачи статьи " + paper.getTitle() + " " + paper.getNextDeadline().get().getDate().toString());
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendCreateNotification(Paper paper) {
|
public void sendCreateNotification(Paper paper) {
|
||||||
Map<String, Object> variables = ImmutableMap.of("paper", paper);
|
Map<String, Object> variables = ImmutableMap.of("paper", paper);
|
||||||
paper.getAuthors().forEach(author -> {
|
sendForAllAuhtors(variables, paper, TEMPLATE_CREATE, TITLE_CREATE);
|
||||||
mailService.sendEmailFromTemplate(variables, author, "paperCreateNotification", "Создана статья");
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void statusChangeNotification(Paper paper, Paper.PaperStatus oldStatus) {
|
public void statusChangeNotification(Paper paper, Paper.PaperStatus oldStatus) {
|
||||||
Map<String, Object> variables = ImmutableMap.of("paper", paper, "oldStatus", oldStatus);
|
Map<String, Object> variables = ImmutableMap.of("paper", paper, "oldStatus", oldStatus);
|
||||||
paper.getAuthors().forEach(author -> {
|
sendForAllAuhtors(variables, paper, TEMPLATE_STATUS_CHANGED, TITLE_STATUS_CHANGED);
|
||||||
mailService.sendEmailFromTemplate(variables, author, "paperStatusChangeNotification", "Изменился статус статьи");
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendFailedNotification(Paper paper, Paper.PaperStatus oldStatus) {
|
public void sendFailedNotification(Paper paper, Paper.PaperStatus oldStatus) {
|
||||||
Map<String, Object> variables = ImmutableMap.of("paper", paper, "oldStatus", oldStatus);
|
Map<String, Object> variables = ImmutableMap.of("paper", paper, "oldStatus", oldStatus);
|
||||||
paper.getAuthors().forEach(author -> {
|
sendForAllAuhtors(variables, paper, TEMPLATE_FAILED, TITLE_FAILED);
|
||||||
mailService.sendEmailFromTemplate(variables, author, "paperFailedNotification", "Статья провалена");
|
}
|
||||||
});
|
|
||||||
|
private void sendForAllAuhtors(Map<String, Object> variables, Paper paper, String template, String title) {
|
||||||
|
paper.getAuthors().forEach(author -> mailService.sendEmailFromTemplate(variables, author, template, title));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,8 +5,6 @@ import org.slf4j.LoggerFactory;
|
|||||||
import org.springframework.scheduling.annotation.Scheduled;
|
import org.springframework.scheduling.annotation.Scheduled;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import java.util.TimeZone;
|
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class PaperScheduler {
|
public class PaperScheduler {
|
||||||
private final static boolean IS_DEADLINE_NOTIFICATION_BEFORE_WEEK = true;
|
private final static boolean IS_DEADLINE_NOTIFICATION_BEFORE_WEEK = true;
|
||||||
@ -23,7 +21,7 @@ public class PaperScheduler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Scheduled(cron = "0 0 8 * 1 ?", zone = "Europe/Samara")
|
@Scheduled(cron = "0 0 8 * * MON", zone = "Europe/Samara")
|
||||||
public void checkDeadlineBeforeWeek() {
|
public void checkDeadlineBeforeWeek() {
|
||||||
log.debug("PaperScheduler.checkDeadlineBeforeWeek started");
|
log.debug("PaperScheduler.checkDeadlineBeforeWeek started");
|
||||||
paperNotificationService.sendDeadlineNotifications(paperService.findAll(), IS_DEADLINE_NOTIFICATION_BEFORE_WEEK);
|
paperNotificationService.sendDeadlineNotifications(paperService.findAll(), IS_DEADLINE_NOTIFICATION_BEFORE_WEEK);
|
||||||
|
@ -10,10 +10,14 @@
|
|||||||
Уважаемый(ая) <span th:text="${user.firstName + ' ' + user.lastName}">Ivan Ivanov</span>
|
Уважаемый(ая) <span th:text="${user.firstName + ' ' + user.lastName}">Ivan Ivanov</span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Приближается срок сдачи статьи "<span th:text="${paper.title}">Title</span>".
|
Приближается дедлайн статьи <b>"<span th:text="${paper.title}">Title</span>"</b>.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Срок исполнения: <span th:text="${#dates.format(paper.nextDeadline.get().date, 'dd.MM.yyyy HH:mm')}"></span>.
|
Срок исполнения: <b><span th:text="${#dates.format(paper.nextDeadline.get().date, 'dd.MM.yyyy')}"></span></b>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Примечание: <b><span th:text="${paper.nextDeadline.get().description}"></span></b>.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Regards,
|
Regards,
|
||||||
|
Loading…
Reference in New Issue
Block a user