Mercurial > lada > lada-server
view src/main/java/de/intevation/lada/rest/LMesswertService.java @ 208:832e67663fd9
Added authorization to all services.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Tue, 02 Jul 2013 15:12:52 +0200 |
parents | a2e04ab2cd44 |
children | a305412206a3 |
line wrap: on
line source
package de.intevation.lada.rest; import java.util.ArrayList; import javax.enterprise.context.RequestScoped; import javax.inject.Inject; import javax.inject.Named; import javax.ws.rs.Consumes; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.Context; import javax.ws.rs.core.HttpHeaders; import javax.ws.rs.core.MultivaluedMap; import javax.ws.rs.core.UriInfo; import de.intevation.lada.authentication.Authentication; import de.intevation.lada.authentication.AuthenticationException; import de.intevation.lada.data.QueryBuilder; import de.intevation.lada.data.Repository; import de.intevation.lada.model.LMesswert; /** * This class produces a RESTful service to read the contents of * l_messert table. * * @author <a href="mailto:rrenkert@intevation.de">Raimund Renkert</a> */ @Path("/messwert") @RequestScoped public class LMesswertService { /** * The Repository for SUmwelt. */ @Inject @Named("lmesswertrepository") private Repository repository; @Inject @Named("ldapauth") private Authentication authentication; /** * Request LMessert via a filter. * * Query parameters are used for the filter in form of key-value pairs. * * @param info The URL query parameters. * @return JSON Object via Rest service. */ @GET @Produces("text/json") public Response filter( @Context UriInfo info, @Context HttpHeaders headers ) { try { if (!authentication.isAuthorizedUser(headers)) { return new Response(false, 699, new ArrayList<LMesswert>()); } MultivaluedMap<String, String> params = info.getQueryParameters(); if (params.isEmpty() || !params.containsKey("probeId") || !params.containsKey("messungId")) { return new Response(false, 609, new ArrayList<LMesswert>()); } String probeId = params.getFirst("probeId"); if (authentication.hasAccess(headers, probeId)) { QueryBuilder<LMesswert> builder = new QueryBuilder<LMesswert>( repository.getEntityManager(), LMesswert.class); builder.and("probeId", probeId) .and("messungsId", params.getFirst("messungsId")); return repository.filter(builder.getQuery()); } return new Response(false, 698, new ArrayList<LMesswert>()); } catch(AuthenticationException ae) { return new Response(false, 699, new ArrayList<LMesswert>()); } } @PUT @Produces("text/json") @Consumes("application/json") public Response update( LMesswert messwert, @Context HttpHeaders headers ) { try { String probeId = messwert.getProbeId(); if (authentication.hasAccess(headers, probeId)) { return repository.update(messwert); } return new Response(false, 698, new ArrayList<LMesswert>()); } catch(AuthenticationException ae) { return new Response(false, 699, new ArrayList<LMesswert>()); } } @POST @Produces("text/json") @Consumes("application/json") public Response create( LMesswert messwert, @Context HttpHeaders headers ) { try { String probeId = messwert.getProbeId(); if (authentication.hasAccess(headers, probeId)) { return repository.create(messwert); } return new Response(false, 698, new ArrayList<LMesswert>()); } catch(AuthenticationException ae) { return new Response(false, 699, new ArrayList<LMesswert>()); } } }