21176e0d5dde79f9b66d41ab567c0384ceadf8e3
[so.git] / common / src / main / java / org / onap / so / security / SoBasicWebSecurityConfigurerAdapter.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 org.springframework.beans.factory.annotation.Autowired;
23 import org.springframework.context.annotation.Configuration;
24 import org.springframework.context.annotation.Profile;
25 import org.springframework.core.annotation.Order;
26 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
27 import org.springframework.security.config.annotation.web.builders.HttpSecurity;
28 import org.springframework.security.config.annotation.web.builders.WebSecurity;
29 import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
30 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
31 import org.springframework.security.core.userdetails.UserDetailsService;
32 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
33 import org.springframework.security.web.firewall.StrictHttpFirewall;
34 import org.springframework.util.StringUtils;
35
36 /**
37  * @author Waqas Ikram (waqas.ikram@est.tech)
38  *
39  */
40 @EnableWebSecurity
41 @Configuration
42 @Order(1)
43 @Profile({"basic"})
44 public class SoBasicWebSecurityConfigurerAdapter extends WebSecurityConfigurerAdapter {
45
46     @Autowired
47     private SoUserCredentialConfiguration soUserCredentialConfiguration;
48
49     @Autowired
50     private UserDetailsService userDetailsService;
51
52     @Autowired
53     private BCryptPasswordEncoder passwordEncoder;
54
55     @Override
56     protected void configure(final HttpSecurity http) throws Exception {
57         http.csrf().disable().authorizeRequests().antMatchers("/manage/health", "/manage/info").permitAll()
58                 .antMatchers("/**")
59                 .hasAnyRole(StringUtils.collectionToDelimitedString(soUserCredentialConfiguration.getRoles(), ","))
60                 .and().httpBasic();
61     }
62
63     @Override
64     public void configure(final WebSecurity web) throws Exception {
65         super.configure(web);
66         final StrictHttpFirewall firewall = new MSOSpringFirewall();
67         web.httpFirewall(firewall);
68     }
69
70     @Override
71     protected void configure(final AuthenticationManagerBuilder auth) throws Exception {
72         auth.userDetailsService(userDetailsService).passwordEncoder(passwordEncoder);
73     }
74 }