/* * Copyright 2015 Robert von Burg <eitch@eitchnet.ch> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package li.strolch.rest; import java.text.MessageFormat; import javax.ws.rs.NotFoundException; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import javax.ws.rs.core.Response.Status; import javax.ws.rs.ext.ExceptionMapper; import javax.ws.rs.ext.Provider; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import li.strolch.exception.StrolchAccessDeniedException; import li.strolch.privilege.model.Restrictable; import li.strolch.rest.model.Result; import li.strolch.utils.helper.StringHelper; @Provider public class StrolchRestfulExceptionMapper implements ExceptionMapper<Exception> { private static final Logger logger = LoggerFactory.getLogger(StrolchRestfulExceptionMapper.class); @Override public Response toResponse(Exception ex) { logger.error(MessageFormat.format("Handling exception {0}", ex.getClass()), ex); //$NON-NLS-1$ if (ex instanceof NotFoundException) return Response.status(Status.NOT_FOUND).entity(new Result(ex)).type(MediaType.APPLICATION_JSON).build(); if (ex instanceof StrolchAccessDeniedException) { StrolchAccessDeniedException e = (StrolchAccessDeniedException) ex; StringBuilder sb = new StringBuilder(); sb.append("User "); sb.append(e.getCertificate().getUsername()); sb.append(" does not have access to "); Restrictable restrictable = e.getRestrictable(); if (restrictable == null) { sb.append(StringHelper.NULL); } else { sb.append(restrictable.getPrivilegeName()); sb.append(" - "); sb.append(restrictable.getPrivilegeValue()); } return Response.status(Status.UNAUTHORIZED).entity(sb.toString()).type(MediaType.TEXT_PLAIN).build(); } return Response.serverError().entity(new Result(ex)).type(MediaType.APPLICATION_JSON).build(); } }