Upgraded the latest ONAP SDK
[policy/engine.git] / POLICY-SDK-APP / src / main / java / org / onap / policy / controller / AdminTabController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
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
21 package org.onap.policy.controller;
22
23
24 import java.io.IOException;
25 import java.io.PrintWriter;
26 import java.util.HashMap;
27 import java.util.Map;
28
29 import javax.servlet.http.HttpServletRequest;
30 import javax.servlet.http.HttpServletResponse;
31
32 import org.json.JSONObject;
33 import org.onap.policy.common.logging.flexlogger.FlexLogger;
34 import org.onap.policy.common.logging.flexlogger.Logger;
35 import org.onap.policy.rest.dao.CommonClassDao;
36 import org.onap.policy.rest.jpa.GlobalRoleSettings;
37 import org.onap.portalsdk.core.controller.RestrictedBaseController;
38 import org.onap.portalsdk.core.web.support.JsonMessage;
39 import org.onap.portalsdk.core.web.support.UserUtils;
40 import org.springframework.beans.factory.annotation.Autowired;
41 import org.springframework.http.MediaType;
42 import org.springframework.stereotype.Controller;
43 import org.springframework.web.bind.annotation.RequestMapping;
44 import org.springframework.web.servlet.ModelAndView;
45
46 import com.fasterxml.jackson.databind.DeserializationFeature;
47 import com.fasterxml.jackson.databind.JsonNode;
48 import com.fasterxml.jackson.databind.ObjectMapper;
49
50 @Controller
51 @RequestMapping({"/"})
52 public class AdminTabController extends RestrictedBaseController{
53
54         private static final Logger LOGGER      = FlexLogger.getLogger(AdminTabController.class);
55         
56         private static CommonClassDao commonClassDao;
57         
58         public static CommonClassDao getCommonClassDao() {
59                 return commonClassDao;
60         }
61
62         public static void setCommonClassDao(CommonClassDao commonClassDao) {
63                 AdminTabController.commonClassDao = commonClassDao;
64         }
65         
66         @Autowired
67         private AdminTabController(CommonClassDao commonClassDao){
68                 AdminTabController.commonClassDao = commonClassDao;
69         }
70                 
71         public AdminTabController() {
72                 //default constructor
73         }
74
75         @RequestMapping(value={"/get_LockDownData"}, method={org.springframework.web.bind.annotation.RequestMethod.GET} , produces=MediaType.APPLICATION_JSON_VALUE)
76         public void getAdminTabEntityData(HttpServletRequest request, HttpServletResponse response){
77                 try{
78                         Map<String, Object> model = new HashMap<>();
79                         ObjectMapper mapper = new ObjectMapper();
80                         model.put("lockdowndata", mapper.writeValueAsString(commonClassDao.getData(GlobalRoleSettings.class)));
81                         JsonMessage msg = new JsonMessage(mapper.writeValueAsString(model));
82                         JSONObject j = new JSONObject(msg);
83                         response.getWriter().write(j.toString());
84                 }
85                 catch (Exception e){
86                         LOGGER.error("Exception Occured"+e);
87                 }
88         }
89         
90         @RequestMapping(value={"/adminTabController/save_LockDownValue.htm"}, method={org.springframework.web.bind.annotation.RequestMethod.POST})
91         public ModelAndView saveAdminTabLockdownValue(HttpServletRequest request, HttpServletResponse response) throws IOException{
92                 try {
93                         ObjectMapper mapper = new ObjectMapper();
94                         mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
95                         String userId = UserUtils.getUserSession(request).getOrgUserId();
96                         LOGGER.info("****************************************Logging UserID for Application Lockdown Function*****************************************");
97                         LOGGER.info("UserId:  " + userId);
98                         LOGGER.info("*********************************************************************************************************************************");
99                         JsonNode root = mapper.readTree(request.getReader());
100                         GlobalRoleSettings globalRole = mapper.readValue(root.get("lockdowndata").toString(), GlobalRoleSettings.class);
101                         globalRole.setRole("super-admin");
102                         commonClassDao.update(globalRole);
103                         
104                         response.setCharacterEncoding("UTF-8");
105                         response.setContentType("application / json");
106                         request.setCharacterEncoding("UTF-8");
107
108                         PrintWriter out = response.getWriter();
109                         String responseString = mapper.writeValueAsString(commonClassDao.getData(GlobalRoleSettings.class));
110                         JSONObject j = new JSONObject("{descriptiveScopeDictionaryDatas: " + responseString + "}");
111
112                         out.write(j.toString());
113
114                         return null;
115                 }
116                 catch (Exception e){
117                         LOGGER.error("Exception Occured"+e);
118                         response.setCharacterEncoding("UTF-8");
119                         request.setCharacterEncoding("UTF-8");
120                         PrintWriter out = response.getWriter();
121                         out.write(e.getMessage());
122                 }
123                 return null;
124         }
125 }