| 1 | // License: GPL. For details, see LICENSE file.
|
|---|
| 2 | package org.openstreetmap.josm.io.remotecontrol.handler;
|
|---|
| 3 |
|
|---|
| 4 | import static org.openstreetmap.josm.tools.I18n.tr;
|
|---|
| 5 |
|
|---|
| 6 | import java.awt.Point;
|
|---|
| 7 | import java.util.Collections;
|
|---|
| 8 | import java.util.Map;
|
|---|
| 9 |
|
|---|
| 10 | import org.openstreetmap.josm.Main;
|
|---|
| 11 | import org.openstreetmap.josm.actions.AutoScaleAction;
|
|---|
| 12 | import org.openstreetmap.josm.command.AddCommand;
|
|---|
| 13 | import org.openstreetmap.josm.data.coor.LatLon;
|
|---|
| 14 | import org.openstreetmap.josm.data.osm.Node;
|
|---|
| 15 | import org.openstreetmap.josm.data.osm.OsmPrimitive;
|
|---|
| 16 | import org.openstreetmap.josm.gui.util.GuiHelper;
|
|---|
| 17 | import org.openstreetmap.josm.io.remotecontrol.AddTagsDialog;
|
|---|
| 18 | import org.openstreetmap.josm.io.remotecontrol.PermissionPrefWithDefault;
|
|---|
| 19 |
|
|---|
| 20 | /**
|
|---|
| 21 | * Handler for add_node request.
|
|---|
| 22 | */
|
|---|
| 23 | public class AddNodeHandler extends RequestHandler {
|
|---|
| 24 |
|
|---|
| 25 | /**
|
|---|
| 26 | * The remote control command name used to add a node.
|
|---|
| 27 | */
|
|---|
| 28 | public static final String command = "add_node";
|
|---|
| 29 |
|
|---|
| 30 | private double lat;
|
|---|
| 31 | private double lon;
|
|---|
| 32 |
|
|---|
| 33 | @Override
|
|---|
| 34 | protected void handleRequest() {
|
|---|
| 35 | GuiHelper.runInEDTAndWait(new Runnable() {
|
|---|
| 36 | @Override public void run() {
|
|---|
| 37 | addNode(args);
|
|---|
| 38 | }
|
|---|
| 39 | });
|
|---|
| 40 | }
|
|---|
| 41 |
|
|---|
| 42 | @Override
|
|---|
| 43 | public String[] getMandatoryParams() {
|
|---|
| 44 | return new String[] {"lat", "lon"};
|
|---|
| 45 | }
|
|---|
| 46 |
|
|---|
| 47 | @Override
|
|---|
| 48 | public String[] getOptionalParams() {
|
|---|
| 49 | return new String[] {"addtags"};
|
|---|
| 50 | }
|
|---|
| 51 |
|
|---|
| 52 | @Override
|
|---|
| 53 | public String getUsage() {
|
|---|
| 54 | return "adds a node (given by its latitude and longitude) to the current dataset";
|
|---|
| 55 | }
|
|---|
| 56 |
|
|---|
| 57 | @Override
|
|---|
| 58 | public String[] getUsageExamples() {
|
|---|
| 59 | return new String[] {
|
|---|
| 60 | "/add_node?lat=11&lon=22",
|
|---|
| 61 | "/add_node?lon=13.3&lat=53.2&addtags=natural=tree|name=%20%20%20==Great%20Oak=="
|
|---|
| 62 | };
|
|---|
| 63 | }
|
|---|
| 64 |
|
|---|
| 65 | @Override
|
|---|
| 66 | public String getPermissionMessage() {
|
|---|
| 67 | return tr("Remote Control has been asked to create a new node.") +
|
|---|
| 68 | "<br>" + tr("Coordinates: ") + args.get("lat") + ", " + args.get("lon");
|
|---|
| 69 | }
|
|---|
| 70 |
|
|---|
| 71 | @Override
|
|---|
| 72 | public PermissionPrefWithDefault getPermissionPref() {
|
|---|
| 73 | return PermissionPrefWithDefault.CREATE_OBJECTS;
|
|---|
| 74 | }
|
|---|
| 75 |
|
|---|
| 76 | /**
|
|---|
| 77 | * Adds a node, implements the GET /add_node?lon=...&lat=... request.
|
|---|
| 78 | * @param args request arguments
|
|---|
| 79 | */
|
|---|
| 80 | private void addNode(Map<String, String> args) {
|
|---|
| 81 |
|
|---|
| 82 | // Parse the arguments
|
|---|
| 83 | Main.info("Adding node at (" + lat + ", " + lon + ')');
|
|---|
| 84 |
|
|---|
| 85 | // Create a new node
|
|---|
| 86 | LatLon ll = new LatLon(lat, lon);
|
|---|
| 87 |
|
|---|
| 88 | Node node = null;
|
|---|
| 89 |
|
|---|
| 90 | if (Main.isDisplayingMapView()) {
|
|---|
| 91 | Point p = Main.map.mapView.getPoint(ll);
|
|---|
| 92 | node = Main.map.mapView.getNearestNode(p, OsmPrimitive.isUsablePredicate);
|
|---|
| 93 | if (node != null && node.getCoor().greatCircleDistance(ll) > Main.pref.getDouble("remotecontrol.tolerance", 0.1)) {
|
|---|
| 94 | node = null; // node is too far
|
|---|
| 95 | }
|
|---|
| 96 | }
|
|---|
| 97 |
|
|---|
| 98 | if (node == null) {
|
|---|
| 99 | node = new Node(ll);
|
|---|
| 100 | // Now execute the commands to add this node.
|
|---|
| 101 | Main.main.undoRedo.add(new AddCommand(node));
|
|---|
| 102 | }
|
|---|
| 103 |
|
|---|
| 104 | Main.getLayerManager().getEditDataSet().setSelected(node);
|
|---|
| 105 | if (PermissionPrefWithDefault.CHANGE_VIEWPORT.isAllowed()) {
|
|---|
| 106 | AutoScaleAction.autoScale("selection");
|
|---|
| 107 | } else {
|
|---|
| 108 | Main.map.mapView.repaint();
|
|---|
| 109 | }
|
|---|
| 110 | // parse parameter addtags=tag1=value1|tag2=vlaue2
|
|---|
| 111 | AddTagsDialog.addTags(args, sender, Collections.singleton(node));
|
|---|
| 112 | }
|
|---|
| 113 |
|
|---|
| 114 | @Override
|
|---|
| 115 | protected void validateRequest() throws RequestHandlerBadRequestException {
|
|---|
| 116 | try {
|
|---|
| 117 | lat = Double.parseDouble(args != null ? args.get("lat") : "");
|
|---|
| 118 | lon = Double.parseDouble(args != null ? args.get("lon") : "");
|
|---|
| 119 | } catch (NumberFormatException e) {
|
|---|
| 120 | throw new RequestHandlerBadRequestException("NumberFormatException ("+e.getMessage()+')', e);
|
|---|
| 121 | }
|
|---|
| 122 | if (!Main.main.hasEditLayer()) {
|
|---|
| 123 | throw new RequestHandlerBadRequestException(tr("There is no layer opened to add node"));
|
|---|
| 124 | }
|
|---|
| 125 | }
|
|---|
| 126 | }
|
|---|