Fix for SO-2598
[so.git] / common / src / main / java / org / onap / so / security / SoUserCredentialConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  * 
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  * 
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * 
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.security;
21
22 import java.util.ArrayList;
23 import java.util.List;
24 import javax.annotation.PostConstruct;
25 import org.springframework.boot.context.properties.ConfigurationProperties;
26 import org.springframework.context.annotation.Bean;
27 import org.springframework.security.core.userdetails.UserDetailsService;
28 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
29 import org.springframework.stereotype.Component;
30
31 /**
32  * @author Waqas Ikram (waqas.ikram@est.tech)
33  *
34  */
35 @Component
36 @ConfigurationProperties(prefix = "spring.security")
37 public class SoUserCredentialConfiguration {
38
39     private List<UserCredentials> credentials = new ArrayList<>();
40     private final List<String> roles = new ArrayList<>();
41
42     public List<String> getRoles() {
43         return roles;
44     }
45
46     @PostConstruct
47     private void addRoles() {
48         for (int i = 0; i < credentials.size(); i++) {
49             roles.add(credentials.get(i).getRole());
50         }
51     }
52
53     public List<UserCredentials> getUsercredentials() {
54         return credentials;
55     }
56
57     public void setUsercredentials(final List<UserCredentials> usercredentials) {
58         if (usercredentials != null) {
59             this.credentials = usercredentials;
60         }
61     }
62
63     @Bean
64     public UserDetailsService userDetailsService() {
65         return new UserDetailsServiceImpl();
66     }
67
68     @Bean
69     public BCryptPasswordEncoder passwordEncoder() {
70         return new BCryptPasswordEncoder();
71     }
72 }