Enrichment cordinator service, added job validation
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / controllers / ErrorResponse.java
1 /*-
2  * ========================LICENSE_START=================================
3  * ONAP : ccsdk oran
4  * ======================================================================
5  * Copyright (C) 2020 Nordix Foundation. All rights reserved.
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  * ========================LICENSE_END===================================
19  */
20
21 package org.oransc.enrichment.controllers;
22
23 import com.google.gson.Gson;
24 import com.google.gson.GsonBuilder;
25 import com.google.gson.annotations.SerializedName;
26
27 import io.swagger.annotations.ApiModel;
28 import io.swagger.annotations.ApiModelProperty;
29
30 import org.springframework.http.HttpHeaders;
31 import org.springframework.http.HttpStatus;
32 import org.springframework.http.MediaType;
33 import org.springframework.http.ResponseEntity;
34 import reactor.core.publisher.Mono;
35
36 public class ErrorResponse {
37     private static Gson gson = new GsonBuilder() //
38         .create(); //
39
40     // Returned as body for all failed REST calls
41     @ApiModel(value = "error_information", description = "Problem as defined in https://tools.ietf.org/html/rfc7807")
42     public static class ErrorInfo {
43         @SerializedName("type")
44         private String type = "about:blank";
45
46         @SerializedName("title")
47         private String title = null;
48
49         @SerializedName("status")
50         private final Integer status;
51
52         @SerializedName("detail")
53         private String detail = null;
54
55         @SerializedName("instance")
56         private String instance = null;
57
58         public ErrorInfo(String detail, Integer status) {
59             this.detail = detail;
60             this.status = status;
61         }
62
63         @ApiModelProperty(
64             example = "404",
65             value = "The HTTP status code generated by the origin server for this occurrence of the problem.")
66         public Integer getStatus() {
67             return status;
68         }
69
70         @ApiModelProperty(
71             example = "EI job type not found",
72             value = "A human-readable explanation specific to this occurrence of the problem.")
73         public String getDetail() {
74             return this.detail;
75         }
76     }
77
78     @ApiModelProperty(value = "message")
79     public final String message;
80
81     ErrorResponse(String message) {
82         this.message = message;
83     }
84
85     public static Mono<ResponseEntity<Object>> createMono(Exception e, HttpStatus code) {
86         return Mono.just(create(e, code));
87     }
88
89     public static ResponseEntity<Object> create(Exception e, HttpStatus code) {
90         if (e instanceof RuntimeException) {
91             code = HttpStatus.INTERNAL_SERVER_ERROR;
92         }
93         ErrorInfo p = new ErrorInfo(e.toString(), code.value());
94         String json = gson.toJson(p);
95         HttpHeaders headers = new HttpHeaders();
96         headers.setContentType(MediaType.APPLICATION_PROBLEM_JSON);
97         return new ResponseEntity<>(json, headers, code);
98     }
99
100 }