[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / ONAP-PDP-REST / src / main / java / org / onap / policy / pdp / rest / api / services / ClosedLoopFaultPolicyService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PDP-REST
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. 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 package org.onap.policy.pdp.rest.api.services;
21
22 import javax.json.JsonException;
23 import javax.json.JsonObject;
24
25 import org.onap.policy.api.PolicyException;
26 import org.onap.policy.api.PolicyParameters;
27 import org.onap.policy.common.logging.flexlogger.FlexLogger;
28 import org.onap.policy.common.logging.flexlogger.Logger;
29 import org.onap.policy.pdp.rest.api.utils.PolicyApiUtils;
30 import org.onap.policy.xacml.api.XACMLErrorConstants;
31 import org.onap.policy.xacml.std.pap.StdPAPPolicy;
32
33 /**
34  * Closed Loop Fault Policy Implementation. 
35  *  
36  * @version 0.1 
37  */
38 public class ClosedLoopFaultPolicyService{
39         private static final Logger LOGGER = FlexLogger.getLogger(ClosedLoopFaultPolicyService.class.getName());
40         private PAPServices papServices = null;
41         
42         private PolicyParameters policyParameters = null;
43         private String message = null;
44         private String policyName = null;
45         private String policyScope = null;
46         private String date = null;
47         private JsonObject configBody = null;
48         
49         public ClosedLoopFaultPolicyService(String policyName, String policyScope,
50                         PolicyParameters policyParameters, String date) {
51                 this.policyParameters = policyParameters;
52                 this.policyName = policyName;
53                 this.policyScope = policyScope;
54                 this.date = date;
55                 papServices = new PAPServices();
56         }
57
58         public Boolean getValidation() {
59                 if(policyParameters.getConfigBody()==null){
60                         message = XACMLErrorConstants.ERROR_DATA_ISSUE+ " No Config Body Present";
61                         return false;
62                 }
63                 if(!PolicyApiUtils.validateNONASCIICharactersAndAllowSpaces(policyParameters.getConfigBody())){
64                         message = XACMLErrorConstants.ERROR_DATA_ISSUE+ " improper JSON object : " + policyParameters.getConfigBody();
65                         return false;
66                 }
67                 try{
68                         configBody = PolicyApiUtils.stringToJsonObject(policyParameters.getConfigBody());
69                 } catch(JsonException| IllegalStateException e){
70                         message = XACMLErrorConstants.ERROR_DATA_ISSUE+ " improper JSON object : " + policyParameters.getConfigBody();
71                         LOGGER.error("Json Parse Exception.", e);
72                         return false;
73                 }
74                 return true;
75         }
76
77         public String getMessage() {
78                 return message;
79         }
80
81         public String getResult(boolean updateFlag) throws PolicyException {
82                 String response = null;
83                 String operation = null;
84                 String oldPolicyName = null;
85                 if (updateFlag){
86                         operation = "update";
87                         if (policyName.endsWith("_Draft")) {
88                                 oldPolicyName = policyName + "_Draft.1";
89                         }
90                 } else {
91                         operation = "create";
92                 }
93                 // get values and attributes from the JsonObject
94                 if(!configBody.containsKey("onapname")){
95                         message = XACMLErrorConstants.ERROR_DATA_ISSUE + "No Onap Name given.";
96                         LOGGER.error(message);
97                         return message;
98                 }
99                 String onapName = configBody.get("onapname").toString().trim().replace("\"", "");
100                 if (onapName==null||onapName.trim().isEmpty()){
101                         message = XACMLErrorConstants.ERROR_DATA_ISSUE + "No Onap Name given.";
102                         LOGGER.error(message);
103                         return message;
104                 }
105                 boolean levelCheck = PolicyApiUtils.isNumeric(policyParameters.getRiskLevel());
106                 if (!levelCheck){
107                         message = XACMLErrorConstants.ERROR_DATA_ISSUE + "Incorrect Risk Level given.";
108                         LOGGER.error(message);
109                         return message;
110                 }
111                 String jsonBody = configBody.toString();
112                 // Create Policy. 
113                 StdPAPPolicy newPAPPolicy = new StdPAPPolicy("ClosedLoop_Fault", policyName, policyParameters.getPolicyDescription(), onapName, 
114                                 jsonBody, false, oldPolicyName, null, updateFlag, policyScope, 0, policyParameters.getRiskLevel(),
115                                 policyParameters.getRiskType(), String.valueOf(policyParameters.getGuard()), date); 
116                 //send JSON object to PAP
117                 response = (String) papServices.callPAP(newPAPPolicy, new String[] {"operation="+operation, "apiflag=api", "policyType=Config"}, policyParameters.getRequestID(), "ConfigClosedLoop");
118                 return response;
119         }
120
121 }