Fix Sonar complains
[oam/nf-oam-adopter.git] / ves-nf-oam-adopter / ves-nf-oam-adopter-mock / src / main / java / org / o / ran / oam / nf / oam / adopter / mock / app / config / BasicAuthConfiguration.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.mock.app.config;
21
22 import org.o.ran.oam.nf.oam.adopter.mock.app.properties.SecurityProperties;
23 import org.springframework.beans.factory.annotation.Autowired;
24 import org.springframework.context.annotation.Bean;
25 import org.springframework.core.annotation.Order;
26 import org.springframework.security.authentication.AuthenticationManager;
27 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
28 import org.springframework.security.config.annotation.web.builders.HttpSecurity;
29 import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
30 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
31
32 @EnableWebSecurity
33 @Order(1)
34 public class BasicAuthConfiguration extends WebSecurityConfigurerAdapter {
35
36     private static final String ADMIN_ROLE = "ADMIN";
37     private final SecurityProperties security;
38
39     @Autowired
40     public BasicAuthConfiguration(final SecurityProperties security) {
41         super();
42         this.security = security;
43     }
44
45     @Override
46     protected void configure(final HttpSecurity http) throws Exception {
47         http.requiresChannel().anyRequest().requiresSecure();
48         http.csrf().disable()
49                 .antMatcher("/auth/**")
50                 .authorizeRequests().anyRequest().authenticated()
51                 .and()
52                 .httpBasic();
53     }
54
55     @Override
56     @Bean
57     public AuthenticationManager authenticationManagerBean() throws Exception {
58         return super.authenticationManagerBean();
59     }
60
61     /**
62      * Configure default in-memory user.
63      */
64     @Autowired
65     public void configureGlobal(final AuthenticationManagerBuilder auth) throws Exception {
66         auth.inMemoryAuthentication()
67                 .withUser(security.getUsername())
68                 .password("{noop}" + security.getPassword())
69                 .roles(ADMIN_ROLE);
70     }
71 }