Files
SCM-Manager/scm-webapp/src/main/java/sonia/scm/api/rest/StatusExceptionMapper.java

93 lines
2.7 KiB
Java
Raw Normal View History

2018-08-20 18:16:14 +02:00
/*
* MIT License
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
2013-09-28 14:03:59 +02:00
*/
2013-09-28 14:03:59 +02:00
package sonia.scm.api.rest;
//~--- non-JDK imports --------------------------------------------------------
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.ws.rs.core.MediaType;
2013-09-28 14:03:59 +02:00
import javax.ws.rs.core.Response;
import javax.ws.rs.ext.ExceptionMapper;
2018-08-28 10:02:16 +02:00
//~--- JDK imports ------------------------------------------------------------
2013-09-28 14:03:59 +02:00
/**
*
* @author Sebastian Sdorra
* @param <E>
*/
public class StatusExceptionMapper<E extends Throwable>
implements ExceptionMapper<E>
{
/**
* the logger for StatusExceptionMapper
*/
private static final Logger logger =
LoggerFactory.getLogger(StatusExceptionMapper.class);
2018-08-20 18:16:14 +02:00
private final Response.Status status;
private final Class<E> type;
2013-09-28 14:03:59 +02:00
/**
2018-08-20 18:16:14 +02:00
* Map an Exception to a HTTP Response
2013-09-28 14:03:59 +02:00
*
2018-08-20 18:16:14 +02:00
* @param type the exception class
* @param status the http status to be mapped
2013-09-28 14:03:59 +02:00
*/
public StatusExceptionMapper(Class<E> type, Response.Status status)
{
this.type = type;
this.status = status;
}
/**
2018-08-20 18:16:14 +02:00
* provide a http responses from an exception
2013-09-28 14:03:59 +02:00
*
2018-08-20 18:16:14 +02:00
* @param exception the thrown exception
2013-09-28 14:03:59 +02:00
*
2018-08-20 18:16:14 +02:00
* @return the http response with the exception presentation
2013-09-28 14:03:59 +02:00
*/
@Override
public Response toResponse(E exception)
{
if (logger.isDebugEnabled())
{
StringBuilder msg = new StringBuilder();
msg.append("map ").append(type.getSimpleName()).append("to status code ");
msg.append(status.getStatusCode());
logger.debug(msg.toString());
}
2018-08-31 14:23:44 +02:00
return Response.status(status)
.entity(exception.getMessage())
.type(MediaType.TEXT_PLAIN_TYPE)
2018-08-31 14:23:44 +02:00
.build();
2013-09-28 14:03:59 +02:00
}
}