Issue-ID: PORTAL-913 optimization in git clone using --depth
[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.RequestMethod;
60 import org.springframework.web.bind.annotation.RestController;
61 import lombok.NoArgsConstructor;
62
63 @RestController
64 @Configuration
65 @EnableAspectJAutoProxy
66 @EPAuditLog
67 @NoArgsConstructor
68 public class AppsOSController extends AppsController {
69     private final DataValidator dataValidator = new DataValidator();
70
71     private static final String FAILURE = "failure";
72     private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppsOSController.class);
73
74     @Autowired
75     UserService userService;
76
77     /**
78      * Create new application's contact us details.
79      *
80      * @param contactUs
81      * @return
82      */
83     @RequestMapping(value = "/portalApi/saveNewUser", method = RequestMethod.POST, produces = "application/json")
84     public PortalRestResponse<String> saveNewUser(HttpServletRequest request, @RequestBody EPUser newUser) {
85         EPUser user = EPUserUtils.getUserSession(request);
86         if (newUser == null)
87             return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, FAILURE,
88                     "New User cannot be null or empty");
89         if (!dataValidator.isValid(newUser)) {
90             return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, FAILURE,
91                     "New User is not safe html");
92         }
93         if (!(super.getAdminRolesService().isSuperAdmin(user) || super.getAdminRolesService().isAccountAdmin(user))
94                 && !user.getLoginId().equalsIgnoreCase(newUser.getLoginId())) {
95             return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, FAILURE,
96                     "UnAuthorized");
97         }
98
99         String checkDuplicate = request.getParameter("isCheck");
100         String saveNewUser = FAILURE;
101         try {
102             saveNewUser = userService.saveNewUser(newUser, checkDuplicate);
103         } catch (Exception e) {
104             logger.error(EELFLoggerDelegate.errorLogger, "Exception in saveNewUser", e);
105             return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, saveNewUser, e.getMessage());
106         }
107         return new PortalRestResponse<>(PortalRestStatusEnum.OK, saveNewUser, "");
108     }
109
110     @RequestMapping(value = { "/portalApi/currentUserProfile/{loginId}" }, method = RequestMethod.GET,
111             produces = "application/json")
112     public String getCurrentUserProfile(HttpServletRequest request, @PathVariable("loginId") String loginId) {
113
114         if (loginId != null) {
115             if (!dataValidator.isValid(new SecureString(loginId))) {
116                 return "loginId is not valid";
117             }
118         }
119
120         Map<String, String> map = new HashMap<>();
121         EPUser user;
122         try {
123             user = (EPUser) userService.getUserByUserId(loginId).get(0);
124             map.put("firstName", user.getFirstName());
125             map.put("lastName", user.getLastName());
126             map.put("email", user.getEmail());
127             map.put("loginId", user.getLoginId());
128             map.put("loginPwd", user.getLoginPwd());
129             map.put("middleInitial", user.getMiddleInitial());
130         } catch (Exception e) {
131             logger.error(EELFLoggerDelegate.errorLogger, "Failed to get user info", e);
132         }
133
134         JSONObject j = new JSONObject(map);
135         return j.toString();
136     }
137
138 }