diff src/main/java/de/intevation/lada/rest/importer/LafImportService.java @ 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
children 8086664d1629
line wrap: on
line diff
--- /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)