Bug Fix for Empty Body.
[music.git] / src / main / java / org / onap / music / exceptions / MusicExceptionMapper.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
6  * ===================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  * 
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.exceptions;
24
25 import java.io.EOFException;
26 import javax.ws.rs.core.Response;
27 import javax.ws.rs.ext.ExceptionMapper;
28 import javax.ws.rs.ext.Provider;
29
30 import org.codehaus.jackson.map.exc.UnrecognizedPropertyException;
31 import org.onap.music.main.ResultType;
32 import org.onap.music.response.jsonobjects.JsonResponse;
33
34 @Provider
35 public class MusicExceptionMapper implements ExceptionMapper<Exception> {
36     @Override
37     public Response toResponse(Exception  exception) {
38         if(exception instanceof UnrecognizedPropertyException) {
39             return Response.status(Response.Status.BAD_REQUEST).
40                 entity(new JsonResponse(ResultType.FAILURE).setError("Unknown field :"+((UnrecognizedPropertyException) exception).getUnrecognizedPropertyName()).toMap()).
41                 build();
42         } else if(exception instanceof EOFException) {
43             return Response.status(Response.Status.BAD_REQUEST).
44                 entity(new JsonResponse(ResultType.FAILURE).setError("Request body cannot be empty").toMap()).
45                 build();
46         } else if(exception instanceof NullPointerException) {
47             return Response.status(Response.Status.BAD_REQUEST).
48                 entity(new JsonResponse(ResultType.FAILURE).setError("NullPointerException - Please check to make sure all inputs are valid.").toMap()).
49                 build();
50         } else {
51             return Response.status(Response.Status.BAD_REQUEST).
52                 entity(new JsonResponse(ResultType.FAILURE).setError(exception.getMessage()).toMap()).
53                 build();
54         }
55     }
56 }