
The MIME type for GeoJSON registered with IANA is application/geo+json, replacing the old value application/vnd.geo+json. The change was published with RFC 7946 in 2016. Example request: `GET /brouter?lonlats=13.377485,52.516247%7C13.351221,52.515004&profile=trekking&alternativeidx=0&format=geojson HTTP/1.1` Exampe response headers: ``` HTTP/1.1 200 OK Content-Encoding: gzip Content-Disposition: attachment; filename="brouter.geojson" Access-Control-Allow-Origin: * Connection: close Content-Type: application/geo+json; charset=utf-8 ``` References: - https://www.iana.org/assignments/media-types/application/vnd.geo+json - https://www.iana.org/assignments/media-types/application/geo+json - https://datatracker.ietf.org/doc/html/rfc7946#section-12
136 lines
4.9 KiB
Java
136 lines
4.9 KiB
Java
package btools.server.request;
|
|
|
|
import java.io.File;
|
|
import java.util.Map;
|
|
|
|
import btools.router.FormatCsv;
|
|
import btools.router.FormatGpx;
|
|
import btools.router.FormatJson;
|
|
import btools.router.FormatKml;
|
|
import btools.router.OsmTrack;
|
|
import btools.router.RoutingContext;
|
|
import btools.server.ServiceContext;
|
|
|
|
/**
|
|
* URL query parameter handler for web and standalone server. Supports all
|
|
* BRouter features without restrictions.
|
|
* <p>
|
|
* Parameters:
|
|
* <p>
|
|
* lonlats = lon,lat|... (unlimited list of lon,lat waypoints separated by |)
|
|
* nogos = lon,lat,radius,weight|... (optional, list of lon, lat, radius in meters, weight (optional) separated by |)
|
|
* polylines = lon,lat,lon,lat,...,weight|... (unlimited list of lon,lat and weight (optional), lists separated by |)
|
|
* polygons = lon,lat,lon,lat,...,weight|... (unlimited list of lon,lat and weight (optional), lists separated by |)
|
|
* profile = profile file name without .brf
|
|
* alternativeidx = [0|1|2|3] (optional, default 0)
|
|
* format = [kml|gpx|geojson] (optional, default gpx)
|
|
* trackname = name used for filename and format specific trackname (optional, default brouter)
|
|
* exportWaypoints = 1 to export them (optional, default is no export)
|
|
* pois = lon,lat,name|... (optional)
|
|
* timode = turnInstructionMode [0=none, 1=auto-choose, 2=locus-style, 3=osmand-style, 4=comment-style, 5=gpsies-style, 6=orux-style, 7=locus-old-style] default 0
|
|
* heading = angle (optional to give a route a start direction)
|
|
* profile:xxx = parameter in profile (optional)
|
|
* straight = idx1,idx2,.. (optional, minimum one value, index of a direct routing point in the waypoint list)
|
|
* <p>
|
|
* Example URLs:
|
|
* {@code http://localhost:17777/brouter?lonlats=8.799297,49.565883|8.811764,49.563606&nogos=&profile=trekking&alternativeidx=0&format=gpx}
|
|
* {@code http://localhost:17777/brouter?lonlats=1.1,1.2|2.1,2.2|3.1,3.2|4.1,4.2&nogos=-1.1,-1.2,1|-2.1,-2.2,2&profile=shortest&alternativeidx=1&format=kml&trackname=Ride&pois=1.1,2.1,Barner Bar}
|
|
*/
|
|
public class ServerHandler extends RequestHandler {
|
|
|
|
private RoutingContext rc;
|
|
|
|
public ServerHandler(ServiceContext serviceContext, Map<String, String> params) {
|
|
super(serviceContext, params);
|
|
}
|
|
|
|
@Override
|
|
public RoutingContext readRoutingContext() {
|
|
rc = new RoutingContext();
|
|
rc.memoryclass = 128;
|
|
|
|
String profile = params.get("profile");
|
|
// when custom profile replace prefix with directory path
|
|
if (profile.startsWith(ProfileUploadHandler.CUSTOM_PREFIX)) {
|
|
String customProfile = profile.substring(ProfileUploadHandler.CUSTOM_PREFIX.length());
|
|
profile = new File(serviceContext.customProfileDir, customProfile).getPath();
|
|
} else if (profile.startsWith(ProfileUploadHandler.SHARED_PREFIX)) {
|
|
String customProfile = profile.substring(ProfileUploadHandler.SHARED_PREFIX.length());
|
|
profile = new File(serviceContext.sharedProfileDir, customProfile).getPath();
|
|
}
|
|
rc.localFunction = profile;
|
|
|
|
return rc;
|
|
}
|
|
|
|
@Override
|
|
public String formatTrack(OsmTrack track) {
|
|
String result;
|
|
// optional, may be null
|
|
String format = params.get("format");
|
|
String trackName = getTrackName();
|
|
if (trackName != null) {
|
|
track.name = trackName;
|
|
}
|
|
String exportWaypointsStr = params.get("exportWaypoints");
|
|
if (exportWaypointsStr != null && Integer.parseInt(exportWaypointsStr) != 0) {
|
|
track.exportWaypoints = true;
|
|
}
|
|
|
|
if (format == null || "gpx".equals(format)) {
|
|
result = new FormatGpx(rc).format(track);
|
|
} else if ("kml".equals(format)) {
|
|
result = new FormatKml(rc).format(track);
|
|
} else if ("geojson".equals(format)) {
|
|
result = new FormatJson(rc).format(track);
|
|
} else if ("csv".equals(format)) {
|
|
result = new FormatCsv(rc).format(track);
|
|
} else {
|
|
System.out.println("unknown track format '" + format + "', using default");
|
|
//result = track.formatAsGpx();
|
|
result = new FormatGpx(rc).format(track);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
@Override
|
|
public String getMimeType() {
|
|
// default
|
|
String result = "text/plain";
|
|
|
|
// optional, may be null
|
|
String format = params.get("format");
|
|
if (format != null) {
|
|
if ("gpx".equals(format)) {
|
|
result = "application/gpx+xml";
|
|
} else if ("kml".equals(format)) {
|
|
result = "application/vnd.google-earth.kml+xml";
|
|
} else if ("geojson".equals(format)) {
|
|
result = "application/geo+json";
|
|
} else if ("csv".equals(format)) {
|
|
result = "text/tab-separated-values";
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
@Override
|
|
public String getFileName() {
|
|
String fileName = null;
|
|
String format = params.get("format");
|
|
String trackName = getTrackName();
|
|
|
|
if (format != null) {
|
|
fileName = (trackName == null ? "brouter" : trackName) + "." + format;
|
|
}
|
|
|
|
return fileName;
|
|
}
|
|
|
|
private String getTrackName() {
|
|
return params.get("trackname") == null ? null : params.get("trackname").replaceAll("[^a-zA-Z0-9 \\._\\-]+", "");
|
|
}
|
|
|
|
}
|