Seperating usecase test suite dependencies
[integration/csit.git] / plans / usecases-pnf-sw-upgrade / pnf-sw-upgrade / sorch / simulator / common / src / main / java / org / onap / so / simulator / configuration / SimulatorSecurityConfigurer.java
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.slf4j.Logger;
25 import org.slf4j.LoggerFactory;
26 import org.springframework.beans.factory.annotation.Autowired;
27 import org.springframework.context.annotation.Bean;
28 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
29 import org.springframework.security.config.annotation.authentication.configurers.provisioning.InMemoryUserDetailsManagerConfigurer;
30 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
31 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
32
33 /**
34  * @author waqas.ikram@ericsson.com
35  *
36  */
37 public abstract class SimulatorSecurityConfigurer extends WebSecurityConfigurerAdapter {
38     private static final Logger LOGGER = LoggerFactory.getLogger(SimulatorSecurityConfigurer.class);
39
40
41     private final List<User> users;
42
43     public SimulatorSecurityConfigurer(final List<User> users) {
44         this.users = users;
45     }
46
47     @Bean
48     public BCryptPasswordEncoder passwordEncoder() {
49         return new BCryptPasswordEncoder();
50     }
51
52     @Autowired
53     public void configureGlobal(final AuthenticationManagerBuilder auth) throws Exception {
54         final InMemoryUserDetailsManagerConfigurer<AuthenticationManagerBuilder> inMemoryAuthentication =
55                 auth.inMemoryAuthentication().passwordEncoder(passwordEncoder());
56         for (int index = 0; index < users.size(); index++) {
57             final User user = users.get(index);
58             LOGGER.info("Adding {} to InMemoryUserDetailsManager ...", user);
59             inMemoryAuthentication.withUser(user.getUsername()).password(user.getPassword()).roles(user.getRole());
60             if (index < users.size()) {
61                 inMemoryAuthentication.and();
62             }
63         }
64     }
65 }