11eec46f41993fdff37e982fc93555eba968ffd8
[so.git] / common / src / main / java / org / onap / so / security / WebSecurityConfig.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.security;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import javax.annotation.PostConstruct;
27
28 import org.springframework.boot.context.properties.ConfigurationProperties;
29 import org.springframework.context.annotation.Bean;
30 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
31 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
32 import org.springframework.security.core.userdetails.UserDetailsService;
33 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
34
35
36 @ConfigurationProperties(prefix = "spring.security")
37 public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
38         
39         private List<UserCredentials> credentials;
40         private 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(List<UserCredentials> usercredentials) {
58                 this.credentials = usercredentials;
59         }
60
61         @Bean
62         public UserDetailsService userDetailsService() {
63                 return new UserDetailsServiceImpl();
64         }
65
66         @Bean
67         public BCryptPasswordEncoder passwordEncoder() {
68                 return new BCryptPasswordEncoder();
69         }
70
71         @Override
72         protected void configure(AuthenticationManagerBuilder auth) throws Exception {
73                 auth.userDetailsService(userDetailsService()).passwordEncoder(passwordEncoder());
74         }
75
76 }