d2cf004959b3f5da64b162c99b3d513eb67f30f5
[integration/csit.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 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.simulator.configuration;
21
22 import java.util.List;
23 import org.onap.so.simulator.model.User;
24 import org.springframework.beans.factory.annotation.Autowired;
25 import org.springframework.context.annotation.Bean;
26 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
27 import org.springframework.security.config.annotation.authentication.configurers.provisioning.InMemoryUserDetailsManagerConfigurer;
28 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
29 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
30
31 /**
32  * @author waqas.ikram@ericsson.com
33  *
34  */
35 public abstract class SimulatorSecurityConfigurer extends WebSecurityConfigurerAdapter {
36
37     private final List<User> users;
38
39     public SimulatorSecurityConfigurer(final List<User> users) {
40         this.users = users;
41     }
42
43     @Bean
44     public BCryptPasswordEncoder passwordEncoder() {
45         return new BCryptPasswordEncoder();
46     }
47
48     @Autowired
49     public void configureGlobal(final AuthenticationManagerBuilder auth) throws Exception {
50         final InMemoryUserDetailsManagerConfigurer<AuthenticationManagerBuilder> inMemoryAuthentication =
51                 auth.inMemoryAuthentication().passwordEncoder(passwordEncoder());
52         for (int index = 0; index < users.size(); index++) {
53             final User user = users.get(index);
54             inMemoryAuthentication.withUser(user.getUsername()).password(user.getPassword()).roles(user.getRole());
55             if (index < users.size()) {
56                 inMemoryAuthentication.and();
57             }
58         }
59     }
60 }