aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/OwnTracksProtocol.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-06-14 20:47:21 +1200
committerGitHub <noreply@github.com>2017-06-14 20:47:21 +1200
commite4262bd41306970130b30b529bd0913e911efda1 (patch)
tree33c3ba94df5123c3a033f12ce6b4981009623a56 /src/org/traccar/protocol/OwnTracksProtocol.java
parentb84d627b57181907c73d2c4ebb46ed011be8cfab (diff)
parent21a4dbd3150d49d15f48dfcdc38ad2d9e2f37a85 (diff)
downloadtrackermap-server-e4262bd41306970130b30b529bd0913e911efda1.tar.gz
trackermap-server-e4262bd41306970130b30b529bd0913e911efda1.tar.bz2
trackermap-server-e4262bd41306970130b30b529bd0913e911efda1.zip
Merge pull request #3242 from jpmens/owntracks
New protocol decoder for OwnTracks
Diffstat (limited to 'src/org/traccar/protocol/OwnTracksProtocol.java')
-rw-r--r--src/org/traccar/protocol/OwnTracksProtocol.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/OwnTracksProtocol.java b/src/org/traccar/protocol/OwnTracksProtocol.java
new file mode 100644
index 000000000..c4a6ab163
--- /dev/null
+++ b/src/org/traccar/protocol/OwnTracksProtocol.java
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2017 Jan-Piet Mens (jpmens@gmail.com)
+ * Copyright 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.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.traccar.protocol;
+
+import org.jboss.netty.bootstrap.ServerBootstrap;
+import org.jboss.netty.channel.ChannelPipeline;
+import org.jboss.netty.handler.codec.http.HttpRequestDecoder;
+import org.jboss.netty.handler.codec.http.HttpResponseEncoder;
+import org.traccar.BaseProtocol;
+import org.traccar.TrackerServer;
+
+import java.util.List;
+
+public class OwnTracksProtocol extends BaseProtocol {
+
+ public OwnTracksProtocol() {
+ super("owntracks");
+ }
+
+ @Override
+ public void initTrackerServers(List<TrackerServer> serverList) {
+ serverList.add(new TrackerServer(new ServerBootstrap(), getName()) {
+ @Override
+ protected void addSpecificHandlers(ChannelPipeline pipeline) {
+ pipeline.addLast("httpEncoder", new HttpResponseEncoder());
+ pipeline.addLast("httpDecoder", new HttpRequestDecoder());
+ pipeline.addLast("objectDecoder", new OwnTracksProtocolDecoder(OwnTracksProtocol.this));
+ }
+ });
+ }
+
+}