c84c7e8603a9426f48899e05543dcfefb2cbdd51
[so.git] / common / src / main / java / org / onap / so / security / WebSecurityConfigImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.security;
24
25 import org.springframework.context.annotation.Bean;
26 import org.springframework.context.annotation.Configuration;
27 import org.springframework.context.annotation.Profile;
28 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
29 import org.springframework.security.config.annotation.web.builders.HttpSecurity;
30 import org.springframework.security.config.annotation.web.builders.WebSecurity;
31 import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
32 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
33 import org.springframework.security.web.firewall.StrictHttpFirewall;
34 import org.springframework.util.StringUtils;
35
36 @EnableWebSecurity
37 @Configuration()
38 public class WebSecurityConfigImpl extends WebSecurityConfig {
39
40     @Profile({"basic"})
41     @Bean
42     public WebSecurityConfigurerAdapter basicAuth() {
43         return new WebSecurityConfigurerAdapter() {
44             @Override
45             protected void configure(HttpSecurity http) throws Exception {
46                 http.csrf().disable().authorizeRequests().antMatchers("/manage/health", "/manage/info").permitAll()
47                         .antMatchers("/**").hasAnyRole(StringUtils.collectionToDelimitedString(getRoles(), ",")).and()
48                         .httpBasic();
49             }
50
51             @Override
52             public void configure(WebSecurity web) throws Exception {
53                 super.configure(web);
54                 StrictHttpFirewall firewall = new MSOSpringFirewall();
55                 web.httpFirewall(firewall);
56             }
57
58             @Override
59             protected void configure(AuthenticationManagerBuilder auth) throws Exception {
60                 auth.userDetailsService(WebSecurityConfigImpl.this.userDetailsService())
61                         .passwordEncoder(WebSecurityConfigImpl.this.passwordEncoder());
62             }
63         };
64     }
65
66     @Profile({"aaf", "test"})
67     @Bean
68     public WebSecurityConfigurerAdapter noAuth() {
69         return new WebSecurityConfigurerAdapter() {
70             @Override
71             public void configure(WebSecurity web) throws Exception {
72                 web.ignoring().antMatchers("/**");
73                 StrictHttpFirewall firewall = new MSOSpringFirewall();
74                 web.httpFirewall(firewall);
75             }
76         };
77     }
78
79 }