source: sources/app/src/main/java/parkup/configs/webConfigs/WebSecurityConfig.java@ 9dd526f

Last change on this file since 9dd526f was 9dd526f, checked in by andrejTavchioski <andrej.tavchioski@…>, 2 years ago

backend refactoring

  • Property mode set to 100644
File size: 3.6 KB
Line 
1package parkup.configs.webConfigs;
2
3import org.springframework.context.annotation.Bean;
4import org.springframework.context.annotation.Configuration;
5import org.springframework.security.authentication.AuthenticationManager;
6import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
7import org.springframework.security.config.annotation.web.builders.HttpSecurity;
8import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
9import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
10import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
11import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
12import org.springframework.web.cors.CorsConfiguration;
13import parkup.configs.CustomAuthenticationFilter;
14import parkup.configs.CustomAuthorizationFilter;
15import parkup.services.AdministratorService;
16import parkup.services.RegisteredUserService;
17import parkup.services.WorkerService;
18
19import static org.springframework.security.config.http.SessionCreationPolicy.STATELESS;
20
21@EnableWebSecurity
22@Configuration
23public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
24 private final WorkerService workerService;
25 private final BCryptPasswordEncoder bCryptPasswordEncoder;
26 private final RegisteredUserService registeredUserService;
27 private final AdministratorService administratorService;
28
29 public WebSecurityConfig(WorkerService workerService, BCryptPasswordEncoder bCryptPasswordEncoder, RegisteredUserService registeredUserService, AdministratorService administratorService) {
30 this.workerService = workerService;
31 this.bCryptPasswordEncoder = bCryptPasswordEncoder;
32 this.registeredUserService = registeredUserService;
33 this.administratorService = administratorService;
34 }
35
36 @Override
37 protected void configure(AuthenticationManagerBuilder auth) throws Exception {
38 auth.userDetailsService(registeredUserService).passwordEncoder(bCryptPasswordEncoder);
39 auth.userDetailsService(workerService).passwordEncoder(bCryptPasswordEncoder);
40 auth.userDetailsService(administratorService).passwordEncoder(bCryptPasswordEncoder);
41 }
42
43 @Override
44 protected void configure(HttpSecurity http) throws Exception {
45 CustomAuthenticationFilter customAuthenticationFilter = new CustomAuthenticationFilter(authenticationManagerBean());
46 customAuthenticationFilter.setFilterProcessesUrl("/api/login");
47 http.csrf().disable();
48 http.cors().configurationSource(request -> new CorsConfiguration().applyPermitDefaultValues());
49 http.sessionManagement().sessionCreationPolicy(STATELESS);
50 http.authorizeRequests().antMatchers("/**").permitAll();
51// http.authorizeRequests().antMatchers("/user/registration/**", "/home/markers","/home/getLocation/**","/api/login/**","/home").permitAll();
52// http.authorizeRequests().antMatchers( "/user/setFavourite/**","user/favourites").hasAuthority("ROLE_USER");
53// http.authorizeRequests().antMatchers( "/home/**").hasAuthority("ROLE_ADMIN");
54// http.authorizeRequests().anyRequest().authenticated();
55 http.addFilter(customAuthenticationFilter);
56 http.addFilterBefore(new CustomAuthorizationFilter(), UsernamePasswordAuthenticationFilter.class);
57 }
58
59 @Bean
60 @Override
61 public AuthenticationManager authenticationManagerBean() throws Exception {
62 return super.authenticationManagerBean();
63 }
64
65
66 }
Note: See TracBrowser for help on using the repository browser.