Merge "MicroserviceParameter class DB constraints"
[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
43 import java.util.Set;
44 import javax.servlet.http.HttpServletRequest;
45
46 import javax.validation.ConstraintViolation;
47 import javax.validation.Validation;
48 import javax.validation.Validator;
49 import javax.validation.ValidatorFactory;
50 import org.json.JSONObject;
51 import org.onap.portalapp.portal.controller.AppsController;
52 import org.onap.portalapp.portal.domain.EPUser;
53 import org.onap.portalapp.portal.ecomp.model.PortalRestResponse;
54 import org.onap.portalapp.portal.ecomp.model.PortalRestStatusEnum;
55 import org.onap.portalapp.portal.logging.aop.EPAuditLog;
56 import org.onap.portalapp.portal.service.AdminRolesService;
57 import org.onap.portalapp.portal.service.EPAppService;
58 import org.onap.portalapp.portal.service.PersUserAppService;
59 import org.onap.portalapp.portal.service.UserService;
60 import org.onap.portalapp.util.EPUserUtils;
61 import org.onap.portalapp.validation.SecureString;
62 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
63 import org.springframework.beans.factory.annotation.Autowired;
64 import org.springframework.context.annotation.EnableAspectJAutoProxy;
65 import org.springframework.web.bind.annotation.PathVariable;
66 import org.springframework.web.bind.annotation.RequestBody;
67 import org.springframework.web.bind.annotation.RequestMapping;
68 import org.springframework.web.bind.annotation.RequestMethod;
69 import org.springframework.web.bind.annotation.RestController;
70
71 @RestController
72 @org.springframework.context.annotation.Configuration
73 @EnableAspectJAutoProxy
74 @EPAuditLog
75 public class AppsOSController extends AppsController {
76         private static final ValidatorFactory validatorFactory = Validation.buildDefaultValidatorFactory();
77         
78         static final String FAILURE = "failure";
79         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppsOSController.class);
80
81         @Autowired
82         AdminRolesService adminRolesService;
83         @Autowired
84         EPAppService appService;
85         @Autowired
86         PersUserAppService persUserAppService;
87         @Autowired
88         UserService userService;
89
90         
91         
92         /**
93          * Create new application's contact us details.
94          * 
95          * @param contactUs
96          * @return
97          */
98         @RequestMapping(value = "/portalApi/saveNewUser", method = RequestMethod.POST, produces = "application/json")
99         public PortalRestResponse<String> saveNewUser(HttpServletRequest request,@RequestBody EPUser newUser) {
100                 EPUser user = EPUserUtils.getUserSession(request);
101                 if (newUser == null)
102                         return new PortalRestResponse<String>(PortalRestStatusEnum.ERROR, FAILURE,
103                                         "New User cannot be null or empty");
104                 
105                 if (!(adminRolesService.isSuperAdmin(user) || adminRolesService.isAccountAdmin(user))){
106                         if(!user.getLoginId().equalsIgnoreCase(newUser.getLoginId()))
107                                 return new PortalRestResponse<String>(PortalRestStatusEnum.ERROR, FAILURE,
108                                                 "UnAuthorized");
109                 }
110                         
111         String checkDuplicate = request.getParameter("isCheck");
112                 String saveNewUser = FAILURE;
113                 try {
114                         saveNewUser = userService.saveNewUser(newUser,checkDuplicate);
115                 } catch (Exception e) {
116                         return new PortalRestResponse<String>(PortalRestStatusEnum.ERROR, saveNewUser, e.getMessage());
117                 }
118                 return new PortalRestResponse<String>(PortalRestStatusEnum.OK, saveNewUser, "");
119         }
120         
121         @RequestMapping(value = { "/portalApi/currentUserProfile/{loginId}" }, method = RequestMethod.GET, produces = "application/json")
122         public String getCurrentUserProfile(HttpServletRequest request, @PathVariable("loginId") String loginId) {
123
124                 if(loginId != null){
125                         Validator validator = validatorFactory.getValidator();
126                         SecureString secureString = new SecureString(loginId);
127                         Set<ConstraintViolation<SecureString>> constraintViolations = validator.validate(secureString);
128
129                         if (!constraintViolations.isEmpty()){
130                                 return "loginId is not valid";
131                         }
132                 }
133
134                 
135                 Map<String,String> map = new HashMap<>();
136                 EPUser user;
137                 try {
138                          user = (EPUser) userService.getUserByUserId(loginId).get(0);
139                          map.put("firstName", user.getFirstName());
140                      map.put("lastName", user.getLastName());
141                      map.put("email", user.getEmail());
142                          map.put("loginId", user.getLoginId());
143                          map.put("loginPwd",user.getLoginPwd());
144                          map.put("middleInitial",user.getMiddleInitial());
145                 } catch (Exception e) {
146                         logger.error(EELFLoggerDelegate.errorLogger, "Failed to get user info", e);
147                 }
148
149                 JSONObject j = new JSONObject(map);
150                 return j.toString();
151         }
152
153 }