diff options
author | Abyss777 <abyss@fox5.ru> | 2017-07-13 10:05:57 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-07-13 10:05:57 +0500 |
commit | e776aa3351535f78c60ab9502dd1154e2b973227 (patch) | |
tree | b19a69b83975aceca5ffa854da5181e62221fc0e /src/org/traccar/notification | |
parent | 74471c1fbbb7e8a09a6958fa88930a2905b4a3eb (diff) | |
download | trackermap-server-e776aa3351535f78c60ab9502dd1154e2b973227.tar.gz trackermap-server-e776aa3351535f78c60ab9502dd1154e2b973227.tar.bz2 trackermap-server-e776aa3351535f78c60ab9502dd1154e2b973227.zip |
- Save both driver name and driver unique id in trip report
- Map user and driver objects to notification templates
- Add driverUnauthorized templates
Diffstat (limited to 'src/org/traccar/notification')
-rw-r--r-- | src/org/traccar/notification/NotificationFormatter.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/org/traccar/notification/NotificationFormatter.java b/src/org/traccar/notification/NotificationFormatter.java index 96337ecaa..a30023fdc 100644 --- a/src/org/traccar/notification/NotificationFormatter.java +++ b/src/org/traccar/notification/NotificationFormatter.java @@ -30,6 +30,7 @@ import org.traccar.helper.Log; import org.traccar.model.Device; import org.traccar.model.Event; import org.traccar.model.Position; +import org.traccar.model.User; import org.traccar.reports.ReportUtils; public final class NotificationFormatter { @@ -38,9 +39,11 @@ public final class NotificationFormatter { } public static VelocityContext prepareContext(long userId, Event event, Position position) { + User user = Context.getPermissionsManager().getUser(userId); Device device = Context.getIdentityManager().getDeviceById(event.getDeviceId()); VelocityContext velocityContext = new VelocityContext(); + velocityContext.put("user", user); velocityContext.put("device", device); velocityContext.put("event", event); if (position != null) { @@ -50,6 +53,10 @@ public final class NotificationFormatter { if (event.getGeofenceId() != 0) { velocityContext.put("geofence", Context.getGeofenceManager().getGeofence(event.getGeofenceId())); } + String driverUniqueId = event.getString(Position.KEY_DRIVER_UNIQUE_ID); + if (driverUniqueId != null) { + velocityContext.put("driver", Context.getDriversManager().getDriverByUniqueId(driverUniqueId)); + } velocityContext.put("webUrl", Context.getVelocityEngine().getProperty("web.url")); velocityContext.put("dateTool", new DateTool()); velocityContext.put("numberTool", new NumberTool()); |