mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-08 06:44:29 +08:00
61 lines
3.1 KiB
Java
61 lines
3.1 KiB
Java
package com.wisemapping.config.rest;
|
|
|
|
import com.wisemapping.filter.JwtAuthenticationFilter;
|
|
import com.wisemapping.rest.MindmapController;
|
|
import jakarta.servlet.http.HttpServletResponse;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Import;
|
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
|
|
import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer;
|
|
import org.springframework.security.config.http.SessionCreationPolicy;
|
|
import org.springframework.security.web.SecurityFilterChain;
|
|
import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
|
|
import org.springframework.security.web.servlet.util.matcher.MvcRequestMatcher;
|
|
import org.springframework.web.servlet.handler.HandlerMappingIntrospector;
|
|
|
|
import static org.springframework.security.config.Customizer.withDefaults;
|
|
|
|
|
|
@SpringBootApplication(scanBasePackageClasses = MindmapController.class)
|
|
@Import({InterceptorsConfig.class})
|
|
@EnableWebSecurity
|
|
public class RestAppConfig {
|
|
|
|
@Autowired
|
|
private JwtAuthenticationFilter jwtAuthenticationFilter;
|
|
|
|
@Bean
|
|
MvcRequestMatcher.Builder mvc(HandlerMappingIntrospector introspector) {
|
|
return new MvcRequestMatcher.Builder(introspector);
|
|
}
|
|
|
|
@Bean
|
|
SecurityFilterChain apiSecurityFilterChain(@NotNull final HttpSecurity http, @NotNull final MvcRequestMatcher.Builder mvc) throws Exception {
|
|
return http
|
|
.securityMatcher("/**")
|
|
.addFilterAfter(jwtAuthenticationFilter, UsernamePasswordAuthenticationFilter.class)
|
|
.authorizeHttpRequests(auth -> auth
|
|
.requestMatchers(mvc.pattern("/api/restful/users/")).permitAll()
|
|
.requestMatchers(mvc.pattern("/api/restful/authenticate")).permitAll()
|
|
.requestMatchers(mvc.pattern("/api/restful/users/resetPassword")).permitAll()
|
|
.requestMatchers(mvc.pattern("/api/restful/oauth2/googlecallback")).permitAll()
|
|
.requestMatchers(mvc.pattern("/api/restful/oauth2/confirmaccountsync")).permitAll()
|
|
.requestMatchers(mvc.pattern("/api/restful/admin/**")).hasAnyRole("ADMIN")
|
|
.requestMatchers(mvc.pattern("/**")).hasAnyRole("USER", "ADMIN")
|
|
.anyRequest().authenticated()
|
|
)
|
|
.logout(logout -> logout.permitAll()
|
|
.logoutSuccessHandler((request, response, authentication) -> {
|
|
response.setStatus(HttpServletResponse.SC_OK);
|
|
}))
|
|
.csrf(AbstractHttpConfigurer::disable)
|
|
.sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
|
|
.httpBasic(withDefaults())
|
|
.build();
|
|
}
|
|
}
|