UserController tests up
[portal.git] / portal-BE / src / main / java / org / onap / portal / controller / UserController.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ===================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  *
39  */
40
41 package org.onap.portal.controller;
42
43 import java.security.Principal;
44 import lombok.NoArgsConstructor;
45 import org.onap.portal.domain.db.fn.FnUser;
46 import org.onap.portal.domain.dto.PortalRestResponse;
47 import org.onap.portal.domain.dto.PortalRestStatusEnum;
48 import org.onap.portal.domain.dto.ProfileDetail;
49 import org.onap.portal.service.fn.FnUserService;
50 import org.onap.portal.validation.DataValidator;
51 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
52 import org.onap.portalsdk.core.onboarding.util.CipherUtil;
53 import org.springframework.beans.factory.annotation.Autowired;
54 import org.springframework.security.core.session.SessionRegistry;
55 import org.springframework.stereotype.Controller;
56 import org.springframework.web.bind.annotation.RequestBody;
57 import org.springframework.web.bind.annotation.RequestMapping;
58 import org.springframework.web.bind.annotation.RequestMethod;
59 import org.springframework.web.bind.annotation.RestController;
60
61 @RestController
62 @Controller
63 public class UserController {
64
65        private static final String HIDDEN_DEFAULT_PASSWORD = "*****";
66        private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(UserController.class);
67
68        private final FnUserService userService;
69        private final DataValidator dataValidator;
70
71        @Autowired
72        public UserController(final FnUserService userService,
73                final DataValidator dataValidator) {
74               this.userService = userService;
75               this.dataValidator = dataValidator;
76        }
77
78        @RequestMapping(value = {"/portalApi/loggedinUser"}, method = RequestMethod.GET, produces = "application/json")
79        public PortalRestResponse<ProfileDetail> getLoggedinUser(Principal principal) {
80               PortalRestResponse<ProfileDetail> portalRestResponse = null;
81               try {
82                      FnUser user = userService.loadUserByUsername(principal.getName());
83                      ProfileDetail profileDetail = new ProfileDetail(user.getFirstName(), user.getLastName(),
84                              user.getMiddleName(), user.getEmail(), user.getLoginId(), HIDDEN_DEFAULT_PASSWORD);
85                      portalRestResponse = new PortalRestResponse<>(PortalRestStatusEnum.OK, "success",
86                              profileDetail);
87               } catch (Exception e) {
88                      portalRestResponse = new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.getMessage(),
89                              null);
90                      logger.error(EELFLoggerDelegate.errorLogger, "getLoggedinUser failed", e);
91               }
92               return portalRestResponse;
93        }
94
95        @RequestMapping(value = {
96                "/portalApi/modifyLoggedinUser"}, method = RequestMethod.PUT, produces = "application/json")
97        public PortalRestResponse<String> modifyLoggedinUser(Principal principal,
98                @RequestBody ProfileDetail profileDetail) {
99               PortalRestResponse<String> portalRestResponse = null;
100               try {
101                      String errorMsg = "";
102                      if (!dataValidator.isValid(profileDetail)) {
103                             errorMsg = "Required field(s) is missing";
104                             portalRestResponse = new PortalRestResponse<>(PortalRestStatusEnum.ERROR, dataValidator.getConstraintViolationsString(profileDetail), null);
105                             logger.error(EELFLoggerDelegate.errorLogger, "modifyLoggedinUser failed", errorMsg);
106                      } else {
107                             FnUser user = userService.loadUserByUsername(principal.getName());
108                             user.setFirstName(profileDetail.getFirstName());
109                             user.setLastName(profileDetail.getLastName());
110                             user.setEmail(profileDetail.getEmail());
111                             user.setMiddleName(profileDetail.getMiddleName());
112                             user.setLoginId(profileDetail.getLoginId());
113                             if (!HIDDEN_DEFAULT_PASSWORD.equals(profileDetail.getLoginPassword())) {
114                                    user.setLoginPwd(CipherUtil.encryptPKC(profileDetail.getLoginPassword()));
115                             }
116                             userService.saveFnUser(principal, user);
117                             // Update user info in the session
118                             portalRestResponse = new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", null);
119                      }
120               } catch (Exception e) {
121                      portalRestResponse = new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null);
122                      logger.error(EELFLoggerDelegate.errorLogger, "modifyLoggedinUser failed", e);
123               }
124               return portalRestResponse;
125        }
126 }