diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-19 15:11:35 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-19 15:11:35 +1200 |
commit | 815c3de43ee8943fddb916f27317c37a7a806d65 (patch) | |
tree | a38e4f6bf80c35ccc83ae9d4c4d3d88e0d837b00 /src/org/traccar/protocol/CityeasyProtocolDecoder.java | |
parent | 4054777eac379ce07560c44901ada659aad062ba (diff) | |
download | trackermap-server-815c3de43ee8943fddb916f27317c37a7a806d65.tar.gz trackermap-server-815c3de43ee8943fddb916f27317c37a7a806d65.tar.bz2 trackermap-server-815c3de43ee8943fddb916f27317c37a7a806d65.zip |
Move device id to a session
Diffstat (limited to 'src/org/traccar/protocol/CityeasyProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/CityeasyProtocolDecoder.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/org/traccar/protocol/CityeasyProtocolDecoder.java b/src/org/traccar/protocol/CityeasyProtocolDecoder.java index 77d7570dc..5cdbe525d 100644 --- a/src/org/traccar/protocol/CityeasyProtocolDecoder.java +++ b/src/org/traccar/protocol/CityeasyProtocolDecoder.java @@ -19,6 +19,7 @@ import org.jboss.netty.buffer.ChannelBuffer; import org.jboss.netty.buffer.ChannelBuffers; import org.jboss.netty.channel.Channel; import org.traccar.BaseProtocolDecoder; +import org.traccar.DeviceSession; import org.traccar.helper.Checksum; import org.traccar.helper.DateBuilder; import org.traccar.helper.Parser; @@ -73,8 +74,9 @@ public class CityeasyProtocolDecoder extends BaseProtocolDecoder { buf.readUnsignedShort(); // length String imei = ChannelBuffers.hexDump(buf.readBytes(7)); - if (!identify(imei, channel, remoteAddress, false) - && !identify(imei + Checksum.luhn(Long.parseLong(imei)), channel, remoteAddress)) { + DeviceSession deviceSession = getDeviceSession( + channel, remoteAddress, imei, imei + Checksum.luhn(Long.parseLong(imei))); + if (deviceSession == null) { return null; } @@ -90,7 +92,7 @@ public class CityeasyProtocolDecoder extends BaseProtocolDecoder { Position position = new Position(); position.setProtocol(getProtocolName()); - position.setDeviceId(getDeviceId()); + position.setDeviceId(deviceSession.getDeviceId()); if (parser.hasNext(15)) { |