Fixed health check issue
[portal.git] / ecomp-portal-BE-os / src / main / java / org / onap / portalapp / portal / controller / AppsOSController.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  * 
37  */
38 package org.onap.portalapp.portal.controller;
39
40 import java.util.HashMap;
41 import java.util.Map;
42 import javax.servlet.http.HttpServletRequest;
43 import org.json.JSONObject;
44 import org.onap.portalapp.portal.domain.EPUser;
45 import org.onap.portalapp.portal.ecomp.model.PortalRestResponse;
46 import org.onap.portalapp.portal.ecomp.model.PortalRestStatusEnum;
47 import org.onap.portalapp.portal.logging.aop.EPAuditLog;
48 import org.onap.portalapp.portal.service.UserService;
49 import org.onap.portalapp.util.EPUserUtils;
50 import org.onap.portalapp.validation.DataValidator;
51 import org.onap.portalapp.validation.SecureString;
52 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
53 import org.springframework.beans.factory.annotation.Autowired;
54 import org.springframework.context.annotation.Configuration;
55 import org.springframework.context.annotation.EnableAspectJAutoProxy;
56 import org.springframework.web.bind.annotation.PathVariable;
57 import org.springframework.web.bind.annotation.RequestBody;
58 import org.springframework.web.bind.annotation.RequestMapping;
59 import org.springframework.web.bind.annotation.GetMapping;
60 import org.springframework.web.bind.annotation.PostMapping;
61 import org.springframework.web.bind.annotation.RequestMethod;
62 import org.springframework.web.bind.annotation.RestController;
63 import lombok.NoArgsConstructor;
64
65 @RestController
66 @Configuration
67 @EnableAspectJAutoProxy
68 @EPAuditLog
69 @NoArgsConstructor
70 public class AppsOSController extends AppsController {
71     private final DataValidator dataValidator = new DataValidator();
72
73     private static final String FAILURE = "failure";
74     private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppsOSController.class);
75
76     @Autowired
77     UserService userService;
78
79     /**
80      * Create new application's contact us details.
81      *
82      * @param contactUs
83      * @return
84      */
85     @PostMapping(value = "/portalApi/saveNewUser", produces = "application/json")
86     public PortalRestResponse<String> saveNewUser(HttpServletRequest request, @RequestBody EPUser newUser) {
87         EPUser user = EPUserUtils.getUserSession(request);
88         if (newUser == null)
89             return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, FAILURE,
90                     "New User cannot be null or empty");
91         if (!dataValidator.isValid(newUser)) {
92             return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, FAILURE,
93                     "New User is not safe html");
94         }
95         if (!(super.getAdminRolesService().isSuperAdmin(user) || super.getAdminRolesService().isAccountAdmin(user))
96                 && !user.getLoginId().equalsIgnoreCase(newUser.getLoginId())) {
97             return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, FAILURE,
98                     "UnAuthorized");
99         }
100
101         String checkDuplicate = request.getParameter("isCheck");
102         String saveNewUser = FAILURE;
103         try {
104             saveNewUser = userService.saveNewUser(newUser, checkDuplicate);
105         } catch (Exception e) {
106             logger.error(EELFLoggerDelegate.errorLogger, "Exception in saveNewUser", e);
107             return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, saveNewUser, e.getMessage());
108         }
109         return new PortalRestResponse<>(PortalRestStatusEnum.OK, saveNewUser, "");
110     }
111
112     @GetMapping(value = { "/portalApi/currentUserProfile/{loginId}" },
113             produces = "application/json")
114     public String getCurrentUserProfile(HttpServletRequest request, @PathVariable("loginId") String loginId) {
115
116         if (loginId != null) {
117             if (!dataValidator.isValid(new SecureString(loginId))) {
118                 return "loginId is not valid";
119             }
120         }
121
122         Map<String, String> map = new HashMap<>();
123         EPUser user;
124         try {
125             user = (EPUser) userService.getUserByUserId(loginId).get(0);
126             map.put("firstName", user.getFirstName());
127             map.put("lastName", user.getLastName());
128             map.put("email", user.getEmail());
129             map.put("loginId", user.getLoginId());
130             map.put("loginPwd", user.getLoginPwd());
131             map.put("middleInitial", user.getMiddleInitial());
132         } catch (Exception e) {
133             logger.error(EELFLoggerDelegate.errorLogger, "Failed to get user info", e);
134         }
135
136         JSONObject j = new JSONObject(map);
137         return j.toString();
138     }
139
140 }