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

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

backend refactoring

  • Property mode set to 100644
File size: 3.6 KB
RevLine 
[9ff45d6]1package parkup.configs.webConfigs;
[ce6ad22]2
3import org.springframework.context.annotation.Bean;
4import org.springframework.context.annotation.Configuration;
[9dd526f]5import org.springframework.security.authentication.AuthenticationManager;
[ce6ad22]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;
[9dd526f]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;
[ce6ad22]20
21@EnableWebSecurity
[97fbc67]22@Configuration
[ce6ad22]23public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
[9dd526f]24 private final WorkerService workerService;
[97fbc67]25 private final BCryptPasswordEncoder bCryptPasswordEncoder;
[9dd526f]26 private final RegisteredUserService registeredUserService;
27 private final AdministratorService administratorService;
[ce6ad22]28
[9dd526f]29 public WebSecurityConfig(WorkerService workerService, BCryptPasswordEncoder bCryptPasswordEncoder, RegisteredUserService registeredUserService, AdministratorService administratorService) {
30 this.workerService = workerService;
[97fbc67]31 this.bCryptPasswordEncoder = bCryptPasswordEncoder;
[9dd526f]32 this.registeredUserService = registeredUserService;
33 this.administratorService = administratorService;
[97fbc67]34 }
[ce6ad22]35
[97fbc67]36 @Override
[9dd526f]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);
[97fbc67]41 }
[ce6ad22]42
[97fbc67]43 @Override
[9dd526f]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);
[97fbc67]57 }
[ce6ad22]58
[97fbc67]59 @Bean
[9dd526f]60 @Override
61 public AuthenticationManager authenticationManagerBean() throws Exception {
62 return super.authenticationManagerBean();
[97fbc67]63 }
64
[ce6ad22]65
66 }
Note: See TracBrowser for help on using the repository browser.