aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/notification
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-02-23 10:23:46 +0500
committerAbyss777 <abyss@fox5.ru>2017-02-23 10:23:46 +0500
commitd0ae83ef94f1e4a89b27b70ebbc60150f1c83b31 (patch)
treee1d7e22aece6c0d308fd3a2a9b854bd713950a14 /src/org/traccar/notification
parent53236979ca2298a4722512d49f5ebb07b550a914 (diff)
downloadtrackermap-server-d0ae83ef94f1e4a89b27b70ebbc60150f1c83b31.tar.gz
trackermap-server-d0ae83ef94f1e4a89b27b70ebbc60150f1c83b31.tar.bz2
trackermap-server-d0ae83ef94f1e4a89b27b70ebbc60150f1c83b31.zip
- Combine template retrieving in one function
- Do not request delivery receipt
Diffstat (limited to 'src/org/traccar/notification')
-rw-r--r--src/org/traccar/notification/NotificationFormatter.java37
1 files changed, 17 insertions, 20 deletions
diff --git a/src/org/traccar/notification/NotificationFormatter.java b/src/org/traccar/notification/NotificationFormatter.java
index 1e3072d53..df7d73683 100644
--- a/src/org/traccar/notification/NotificationFormatter.java
+++ b/src/org/traccar/notification/NotificationFormatter.java
@@ -51,39 +51,36 @@ public final class NotificationFormatter {
return velocityContext;
}
- public static MailMessage formatMailMessage(long userId, Event event, Position position) {
- VelocityContext velocityContext = prepareContext(userId, event, position);
- String mailTemplatesPath = Context.getConfig().getString("mail.templatesPath", "mail") + "/";
- Template template = null;
+ private static Template getTemplate(Event event, boolean mail) {
+ Template template;
+ String subPath = "";
+ if (mail) {
+ subPath = Context.getConfig().getString("mail.templatesPath", "mail") + "/";
+ } else {
+ subPath = Context.getConfig().getString("sms.templatesPath", "sms") + "/";
+ }
try {
- template = Context.getVelocityEngine().getTemplate(mailTemplatesPath + event.getType() + ".vm",
+ template = Context.getVelocityEngine().getTemplate(subPath + event.getType() + ".vm",
StandardCharsets.UTF_8.name());
} catch (ResourceNotFoundException error) {
Log.warning(error);
- template = Context.getVelocityEngine().getTemplate(mailTemplatesPath + "unknown.vm",
+ template = Context.getVelocityEngine().getTemplate(subPath + "unknown.vm",
StandardCharsets.UTF_8.name());
}
+ return template;
+ }
+ public static MailMessage formatMailMessage(long userId, Event event, Position position) {
+ VelocityContext velocityContext = prepareContext(userId, event, position);
StringWriter writer = new StringWriter();
- template.merge(velocityContext, writer);
- String subject = (String) velocityContext.get("subject");
- return new MailMessage(subject, writer.toString());
+ getTemplate(event, true).merge(velocityContext, writer);
+ return new MailMessage((String) velocityContext.get("subject"), writer.toString());
}
public static String formatSmsMessage(long userId, Event event, Position position) {
VelocityContext velocityContext = prepareContext(userId, event, position);
- String smsTemplatesPath = Context.getConfig().getString("sms.templatesPath", "sms") + "/";
- Template template = null;
- try {
- template = Context.getVelocityEngine().getTemplate(smsTemplatesPath + event.getType() + ".vm",
- StandardCharsets.UTF_8.name());
- } catch (ResourceNotFoundException error) {
- Log.warning(error);
- template = Context.getVelocityEngine().getTemplate(smsTemplatesPath + "unknown.vm",
- StandardCharsets.UTF_8.name());
- }
StringWriter writer = new StringWriter();
- template.merge(velocityContext, writer);
+ getTemplate(event, false).merge(velocityContext, writer);
return writer.toString();
}
}