Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/rest/CreateResource.java @ 45:9449f296cd54
Fixed inconsistencies in documentation after changes in h2-config
artifacts/trunk@162 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Hans Plum <hans.plum@intevation.de> |
---|---|
date | Wed, 30 Sep 2009 10:32:45 +0000 |
parents | af22d4de275c |
children | 41c225c8bd41 |
line wrap: on
line source
package de.intevation.artifactdatabase.rest; import org.w3c.dom.Document; import org.restlet.ext.xml.DomRepresentation; import org.restlet.resource.ResourceException; import org.restlet.data.Response; import org.restlet.data.Status; import org.restlet.data.MediaType; import org.apache.log4j.Logger; import de.intevation.artifactdatabase.XMLUtils; import org.restlet.representation.Representation; import org.restlet.representation.EmptyRepresentation; import java.io.IOException; import de.intevation.artifacts.ArtifactNamespaceContext; import de.intevation.artifacts.ArtifactDatabaseException; import de.intevation.artifacts.ArtifactDatabase; /** * @author Sascha L. Teichmann (sascha.teichmann@intevation) */ public class CreateResource extends BaseResource { private static Logger logger = Logger.getLogger(CreateResource.class); public static final String PATH = "/create"; public static final String XPATH_FACTORY = "/action/factory/@name"; public static final String NO_FACTORY_MESSAGE = "No factory given"; public static final String NO_ARTIFACT_CREATED = "No artifact created"; protected Representation innerPost(Representation requestRepr) throws ResourceException { 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(); } String factory = XMLUtils.xpathString( inputDocument, XPATH_FACTORY, ArtifactNamespaceContext.INSTANCE); if (factory == null || factory.length() == 0) { Response response = getResponse(); response.setStatus( Status.CLIENT_ERROR_BAD_REQUEST, NO_FACTORY_MESSAGE); return new EmptyRepresentation(); } if (logger.isDebugEnabled()) { logger.debug("Create artifact with factory '" + factory + "'"); } ArtifactDatabase db = (ArtifactDatabase)getContext() .getAttributes().get("database"); try { return new DomRepresentation( MediaType.APPLICATION_XML, db.createArtifactWithFactory(factory)); } catch (ArtifactDatabaseException adbe) { Response response = getResponse(); response.setStatus( Status.CLIENT_ERROR_UNPROCESSABLE_ENTITY, adbe.getMessage()); return new EmptyRepresentation(); } } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: