Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/rest/ArtifactOutResource.java @ 36:f7d2cd59a0d5
Bugfix done. Now the feed Method works fine
artifacts/trunk@93 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Wed, 16 Sep 2009 07:53:26 +0000 |
parents | c2d53bd30ab8 |
children | 3f03aee55c2f |
line wrap: on
line source
package de.intevation.artifactdatabase.rest; import org.apache.log4j.Logger; import org.restlet.resource.Get; import org.restlet.resource.ServerResource; import org.restlet.data.Request; import org.restlet.data.Response; import org.restlet.data.Status; import org.restlet.data.MediaType; import org.restlet.representation.Representation; import org.restlet.representation.EmptyRepresentation; import org.restlet.ext.xml.DomRepresentation; import de.intevation.artifactdatabase.XMLUtils; import de.intevation.artifacts.ArtifactNamespaceContext; import de.intevation.artifacts.ArtifactDatabaseException; import de.intevation.artifacts.ArtifactDatabase; import org.w3c.dom.Document; import java.io.IOException; /** * @author Sascha L. Teichmann (sascha.teichmann@intevation) */ public class ArtifactOutResource extends ServerResource { public static final String PATH = "/artifact/{uuid}/{type}"; public static final String XPATH_MIME_TYPE = "/action/out/mime-type/@value"; public static final MediaType DEFAULT_MIME_TYPE = MediaType.APPLICATION_OCTET_STREAM; private static Logger logger = Logger.getLogger(ArtifactOutResource.class); @Get public Representation represent() { Request request = getRequest(); Representation requestRepr = request.getEntity(); Document inputDocument = null; try { DomRepresentation input = new DomRepresentation(requestRepr); inputDocument = input.getDocument(); } catch (IOException ioe) { logger.error(ioe.getMessage()); Response response = getResponse(); response.setStatus(Status.CLIENT_ERROR_BAD_REQUEST, ioe); return new EmptyRepresentation(); } ArtifactDatabase db = (ArtifactDatabase)getContext() .getAttributes().get("database"); String identifier = (String)request.getAttributes().get("uuid"); if (logger.isDebugEnabled()) { logger.debug("looking for artifact id '" + identifier + "'"); } String mimeTypeString = XMLUtils.xpathString( inputDocument, XPATH_MIME_TYPE, ArtifactNamespaceContext.INSTANCE); MediaType mimeType = DEFAULT_MIME_TYPE; if (mimeTypeString != null && mimeTypeString.length() != 0) { try { mimeType = MediaType.valueOf(mimeTypeString); } catch (Exception e) { logger.error(e.getLocalizedMessage()); } } try { return new OutRepresentation( mimeType, db.out(identifier, inputDocument)); } catch (ArtifactDatabaseException adbe) { Response response = getResponse(); response.setStatus( Status.CLIENT_ERROR_NOT_FOUND, adbe.getMessage()); return new EmptyRepresentation(); } } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: