Skip to content
Snippets Groups Projects
Commit b2dda441 authored by Thorsten Vitt's avatar Thorsten Vitt
Browse files

[HTML] allow to specify target content type.

This is probably a better solution to deal with the old JQuery than
unconditionally delivering text/xml.
parent c986f892
No related branches found
No related tags found
No related merge requests found
......@@ -213,15 +213,16 @@ public Response get(
@Description("If true, pass the information the stylesheet that its result will be embedded into some website") @QueryParam("embedded") final boolean embedded,
@Description("URL of the CSS that should be referenced in the HTML that is created")
@QueryParam("css") final URI css,
@Description("The requested content type. E.g., text/html or text/xml") @QueryParam("mediatype") final String mediaType,
@Context final Request request) throws ObjectNotFoundFault,
MetadataParseFault, IoFault, AuthFault,
ProtocolNotImplementedFault, WebApplicationException, IOException,
SaxonApiException, ExecutionException {
logger.fine("HTML called for root object: " + uri);
logger.fine("HTML called for root object: " + uri);
final HTMLWriter writer = new HTMLWriter(this, uri, xsluri,
refreshStylesheet, pi, embedded, css, sid, request);
refreshStylesheet, pi, embedded, css, sid, mediaType, request);
return writer.createResponse().build();
}
......
......@@ -18,17 +18,18 @@
import java.net.URI;
import java.net.URISyntaxException;
import java.text.MessageFormat;
import java.util.Properties;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.CacheControl;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Request;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.ResponseBuilder;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.core.StreamingOutput;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Source;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerFactory;
......@@ -37,6 +38,7 @@
import net.sf.saxon.s9api.QName;
import net.sf.saxon.s9api.SaxonApiException;
import net.sf.saxon.s9api.Serializer;
import net.sf.saxon.s9api.XdmAtomicValue;
import net.sf.saxon.s9api.XsltExecutable;
import net.sf.saxon.s9api.XsltTransformer;
......@@ -121,6 +123,8 @@ private enum SourceType {
private Request request;
private Optional<String> requestedMediaType;
// Constructor and configuration
public HTMLWriter(final HTML service, final URI rootURI) {
......@@ -135,7 +139,8 @@ public HTMLWriter(final HTML service, final URI rootURI) {
public HTMLWriter(final HTML service, final URI rootURI,
final URI stylesheetURI, final boolean refreshStylesheet,
final boolean readStylesheetPI, final boolean embedded,
final URI css, final String sid, final Request request) {
final URI css, final String sid, final String mediaType,
final Request request) {
this(service, rootURI);
......@@ -145,6 +150,7 @@ public HTMLWriter(final HTML service, final URI rootURI,
this.embedded = embedded;
this.css = Optional.fromNullable(css);
this.sid(sid);
this.requestedMediaType = Optional.fromNullable(mediaType);
this.request = request;
}
......@@ -289,6 +295,12 @@ protected HTMLWriter loadStylesheet() throws SaxonApiException,
embedded));
transformer.setSource(source);
if (requestedMediaType.isPresent()) {
transformer.getUnderlyingController().setOutputProperty(
OutputKeys.MEDIA_TYPE, requestedMediaType.get());
}
this.transformer = transformer;
logger.log(Level.INFO, MessageFormat.format("Prepared XSLT stylesheet {1} for {0} after {2}", rootURI, actualStylesheet, stopwatch.toString()));
return this;
......@@ -305,8 +317,10 @@ public void write(final OutputStream out) throws IOException,
loadStylesheet();
}
logger.log(Level.INFO, MessageFormat.format("Ready for transformation of {0} after {1}", rootURI, stopwatch.toString()));
final Serializer serializer = service.xsltProcessor
.newSerializer(out);
transformer
.setDestination(service.xsltProcessor.newSerializer(out));
.setDestination(serializer);
transformer.transform();
} catch (final Exception e) {
......@@ -334,7 +348,15 @@ public ResponseBuilder createResponse() throws ObjectNotFoundFault, MetadataPars
loadStylesheet();
final ResponseBuilder builder = Response.ok();
builder.type(MediaType.TEXT_XML_TYPE);
if (requestedMediaType.isPresent()) {
builder.type(requestedMediaType.get());
} else {
final Properties outputProperties = transformer
.getUnderlyingController().getOutputProperties();
builder.type(outputProperties.getProperty(OutputKeys.MEDIA_TYPE,
"text/html"));
}
builder.lastModified(getContent().getMetadata().getGeneric().getGenerated().getLastModified().toGregorianCalendar().getTime());
final CacheControl cacheControl = new CacheControl();
cacheControl.setPrivate(sid.isPresent());
......
......@@ -17,7 +17,7 @@ public void testSimpleGet() throws MalformedURLException, IOException {
+ System.getProperty("sid"));
connection.connect();
Assert.assertEquals(200, connection.getResponseCode());
Assert.assertEquals("text/xml", connection.getContentType());
Assert.assertEquals("text/html", connection.getContentType());
Assert.assertTrue("Content length > 0", readContents(connection) > 0);
}
}
......@@ -16,7 +16,7 @@ public void testGet() throws IOException {
final HttpURLConnection connection = createRequest("/html/textgrid:jfst.0");
connection.connect();
Assert.assertEquals(200, connection.getResponseCode());
Assert.assertEquals("text/xml", connection.getContentType());
Assert.assertEquals("text/html", connection.getContentType());
Assert.assertTrue("Content length > 0", readContents(connection) > 0);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment