view artifact-database/src/main/java/de/intevation/artifactdatabase/rest/CreateResource.java @ 26:83a059c204f8

Connected /create with artifact db. artifacts/trunk@61 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 10 Sep 2009 12:29:57 +0000
parents 72abee95fd64
children c2d53bd30ab8
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.Post;  
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.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.ArtifactDatabase;
import de.intevation.artifacts.Artifact;

/**
 * @author Sascha L. Teichmann (sascha.teichmann@intevation)
 */
public class CreateResource
extends      ServerResource
{
    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";

    @Post
    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();
        }

        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");

        Artifact artifact = db.createArtifactWithFactory(factory);

        if (artifact == null) {
            Response response = getResponse();
            response.setStatus(Status.CLIENT_ERROR_UNPROCESSABLE_ENTITY, NO_ARTIFACT_CREATED);
            return new EmptyRepresentation();
        }
        
        Document outputDocument = artifact.describe(
            db.getArtifactContext());

        return new DomRepresentation(
            MediaType.APPLICATION_XML, outputDocument);
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8:

http://dive4elements.wald.intevation.org