2fb5e9adb4b3f922598da15514af690504d9eda5
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / controller / PolicyController.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the “License”);
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38
39 package org.openecomp.portalapp.portal.controller;
40
41 import java.util.UUID;
42
43 import javax.servlet.http.HttpServletRequest;
44
45 import org.json.simple.JSONObject;
46 import org.openecomp.portalapp.portal.logging.aop.EPAuditLog;
47 import org.openecomp.portalapp.portal.scheduler.policy.PolicyProperties;
48 import org.openecomp.portalapp.portal.scheduler.policy.PolicyResponseWrapper;
49 import org.openecomp.portalapp.portal.scheduler.policy.PolicyRestInterfaceFactory;
50 import org.openecomp.portalapp.portal.scheduler.policy.PolicyRestInterfaceIfc;
51 import org.openecomp.portalapp.portal.scheduler.policy.PolicyUtil;
52 import org.openecomp.portalapp.portal.scheduler.policy.RestObject;
53 import org.openecomp.portalapp.portal.utils.PortalConstants;
54 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
55 import org.openecomp.portalsdk.core.util.SystemProperties;
56 import org.springframework.context.annotation.Configuration;
57 import org.springframework.context.annotation.EnableAspectJAutoProxy;
58 import org.springframework.http.HttpStatus;
59 import org.springframework.http.ResponseEntity;
60 import org.springframework.web.bind.annotation.RequestBody;
61 import org.springframework.web.bind.annotation.RequestMapping;
62 import org.springframework.web.bind.annotation.RequestMethod;
63 import org.springframework.web.bind.annotation.RestController;
64
65 /**
66  * Controller to handle Policy requests.
67  */
68
69 @RestController
70 @RequestMapping(PortalConstants.REST_AUX_API)
71 @Configuration
72 @EnableAspectJAutoProxy
73 @EPAuditLog
74 public class PolicyController implements BasicAuthenticationController {
75
76         /** The logger. */
77         private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PolicyController.class);
78
79         @RequestMapping(value = "/get_policy", method = RequestMethod.POST)
80         public ResponseEntity<String> getPolicyInfo(HttpServletRequest request, @RequestBody JSONObject policy_request)
81                         throws Exception {
82
83                 logger.debug(EELFLoggerDelegate.debugLogger, "#####################POLICY API CALL STARTED ###############"
84                                 + PolicyProperties.POLICY_GET_CONFIG_VAL);
85                 logger.debug(EELFLoggerDelegate.debugLogger,
86                                 "#####################Policy Request ###############" + policy_request.toString());
87
88                 String path = SystemProperties.getProperty(PolicyProperties.POLICY_GET_CONFIG_VAL);
89                 PolicyResponseWrapper policyResWrapper = getPolicyConfig(policy_request, path);
90
91                 logger.debug(EELFLoggerDelegate.debugLogger, "$$$$$$$$$$$$$$$$$$$$$$ "
92                                 + new ResponseEntity<String>(policyResWrapper.getResponse(), HttpStatus.OK).toString());
93
94                 return (new ResponseEntity<String>(policyResWrapper.getResponse(),
95                                 HttpStatus.valueOf(policyResWrapper.getStatus())));
96         }
97
98         protected static PolicyResponseWrapper getPolicyConfig(JSONObject request, String path) throws Exception {
99                 String methodName = "getPolicyConfig";
100                 String uuid = UUID.randomUUID().toString();
101                 logger.debug(EELFLoggerDelegate.debugLogger, "starting getPolicyConfig ");
102
103                 try {
104                         // STARTING REST API CALL AS AN FACTORY INSTACE
105                         PolicyRestInterfaceIfc policyRestController = PolicyRestInterfaceFactory.getInstance();
106
107                         RestObject<String> restObjStr = new RestObject<String>();
108                         String str = new String();
109                         restObjStr.set(str);
110                         policyRestController.<String>Post(str, request, uuid, path, restObjStr);
111                         PolicyResponseWrapper policyRespWrapper = PolicyUtil.wrapResponse(restObjStr);
112                         logger.debug(EELFLoggerDelegate.debugLogger, "<== " + methodName + " w=" + policyRespWrapper.getResponse());
113                         return policyRespWrapper;
114                 } catch (Exception e) {
115                         logger.debug(EELFLoggerDelegate.debugLogger,
116                                         "EXCEPTION in getPolicyConfig <== " + "." + methodName + e.toString());
117
118                         throw e;
119                 }
120         }
121 }