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
 
   9  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  17  * SPDX-License-Identifier: Apache-2.0
 
  18  * ============LICENSE_END=========================================================
 
  20 package org.onap.so.simulator.configuration;
 
  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;
 
  32  * @author waqas.ikram@ericsson.com
 
  35 public abstract class SimulatorSecurityConfigurer extends WebSecurityConfigurerAdapter {
 
  37     private final List<User> users;
 
  39     public SimulatorSecurityConfigurer(final List<User> users) {
 
  44     public BCryptPasswordEncoder passwordEncoder() {
 
  45         return new BCryptPasswordEncoder();
 
  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();