use of org.restlet.data.MediaType in project GeoGig by boundlessgeo.
the class OsmDownloadWebOp method getRepresentation.
@Override
public Representation getRepresentation(final Variant variant) {
final Request request = getRequest();
Context context = getContext(request);
Form options = getRequest().getResourceRef().getQueryAsForm();
final String filterFileArg = options.getFirstValue("filter");
final String bboxArg = options.getFirstValue("bbox");
final String messageArg = options.getFirstValue("message");
final boolean update = Boolean.valueOf(options.getFirstValue("update"));
final boolean rebase = Boolean.valueOf(options.getFirstValue("rebase"));
final String mappingFileArg = options.getFirstValue("mapping");
checkArgSpec(filterFileArg != null ^ bboxArg != null || update, "You must specify a filter file or a bounding box");
checkArgSpec((filterFileArg != null || bboxArg != null) ^ update, "Filters cannot be used when updating");
checkArgSpec(context.index().isClean() && context.workingTree().isClean(), "Working tree and index are not clean");
checkArgSpec(!rebase || update, "rebase switch can only be used when updating");
final File filterFile = parseFile(filterFileArg);
final File mappingFile = parseFile(mappingFileArg);
final List<String> bbox = parseBbox(bboxArg);
checkArgSpec(filterFile == null || filterFile.exists(), "The specified filter file does not exist");
checkArgSpec(mappingFile == null || mappingFile.exists(), "The specified mapping file does not exist");
AbstractGeoGigOp<Optional<OSMReport>> command;
if (update) {
command = context.command(OSMUpdateOp.class).setRebase(rebase).setMessage(messageArg).setAPIUrl(OSMUtils.DEFAULT_API_ENDPOINT);
} else {
command = context.command(OSMDownloadOp.class).setBbox(bbox).setFilterFile(filterFile).setMessage(messageArg).setMappingFile(mappingFile).setOsmAPIUrl(OSMUtils.DEFAULT_API_ENDPOINT);
}
AsyncCommand<Optional<OSMReport>> asyncCommand;
URL repo = context.repository().getLocation();
String description = String.format("osm download filter: %s, bbox: %s, mapping: %s, update: %s, rebase: %s, repository: %s", filterFileArg, bboxArg, mappingFileArg, update, rebase, repo);
asyncCommand = AsyncContext.get().run(command, description);
final String rootPath = request.getRootRef().toString();
MediaType mediaType = variant.getMediaType();
Representation rep = new OSMReportRepresentation(mediaType, asyncCommand, rootPath);
return rep;
}
use of org.restlet.data.MediaType in project GeoGig by boundlessgeo.
the class OsmImportWebOp method getRepresentation.
@Override
public Representation getRepresentation(final Variant variant) {
final Request request = getRequest();
final Context context = super.getContext(request);
Form options = getRequest().getResourceRef().getQueryAsForm();
final String urlOrFilepath = options.getFirstValue("uri");
final boolean add = Boolean.valueOf(options.getFirstValue("add"));
final String mappingFile = options.getFirstValue("mapping");
Mapping mapping = null;
if (mappingFile != null) {
mapping = Mapping.fromFile(mappingFile);
}
final boolean noRaw = Boolean.valueOf(options.getFirstValue("noRaw"));
final String message = options.getFirstValue("message");
if (urlOrFilepath == null) {
String msg = "Missing parameter: uri\n" + "Usage: GET <repo context>/osm/import?uri=<osm file URI>[&<arg>=<value>]+\n" + "Arguments:\n" + " * uri: Mandatory. URL or path to OSM data file in the server filesystem\n" + " * add: Optional. true|false. Default: false. If true, do not remove previous data before importing.\n" + " * mapping: Optional. Location of mapping file in the server filesystem\n" + " * noRaw: Optional. true|false. Default: false. If true, do not import raw data when using a mapping\n" + " * message: Optional. Message for the commit to create.";
throw new CommandSpecException(msg);
}
OSMImportOp command = context.command(OSMImportOp.class);
command.setAdd(add);
command.setDataSource(urlOrFilepath);
command.setMapping(mapping);
command.setMessage(message);
command.setNoRaw(noRaw);
AsyncCommand<Optional<OSMReport>> asyncCommand;
URL repo = context.repository().getLocation();
String description = String.format("osm import %s, repository: %s", urlOrFilepath, repo);
asyncCommand = AsyncContext.get().run(command, description);
final String rootPath = request.getRootRef().toString();
MediaType mediaType = variant.getMediaType();
Representation rep = new OSMReportRepresentation(mediaType, asyncCommand, rootPath);
return rep;
}
use of org.restlet.data.MediaType in project GeoGig by boundlessgeo.
the class JettisonRepresentation method createWriter.
private XMLStreamWriter createWriter(Writer writer) {
final MediaType mediaType = getMediaType();
XMLStreamWriter xml;
if (mediaType.getSubType().equalsIgnoreCase("xml")) {
try {
xml = XMLOutputFactory.newFactory().createXMLStreamWriter(writer);
} catch (XMLStreamException ex) {
throw new RuntimeException(ex);
}
} else if (mediaType == MediaType.APPLICATION_JSON) {
xml = new MappedXMLStreamWriter(new MappedNamespaceConvention(), writer);
} else {
throw new RuntimeException("mediatype not handled " + mediaType);
}
return xml;
}
use of org.restlet.data.MediaType in project GeoGig by boundlessgeo.
the class ConsoleResourceResource method handleGet.
@Override
public void handleGet() {
final String resourceName;
{
String res = RESTUtils.getStringAttribute(getRequest(), "resource");
if (null == res) {
resourceName = "terminal.html";
} else {
resourceName = res;
}
}
MediaType mediaType = guessMediaType(resourceName);
getResponse().setEntity(new StreamRepresentation(mediaType) {
@Override
public void write(OutputStream outputStream) throws IOException {
// System.out.println("returning " + resourceName);
ByteStreams.copy(getStream(), outputStream);
}
@Override
public InputStream getStream() throws IOException {
InputStream inputStream = ConsoleResourceResource.class.getResourceAsStream(resourceName);
return inputStream;
}
});
}
use of org.restlet.data.MediaType in project lobcder by skoulouzis.
the class ResponseAdapter method setTargetEntity.
// Grab the Milton entity, wrap it in a Restlet entity, set it on target
public void setTargetEntity() {
final Entity entity;
if ((entity = getEntity()) != null) {
MediaType contentType = MediaType.valueOf(getContentTypeHeader());
getTarget().setEntity(new OutputRepresentation(contentType) {
@Override
public void write(OutputStream outputStream) throws IOException {
try {
entity.write(ResponseAdapter.this, outputStream);
} catch (IOException ex) {
throw ex;
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}
});
}
}
Aggregations