Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 32 additions & 16 deletions src/main/java/com/back/global/security/SecurityConfig.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.back.global.security;

import com.back.global.rsData.RsData;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
Expand All @@ -17,6 +19,9 @@

import java.util.Arrays;

import static org.springframework.http.HttpMethod.GET;
import static org.springframework.http.HttpMethod.POST;

@Configuration
@EnableWebSecurity
@EnableMethodSecurity
Expand Down Expand Up @@ -59,34 +64,38 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.addFilterBefore(customAuthenticationFilter, UsernamePasswordAuthenticationFilter.class)
.authorizeHttpRequests(auth -> auth


.requestMatchers("/user/auth/logout").authenticated()
/*
.requestMatchers("/").permitAll()
.requestMatchers("/h2-console/**").permitAll()
.requestMatchers("/actuator/**").permitAll()
// OAuth, GET POST 둘 다 사용
.requestMatchers("/oauth2/**").permitAll()
.requestMatchers("/login/oauth2/**").permitAll()
.requestMatchers("/swagger-ui/**", "/api-docs/**").permitAll()
.requestMatchers("/user/auth/refresh").permitAll()

//르프레시 갱신 및 칵테일 검색
.requestMatchers(POST, "/user/auth/refresh").permitAll()
.requestMatchers(POST, "/cocktails/search").permitAll()

// share은 인증 필요
.requestMatchers(GET, "/cocktails/{id}/share").authenticated()

// 권한 불필요 - 조회 API
.requestMatchers(GET, "/").permitAll()
.requestMatchers(GET, "/actuator/**").permitAll()

.requestMatchers(GET, "/cocktails/**").permitAll()
.requestMatchers(POST, "/cocktails/search").permitAll()

.requestMatchers(GET, "/posts").permitAll()
.requestMatchers(GET, "/posts/{postId}").permitAll()
.requestMatchers(GET, "/posts/{postId}/comments").permitAll()
.requestMatchers(GET, "/posts/{postId}/comments/{commentId}").permitAll()
.requestMatchers(GET, "/cocktails/{cocktailId}/comments").permitAll()
.requestMatchers(GET, "/cocktails/{cocktailId}/comments/{cocktailCommentId}").permitAll()
.requestMatchers(GET, "/category").permitAll()

// 회원 or 인증된 사용자만 가능
.requestMatchers("/admin/**").hasRole("ADMIN")
// 나머지 모든 API는 인증 필요
.anyRequest().authenticated()
*/
// 개발 편의성을 위해 모든 요청 허용
.anyRequest().permitAll()


// 회원 or 인증된 사용자만 가능
// .requestMatchers("/admin/**").hasRole("ADMIN")

)
.formLogin(AbstractHttpConfigurer::disable)
.httpBasic(AbstractHttpConfigurer::disable)
Expand All @@ -104,12 +113,19 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.authenticationEntryPoint((request, response, authException) -> {
response.setContentType("application/json;charset=UTF-8");
response.setStatus(401);
response.getWriter().write("{\"code\":401,\"message\":\"로그인 후 이용해주세요.\"}");

RsData<Void> rsData = RsData.of(401, "로그인 후 이용해주세요.");

ObjectMapper mapper = new ObjectMapper();
response.getWriter().write(mapper.writeValueAsString(rsData));
})
.accessDeniedHandler((request, response, accessDeniedException) -> {
response.setContentType("application/json;charset=UTF-8");
response.setStatus(403);
response.getWriter().write("{\"code\":403,\"message\":\"권한이 없습니다.\"}");
RsData<Void> rsData = RsData.of(403, "권한이 없습니다.");

ObjectMapper mapper = new ObjectMapper();
response.getWriter().write(mapper.writeValueAsString(rsData));
})
)
.headers(headers -> headers.frameOptions(HeadersConfigurer.FrameOptionsConfig::sameOrigin));
Expand Down