1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.ym.config;
- import com.ym.mec.common.security.BaseAccessDeniedHandler;
- import com.ym.mec.common.security.BaseAuthenticationEntryPoint;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.security.config.annotation.web.builders.HttpSecurity;
- import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer;
- import org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfigurerAdapter;
- import org.springframework.security.oauth2.config.annotation.web.configurers.ResourceServerSecurityConfigurer;
- @Configuration
- @EnableResourceServer
- public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
- @Autowired
- private BaseAccessDeniedHandler baseAccessDeniedHandler;
- @Autowired
- private BaseAuthenticationEntryPoint baseAuthenticationEntryPoint;
- @Override
- public void configure(HttpSecurity http) throws Exception {
- http.authorizeRequests().antMatchers("/v2/api-docs", "/user/register",
- "/group/join", "/group/create", "/group/quit", "/room/leave", "/room/statusSync",
- "/room/statusImMsg", "/group/batchDismiss", "/private/send", "/group/send", "/user/tencentImCallback",
- "/group/dismiss", "/room/statusImMsg", "/history/get", "/user/statusImUser", "/liveRoom/recordSync",
- "/liveRoom/publishRoomMsg", "/liveRoom/destroy", "/liveRoom/create", "/liveRoom/startRecord",
- "/liveRoom/stopRecord", "/liveRoom/userExistInRoom","/liveRoom/checkOnline","/room/statusSyncTencent",
- "/user/tencentStreamEventCallback", "/user/tencentStreamRecordCallback", "/user/tencentStreamExceptionCallback",
- "/liveRoom/addUserUnableSpeak","/liveRoom/removeUserUnableSpeak","/liveRoom/syncChatRoomStatus","/liveRoom/tencentImCallback")
- .permitAll().anyRequest().authenticated().and().csrf().disable();
- }
- @Override
- public void configure(ResourceServerSecurityConfigurer resources) throws Exception {
- resources.authenticationEntryPoint(baseAuthenticationEntryPoint).accessDeniedHandler(baseAccessDeniedHandler);
- }
- }
|