changeset 612:23ab3247b36e

Added REST services for Im-/Export for laf files.
author Raimund Renkert <raimund.renkert@intevation.de>
date Thu, 16 Apr 2015 15:50:02 +0200
parents 8782e3a00b71
children afaee6f0f3ec
files src/main/java/de/intevation/lada/rest/exporter/LafExportService.java src/main/java/de/intevation/lada/rest/importer/LafImportService.java
diffstat 2 files changed, 168 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/java/de/intevation/lada/rest/exporter/LafExportService.java	Thu Apr 16 15:50:02 2015 +0200
@@ -0,0 +1,87 @@
+package de.intevation.lada.rest.exporter;
+
+import java.io.InputStream;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.enterprise.context.RequestScoped;
+import javax.inject.Inject;
+import javax.json.JsonArray;
+import javax.json.JsonObject;
+import javax.servlet.http.HttpServletRequest;
+import javax.ws.rs.Consumes;
+import javax.ws.rs.POST;
+import javax.ws.rs.Path;
+import javax.ws.rs.Produces;
+import javax.ws.rs.core.Context;
+import javax.ws.rs.core.Response;
+import javax.ws.rs.core.Response.ResponseBuilder;
+
+import org.apache.log4j.Logger;
+
+import de.intevation.lada.exporter.ExportConfig;
+import de.intevation.lada.exporter.ExportFormat;
+import de.intevation.lada.exporter.Exporter;
+import de.intevation.lada.util.annotation.AuthorizationConfig;
+import de.intevation.lada.util.auth.Authorization;
+import de.intevation.lada.util.auth.AuthorizationType;
+import de.intevation.lada.util.auth.UserInfo;
+
+/**
+ * This class produces a RESTful service to interact with probe objects.
+ *
+ * @author <a href="mailto:rrenkert@intevation.de">Raimund Renkert</a>
+ */
+@Path("export")
+@RequestScoped
+public class LafExportService {
+
+    /* The logger used in this class.*/
+    @Inject
+    private Logger logger;
+
+    @Inject
+    @ExportConfig(format=ExportFormat.LAF)
+    private Exporter exporter;
+
+    @Inject
+    @AuthorizationConfig(type=AuthorizationType.OPEN_ID)
+    Authorization authorization;
+
+
+    /**
+     * Export LProbe objects.
+     *
+     * The service takes form url encoded POST data containing probe ids and
+     * exports the LProbe objects filtered by these ids.
+     *
+     * @param proben    Form data (url encoded) string with probe ids.
+     * @param header    The HTTP header containing authorization information.
+     * @return The LAF file to export.
+     */
+    @POST
+    @Path("/laf")
+    @Consumes("application/json")
+    @Produces("text/plain")
+    public Response download(
+        JsonObject proben,
+        @Context HttpServletRequest request
+    ) {
+        JsonArray array = proben.getJsonArray("proben");
+        List<Integer> probeIds = new ArrayList<Integer>();
+        String fileName = "export.laf";
+        UserInfo userInfo = authorization.getInfo(request);
+        for (int i = 0; i < array.size(); i++) {
+            Integer probeId = array.getInt(i);
+            //if (authorization.isAuthorized(userInfo, probeId)) {
+                probeIds.add(probeId);
+            //}
+        }
+        InputStream exported = exporter.export(probeIds, userInfo);
+        ResponseBuilder response = Response.ok((Object)exported);
+        response.header(
+            "Content-Disposition",
+            "attachment; filename=\"" + fileName + "\"");
+        return response.build();
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/java/de/intevation/lada/rest/importer/LafImportService.java	Thu Apr 16 15:50:02 2015 +0200
@@ -0,0 +1,81 @@
+/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
+ * Software engineering by Intevation GmbH
+ *
+ * This file is Free Software under the GNU GPL (v>=3) 
+ * and comes with ABSOLUTELY NO WARRANTY! Check out 
+ * the documentation coming with IMIS-Labordaten-Application for details. 
+ */
+package de.intevation.lada.rest.importer;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import javax.enterprise.context.RequestScoped;
+import javax.inject.Inject;
+import javax.servlet.http.HttpServletRequest;
+import javax.ws.rs.Consumes;
+import javax.ws.rs.POST;
+import javax.ws.rs.Path;
+import javax.ws.rs.Produces;
+import javax.ws.rs.core.Context;
+import javax.ws.rs.core.MediaType;
+
+import org.apache.log4j.Logger;
+
+import de.intevation.lada.importer.ImportConfig;
+import de.intevation.lada.importer.ImportFormat;
+import de.intevation.lada.importer.Importer;
+import de.intevation.lada.util.annotation.AuthorizationConfig;
+import de.intevation.lada.util.auth.Authorization;
+import de.intevation.lada.util.auth.AuthorizationType;
+import de.intevation.lada.util.auth.UserInfo;
+import de.intevation.lada.util.rest.Response;
+
+/**
+ * This class produces a RESTful service to interact with probe objects.
+ *
+ * @author <a href="mailto:rrenkert@intevation.de">Raimund Renkert</a>
+ */
+@Path("import")
+@RequestScoped
+public class LafImportService {
+
+    /* The logger used in this class.*/
+    @Inject
+    private Logger logger;
+
+    @Inject
+    @ImportConfig(format=ImportFormat.LAF)
+    private Importer importer;
+
+    @Inject
+    @AuthorizationConfig(type=AuthorizationType.OPEN_ID)
+    private Authorization authorization;
+
+    /**
+     * Import a file in the LAF format.
+     *
+     * @param input MulitpartFormDataInput containing the file to upload.
+     * @param header    The HTTP header containing authorization information.
+     * @return Response object.
+     */
+    @POST
+    @Path("/laf")
+    @Produces(MediaType.APPLICATION_JSON)
+    @Consumes(MediaType.TEXT_PLAIN)
+    public Response upload(
+        String content,
+        @Context HttpServletRequest request) {
+        UserInfo userInfo = authorization.getInfo(request);
+
+        logger.debug(content);
+        importer.doImport(content, userInfo);
+        Map<String, Object> respData = new HashMap<String,Object>();
+        respData.put("errors", importer.getErrors());
+        respData.put("warnings", importer.getWarnings());
+        int code = 200;
+        Response response = new Response(importer.getErrors().isEmpty(), code, respData);
+        importer.reset();
+        return response;
+    }
+}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)