Fix Sonar complains
[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.properties.ServerProperties;
23 import org.springframework.beans.factory.annotation.Autowired;
24 import org.springframework.boot.context.properties.EnableConfigurationProperties;
25 import org.springframework.context.annotation.Bean;
26 import org.springframework.context.annotation.Configuration;
27 import org.springframework.security.authentication.AuthenticationManager;
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.configuration.WebSecurityConfigurerAdapter;
31
32 @Configuration
33 @EnableConfigurationProperties
34 public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
35     private static final String ADMIN_ROLE = "ADMIN";
36     private final ServerProperties properties;
37
38     @Autowired
39     public SecurityConfiguration(final ServerProperties properties) {
40         this.properties = properties;
41     }
42
43     @Override
44     protected void configure(final HttpSecurity http) throws Exception {
45         http.requiresChannel().anyRequest().requiresSecure();
46         http.csrf().disable()
47                 .antMatcher("/adapters/**")
48                 .authorizeRequests().anyRequest()
49                 .hasRole(ADMIN_ROLE).and()
50                 .httpBasic();
51     }
52
53     @Bean
54     @Autowired
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 }