OAM NF Adopter Application
[oam/nf-oam-adopter.git] / ves-nf-oam-adopter / ves-nf-oam-adopter-app / src / main / java / org / o / ran / oam / nf / oam / adopter / app / config / SecurityConfiguration.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  O-RAN-SC
4  *  ================================================================================
5  *  Copyright © 2021 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.o.ran.oam.nf.oam.adopter.app.config;
21
22 import org.o.ran.oam.nf.oam.adopter.app.ServerProperties;
23 import org.o.ran.oam.nf.oam.adopter.app.SslProperties;
24 import org.springframework.beans.factory.annotation.Autowired;
25 import org.springframework.boot.context.properties.EnableConfigurationProperties;
26 import org.springframework.context.annotation.Bean;
27 import org.springframework.context.annotation.Configuration;
28 import org.springframework.security.authentication.AuthenticationManager;
29 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
30 import org.springframework.security.config.annotation.web.builders.HttpSecurity;
31 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
32
33 @Configuration
34 @EnableConfigurationProperties
35 public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
36     private static final String ADMIN_ROLE = "ADMIN";
37     private final ServerProperties properties;
38
39     @Autowired
40     public SecurityConfiguration(final ServerProperties properties) {
41         this.properties = properties;
42     }
43
44     @Override
45     protected void configure(final HttpSecurity http) throws Exception {
46         final SslProperties ssl = properties.getSsl();
47         if (ssl != null && ssl.getEnabled() != null && ssl.getEnabled()) {
48             http.requiresChannel().anyRequest().requiresSecure();
49         }
50         http.csrf().disable().antMatcher("/adapters/**").authorizeRequests().anyRequest().hasRole(ADMIN_ROLE).and()
51                 .httpBasic();
52     }
53
54     @Bean
55     public AuthenticationManager authenticationManagerBean() throws Exception {
56         return super.authenticationManagerBean();
57     }
58
59     @Autowired
60     public void configureGlobal(final AuthenticationManagerBuilder auth) throws Exception {
61         auth.inMemoryAuthentication().withUser(properties.getUsername()).password("{noop}" + properties.getPassword())
62                 .roles(ADMIN_ROLE);
63     }
64 }