aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-10-23 09:50:35 +0500
committerAbyss777 <abyss@fox5.ru>2017-10-23 09:50:35 +0500
commit0283458de495e8f9f5393b1184c7a670e9851dcc (patch)
tree004593691cb92e1f0bb76f74a90b733f6bee6408
parented72ff6e7f964bc56a4948c15c97f37c072bf326 (diff)
downloadtraccar-server-0283458de495e8f9f5393b1184c7a670e9851dcc.tar.gz
traccar-server-0283458de495e8f9f5393b1184c7a670e9851dcc.tar.bz2
traccar-server-0283458de495e8f9f5393b1184c7a670e9851dcc.zip
Implement command cloning
-rw-r--r--src/org/traccar/api/resource/CommandResource.java3
-rw-r--r--src/org/traccar/database/CommandsManager.java13
-rw-r--r--src/org/traccar/model/Command.java7
3 files changed, 12 insertions, 11 deletions
diff --git a/src/org/traccar/api/resource/CommandResource.java b/src/org/traccar/api/resource/CommandResource.java
index a25421e31..703638701 100644
--- a/src/org/traccar/api/resource/CommandResource.java
+++ b/src/org/traccar/api/resource/CommandResource.java
@@ -69,8 +69,7 @@ public class CommandResource extends ExtendedObjectResource<Command> {
} else {
Context.getPermissionsManager().checkLimitCommands(getUserId());
}
- boolean sent = Context.getCommandsManager().sendCommand(entity);
- if (!sent) {
+ if (!Context.getCommandsManager().sendCommand(entity)) {
return Response.accepted(entity).build();
}
return Response.ok(entity).build();
diff --git a/src/org/traccar/database/CommandsManager.java b/src/org/traccar/database/CommandsManager.java
index 07695cbf7..9ceb995ef 100644
--- a/src/org/traccar/database/CommandsManager.java
+++ b/src/org/traccar/database/CommandsManager.java
@@ -48,13 +48,9 @@ public class CommandsManager extends ExtendedObjectManager<Command> {
public boolean sendCommand(Command command) throws Exception {
long deviceId = command.getDeviceId();
if (command.getId() != 0) {
- Command savedCommand = getById(command.getId());
- command.setTextChannel(savedCommand.getTextChannel());
- command.setType(savedCommand.getType());
- command.setAttributes(savedCommand.getAttributes());
- command.setDescription(savedCommand.getDescription());
+ command = getById(command.getId()).clone();
+ command.setDeviceId(deviceId);
}
- boolean sent = true;
if (command.getTextChannel()) {
Position lastPosition = Context.getIdentityManager().getLastPosition(deviceId);
String phone = Context.getIdentityManager().getById(deviceId).getPhone();
@@ -75,10 +71,11 @@ public class CommandsManager extends ExtendedObjectManager<Command> {
if (activeDevice != null) {
activeDevice.sendCommand(command);
} else {
- sent = !getDeviceQueue(deviceId).add(command);
+ getDeviceQueue(deviceId).add(command);
+ return false;
}
}
- return sent;
+ return true;
}
public Collection<Long> getSupportedCommands(long deviceId) {
diff --git a/src/org/traccar/model/Command.java b/src/org/traccar/model/Command.java
index 67134dc7d..09f0f251b 100644
--- a/src/org/traccar/model/Command.java
+++ b/src/org/traccar/model/Command.java
@@ -20,7 +20,7 @@ import org.traccar.database.QueryIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
-public class Command extends Message {
+public class Command extends Message implements Cloneable {
public static final String TYPE_CUSTOM = "custom";
public static final String TYPE_IDENTIFICATION = "deviceIdentification";
@@ -77,6 +77,11 @@ public class Command extends Message {
public static final String KEY_SERVER = "server";
public static final String KEY_PORT = "port";
+ @Override
+ public Command clone() throws CloneNotSupportedException {
+ return (Command) super.clone();
+ }
+
private boolean textChannel;
public boolean getTextChannel() {