From bd2a8efaddacbd8d8386ae38f000b633845639ab Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Tue, 21 Feb 2017 15:20:25 +0500 Subject: Implement SMS notifications with help smpp protocol --- src/org/traccar/Context.java | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'src/org/traccar/Context.java') diff --git a/src/org/traccar/Context.java b/src/org/traccar/Context.java index c9c2e633e..6c271c3ed 100644 --- a/src/org/traccar/Context.java +++ b/src/org/traccar/Context.java @@ -1,5 +1,5 @@ /* - * Copyright 2015 - 2016 Anton Tananaev (anton@traccar.org) + * Copyright 2015 - 2017 Anton Tananaev (anton@traccar.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -49,6 +49,7 @@ import org.traccar.geolocation.GeolocationProvider; import org.traccar.geolocation.MozillaGeolocationProvider; import org.traccar.geolocation.OpenCellIdGeolocationProvider; import org.traccar.notification.EventForwarder; +import org.traccar.smpp.SmppClient; import org.traccar.web.WebServer; public final class Context { @@ -176,6 +177,12 @@ public final class Context { return statisticsManager; } + private static SmppClient smppClient; + + public static SmppClient getSmppManager() { + return smppClient; + } + public static void init(String[] arguments) throws Exception { config = new Config(); @@ -277,7 +284,7 @@ public final class Context { notificationManager = new NotificationManager(dataManager); Properties velocityProperties = new Properties(); velocityProperties.setProperty("file.resource.loader.path", - Context.getConfig().getString("mail.templatesPath", "templates/mail") + "/"); + Context.getConfig().getString("templates.rootPath", "templates") + "/"); velocityProperties.setProperty("runtime.log.logsystem.class", "org.apache.velocity.runtime.log.NullLogChute"); @@ -301,6 +308,10 @@ public final class Context { statisticsManager = new StatisticsManager(); + if (config.getBoolean("sms.smpp.enable")) { + smppClient = new SmppClient(); + } + } public static void init(IdentityManager testIdentityManager) { -- cgit v1.2.3