Added Junits
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / controller / SchedulerAuxController.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 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 package org.onap.portalapp.portal.controller;
39
40 import java.util.Date;
41 import java.util.HashMap;
42 import java.util.Map;
43 import java.util.UUID;
44
45 import javax.servlet.http.HttpServletRequest;
46
47 import org.json.simple.JSONObject;
48 import org.onap.portalapp.controller.EPRestrictedBaseController;
49 import org.onap.portalapp.portal.logging.aop.EPAuditLog;
50 import org.onap.portalapp.portal.logging.logic.EPLogUtil;
51 import org.onap.portalapp.portal.scheduler.SchedulerProperties;
52 import org.onap.portalapp.portal.scheduleraux.RestObject;
53 import org.onap.portalapp.portal.scheduleraux.SchedulerAuxResponseWrapper;
54 import org.onap.portalapp.portal.scheduleraux.SchedulerAuxRestInterfaceFactory;
55 import org.onap.portalapp.portal.scheduleraux.SchedulerAuxRestInterfaceIfc;
56 import org.onap.portalapp.portal.scheduleraux.SchedulerAuxUtil;
57 import org.onap.portalapp.portal.utils.PortalConstants;
58 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
59 import org.springframework.context.annotation.Configuration;
60 import org.springframework.context.annotation.EnableAspectJAutoProxy;
61 import org.springframework.http.HttpStatus;
62 import org.springframework.http.ResponseEntity;
63 import org.springframework.web.bind.annotation.RequestMapping;
64 import org.springframework.web.bind.annotation.RequestMethod;
65 import org.springframework.web.bind.annotation.RestController;
66
67 /**
68  * Controller to handle Policy requests.
69  */
70
71 @RestController
72 @RequestMapping(PortalConstants.PORTAL_AUX_API)
73 @Configuration
74 @EnableAspectJAutoProxy
75 @EPAuditLog
76 public class SchedulerAuxController extends EPRestrictedBaseController {
77
78         /** The logger. */
79         private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(SchedulerAuxController.class);
80
81         @RequestMapping(value = "/get_policy", method = RequestMethod.GET, produces = "application/json")
82         public ResponseEntity<String> getPolicyInfo(HttpServletRequest request) throws Exception {
83                 try {
84
85                         logger.debug(EELFLoggerDelegate.debugLogger,
86                                         "SchedulerAux Controller Call Started: " + SchedulerProperties.SCHEDULERAUX_GET_CONFIG_VAL);
87                         String path = SchedulerProperties.getProperty(SchedulerProperties.SCHEDULERAUX_GET_CONFIG_VAL);
88                         SchedulerAuxResponseWrapper policyResWrapper = getPolicyConfig(path);
89
90                         logger.debug(EELFLoggerDelegate.debugLogger, "SchedulerAux Request END : Response: ",
91                                         new ResponseEntity<String>(policyResWrapper.getResponse(), HttpStatus.OK).toString());
92
93                         return (new ResponseEntity<String>(policyResWrapper.getResponse(),
94                                         HttpStatus.valueOf(policyResWrapper.getStatus())));
95                 } catch (Exception e) {
96                         SchedulerAuxResponseWrapper policyResWrapper = new SchedulerAuxResponseWrapper();
97                         policyResWrapper.setStatus(HttpStatus.INTERNAL_SERVER_ERROR.value());
98                         policyResWrapper.setEntity(e.getMessage());
99                         logger.error(EELFLoggerDelegate.errorLogger, "Exception with getpolicy ", e);
100                         return (new ResponseEntity<String>(policyResWrapper.getResponse(), HttpStatus.INTERNAL_SERVER_ERROR));
101                 }
102         }
103
104         protected static SchedulerAuxResponseWrapper getPolicyConfig(String path) throws Exception {
105                 String methodName = "getPolicyConfig";
106                 String uuid = UUID.randomUUID().toString();
107                 logger.debug(EELFLoggerDelegate.debugLogger, "starting getPolicyConfig ");
108
109                 try {
110                         // STARTING REST API CALL AS AN FACTORY INSTACE
111                         SchedulerAuxRestInterfaceIfc policyRestController = SchedulerAuxRestInterfaceFactory.getInstance();
112                         JSONObject request = new JSONObject();
113                         String policyName = SchedulerProperties.getProperty(SchedulerProperties.SCHEDULER_POLICY_NAME);
114                         request.put("policyName", policyName);
115                         RestObject<String> restObjStr = new RestObject<String>();
116                         String str = new String();
117                         restObjStr.set(str);
118                         policyRestController.<String>Post(str, request, uuid, path, restObjStr);
119                         SchedulerAuxResponseWrapper policyRespWrapper = SchedulerAuxUtil.wrapResponse(restObjStr);
120                         logger.debug(EELFLoggerDelegate.debugLogger, "Getpolicy Request END : Response: ", methodName,
121                                         policyRespWrapper.getResponse());
122                         if (policyRespWrapper.getStatus() != 200) {
123                                 String message = String.format(
124                                                 " get policy Information failed  . MethodName: %s, PolicyRespWrapperResponse: %s", methodName,
125                                                 policyRespWrapper.getResponse());
126                                 logger.error(EELFLoggerDelegate.errorLogger, message);
127                                 EPLogUtil.schedulerAccessAlarm(logger, policyRespWrapper.getStatus());
128                         }
129                         return policyRespWrapper;
130                 } catch (Exception e) {
131                         String message = String.format(" EXCEPTION in getPolicyConfig  . MethodName: %s and Exception:  %s", methodName, e);
132                         logger.error(EELFLoggerDelegate.errorLogger, "EXCEPTION in getPolicyConfig", message);
133                         throw e;
134                 }
135         }
136 }