# HG changeset patch # User Raimund Renkert # Date 1424177141 -3600 # Node ID e147de48162a3062537951bd7af406ad9fb386c9 # Parent c4a6145d16ea05f87f82eb64a2038c3552fbd682 Added proben kommentar service. diff -r c4a6145d16ea -r e147de48162a src/main/java/de/intevation/lada/rest/KommentarPService.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/java/de/intevation/lada/rest/KommentarPService.java Tue Feb 17 13:45:41 2015 +0100 @@ -0,0 +1,87 @@ +/* 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; + +import javax.enterprise.context.RequestScoped; +import javax.inject.Inject; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.Context; +import javax.ws.rs.core.HttpHeaders; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.MultivaluedMap; +import javax.ws.rs.core.UriInfo; + +import org.apache.log4j.Logger; + +import de.intevation.lada.model.land.LKommentarP; +import de.intevation.lada.util.annotation.AuthenticationConfig; +import de.intevation.lada.util.annotation.AuthorizationConfig; +import de.intevation.lada.util.annotation.RepositoryConfig; +import de.intevation.lada.util.auth.Authentication; +import de.intevation.lada.util.auth.AuthenticationType; +import de.intevation.lada.util.auth.Authorization; +import de.intevation.lada.util.auth.AuthorizationType; +import de.intevation.lada.util.data.QueryBuilder; +import de.intevation.lada.util.data.Repository; +import de.intevation.lada.util.data.RepositoryType; +import de.intevation.lada.util.rest.Response; + +@Path("pkommentar") +@RequestScoped +public class KommentarPService { + + /* The logger used in this class.*/ + @Inject + private Logger logger; + + /* The data repository granting read/write access.*/ + @Inject + @RepositoryConfig(type=RepositoryType.RW) + private Repository defaultRepo; + + /* The authentication module.*/ + @Inject + @AuthenticationConfig(type=AuthenticationType.NONE) + private Authentication authentication; + + /* The authorization module.*/ + @Inject + @AuthorizationConfig(type=AuthorizationType.NONE) + private Authorization authorization; + + /** + * Get all messung objects. + * + * @return Response object containing all messung objects. + */ + @GET + @Path("/") + @Produces(MediaType.APPLICATION_JSON) + public Response get( + @Context HttpHeaders headers, + @Context UriInfo info + ) { + if (!authentication.isAuthenticated(headers)) { + logger.debug("User is not authenticated!"); + return new Response(false, 699, null); + } + MultivaluedMap params = info.getQueryParameters(); + if (params.isEmpty() || !params.containsKey("probeId")) { + return defaultRepo.getAll(LKommentarP.class, "land"); + } + String probeId = params.getFirst("probeId"); + QueryBuilder builder = + new QueryBuilder( + defaultRepo.entityManager("land"), + LKommentarP.class); + builder.and("probeId", probeId); + return defaultRepo.filter(builder.getQuery(), "land"); + } +}