5c1c84b5d402cf8032af63856e47ed31a8a521ac
[portal.git] / portal-BE / src / main / java / org / onap / portal / service / fn / FnUserService.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.service.fn;
42
43 import com.fasterxml.jackson.core.JsonProcessingException;
44 import com.fasterxml.jackson.databind.ObjectMapper;
45 import java.security.Principal;
46 import java.util.ArrayList;
47 import java.util.List;
48 import java.util.Optional;
49 import org.onap.portal.controller.UserRolesController;
50 import org.onap.portal.dao.fn.FnUserDao;
51 import org.onap.portal.domain.db.fn.FnUser;
52 import org.onap.portal.domain.dto.transport.UserWithNameSurnameTitle;
53 import org.onap.portal.utils.EcompPortalUtils;
54 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
55 import org.springframework.beans.factory.annotation.Autowired;
56 import org.springframework.context.annotation.EnableAspectJAutoProxy;
57 import org.springframework.security.core.userdetails.UserDetailsService;
58 import org.springframework.security.core.userdetails.UsernameNotFoundException;
59 import org.springframework.stereotype.Service;
60 import org.springframework.transaction.annotation.Transactional;
61
62 @Service
63 @EnableAspectJAutoProxy
64 @Transactional
65 public class FnUserService implements UserDetailsService {
66
67        private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(FnUserService.class);
68
69        private FnUserDao fnUserDao;
70
71        @Autowired
72        public FnUserService(FnUserDao fnUserDao) {
73               this.fnUserDao = fnUserDao;
74        }
75
76        public FnUser saveFnUser(final Principal principal, final FnUser fnUser) {
77               return fnUserDao.save(fnUser);
78        }
79
80        @Override
81        public FnUser loadUserByUsername(final String username) throws UsernameNotFoundException {
82               Optional<FnUser> fnUser = fnUserDao.findByLoginId(username);
83               if (fnUser.isPresent()) {
84                      return fnUser.get();
85               } else {
86                      throw new UsernameNotFoundException("User not found for username: " + username);
87               }
88        }
89
90        public Optional<FnUser> getUser(final Long id) {
91               return Optional.of(fnUserDao.getOne(id));
92        }
93
94        List<FnUser> getUserWithOrgUserId(final String orgUserIdValue) {
95               return fnUserDao.getUserWithOrgUserId(orgUserIdValue).orElse(new ArrayList<>());
96        }
97
98        List<FnUser> getUsersByOrgIds(final List<String> orgIds) {
99               return fnUserDao.getUsersByOrgIds(orgIds).orElse(new ArrayList<>());
100        }
101
102
103        List<FnUser> getActiveUsers() {
104               return fnUserDao.getActiveUsers().orElse(new ArrayList<>());
105        }
106
107        public void deleteUser(final FnUser fnUser) {
108               fnUserDao.delete(fnUser);
109        }
110
111        public boolean existById(final Long userId) {
112               return fnUserDao.existsById(userId);
113        }
114
115        public List<FnUser> findAll() {
116               return fnUserDao.findAll();
117        }
118        }