/******************************************************************************* * Copyright (c) 2011 epyx SA. * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. *******************************************************************************/ package ch.windmobile.server.resource; import javax.servlet.http.HttpServletRequest; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.WebApplicationException; import javax.ws.rs.core.Context; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import javax.ws.rs.core.Response.Status; import javax.ws.rs.core.UriInfo; import ch.windmobile.server.datasourcemodel.DataSourceException; import ch.windmobile.server.datasourcemodel.WindMobileDataSource; import ch.windmobile.server.datasourcemodel.xml.Chart; import ch.windmobile.server.datasourcemodel.xml.Error; import com.sun.jersey.api.core.InjectParam; import com.sun.jersey.spi.resource.Singleton; @Path("/windchart") @Singleton public class WindChartResource { @InjectParam("dataSource") private WindMobileDataSource dataSource; @Context UriInfo uriInfo; @Context HttpServletRequest request; @GET @Path("{stationId}/{duration}") @Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON }) public Chart getWindChart(@PathParam("stationId") String stationId, @PathParam("duration") int duration) { try { // Don't kill the server, max 2 days if (duration > 2 * 24 * 60 * 60) { Error error = new Error(); error.setCode(DataSourceException.Error.SERVER_ERROR.getCode()); error.setMessage("Chart duration requested is too long"); throw new WebApplicationException(Response.status(Status.NOT_ACCEPTABLE).entity(error).build()); } return dataSource.getWindChart(stationId, duration); } catch (Exception e) { throw ExceptionHandler.treatException(e, request); } } }