Updating licenses in all files
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / main / java / org / openecomp / appc / listener / LCM / operation / GenericProviderOperationRequestFormatter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.listener.LCM.operation;
24
25 import com.fasterxml.jackson.databind.JsonNode;
26 import org.json.JSONObject;
27 import org.openecomp.appc.exceptions.APPCException;
28 import org.openecomp.appc.listener.LCM.model.InputBody;
29 import org.openecomp.appc.listener.LCM.model.ResponseStatus;
30 import org.openecomp.appc.listener.util.Mapper;
31
32 import com.att.eelf.configuration.EELFLogger;
33 import com.att.eelf.configuration.EELFManager;
34
35 import java.net.URL;
36
37
38
39 public class GenericProviderOperationRequestFormatter implements ProviderOperationRequestFormatter {
40
41     private final EELFLogger LOG = EELFManager.getInstance().getLogger(GenericProviderOperationRequestFormatter.class);
42
43     //@formatter:off
44     @SuppressWarnings("nls")
45     private final static String TEMPLATE = "{\"input\": %s}";
46     //@formatter:on
47
48     @Override
49     public String buildPath(URL url, String rpcName) {
50         return url.getPath() + ":"+rpcName;
51     }
52
53 //    private String convertActionToUrl(String action) {
54 //        String res = "";
55 //        switch (action) {
56 //            case "SoftwareUpload":
57 //                res = "software-upload";
58 //                break;
59 //            case "LiveUpgrade":
60 //                res = "live-upgrade";
61 //                break;
62 //            case "HealthCheck":
63 //                res = "health-check";
64 //                break;
65 //            case "CheckLock":
66 //                res = "check-lock";
67 //                break;
68 //            default :
69 //                res = action;
70 //        }
71 //        return res.toLowerCase();
72 //    }
73
74     @Override
75     public String buildRequest(InputBody msg) {
76         JSONObject jsonObject = Mapper.toJsonObject(msg);
77         return String.format(TEMPLATE, jsonObject.toString());
78     }
79
80 /*    @Override
81     public OperationStatus getOperationStatus(JSONObject responseBody) throws APPCException {
82         try {
83             JSONObject status = responseBody.getJSONObject("output").getJSONObject("status");
84             return new OperationStatus(String.valueOf(status.getInt("code")), status.getString("message"));
85         } catch (Exception e) {
86             LOG.error("Unknown error processing failed response from provider. Json not in expected format", e);
87             throw new APPCException("APPC has an unknown RPC error");
88         }
89     }*/
90
91     @Override
92     public ResponseStatus getResponseStatus(JsonNode responseBody)throws APPCException{
93         try {
94             JsonNode status = responseBody.get("output").get("status");
95             return new ResponseStatus(status.get("code").asInt(), status.get("message").asText());
96         } catch (Exception e) {
97             LOG.error("Unknown error processing failed response from provider. Json not in expected format", e);
98             throw new APPCException("APPC has an unknown RPC error");
99         }
100     }
101
102     @Override
103     public String getLocked(JSONObject responseBody) throws APPCException {
104         try {
105             JSONObject outputObject=responseBody.getJSONObject("output");
106             if(outputObject.has("locked")){
107                 return outputObject.getString("locked");
108             }else{
109                 return null;
110             }
111         } catch (Exception e) {
112             LOG.error("Unknown error processing failed response from provider. Json not in expected format", e);
113             throw new APPCException("APPC has an unknown RPC error");
114         }
115     }
116 }