|
| 1 | +package com.tnt.global.auth; |
| 2 | + |
| 3 | +import java.io.IOException; |
| 4 | +import java.util.List; |
| 5 | + |
| 6 | +import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; |
| 7 | +import org.springframework.security.core.Authentication; |
| 8 | +import org.springframework.security.core.authority.mapping.GrantedAuthoritiesMapper; |
| 9 | +import org.springframework.security.core.authority.mapping.NullAuthoritiesMapper; |
| 10 | +import org.springframework.security.core.context.SecurityContextHolder; |
| 11 | +import org.springframework.security.core.userdetails.User; |
| 12 | +import org.springframework.security.core.userdetails.UserDetails; |
| 13 | +import org.springframework.util.AntPathMatcher; |
| 14 | +import org.springframework.web.filter.OncePerRequestFilter; |
| 15 | + |
| 16 | +import com.tnt.application.auth.SessionService; |
| 17 | + |
| 18 | +import jakarta.servlet.FilterChain; |
| 19 | +import jakarta.servlet.ServletException; |
| 20 | +import jakarta.servlet.http.HttpServletRequest; |
| 21 | +import jakarta.servlet.http.HttpServletResponse; |
| 22 | +import lombok.RequiredArgsConstructor; |
| 23 | +import lombok.extern.slf4j.Slf4j; |
| 24 | + |
| 25 | +@Slf4j |
| 26 | +@RequiredArgsConstructor |
| 27 | +public class SessionAuthenticationFilter extends OncePerRequestFilter { |
| 28 | + |
| 29 | + private final GrantedAuthoritiesMapper authoritiesMapper = new NullAuthoritiesMapper(); |
| 30 | + private final AntPathMatcher pathMatcher = new AntPathMatcher(); |
| 31 | + private final List<String> allowedUris; |
| 32 | + private final SessionService sessionService; |
| 33 | + |
| 34 | + @Override |
| 35 | + protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, |
| 36 | + FilterChain filterChain) throws ServletException, IOException { |
| 37 | + String requestUri = request.getRequestURI(); |
| 38 | + String queryString = request.getQueryString(); |
| 39 | + |
| 40 | + log.info("들어온 요청 - URI: {}, Query: {}, Method: {}", requestUri, queryString != null ? queryString : "쿼리 스트링 없음", |
| 41 | + request.getMethod()); |
| 42 | + |
| 43 | + if (isAllowedUri(requestUri)) { |
| 44 | + log.info("{} 허용 URI. 세션 유효성 검사 스킵.", requestUri); |
| 45 | + |
| 46 | + filterChain.doFilter(request, response); |
| 47 | + return; |
| 48 | + } |
| 49 | + |
| 50 | + try { |
| 51 | + checkSessionAndAuthentication(request); |
| 52 | + } catch (RuntimeException e) { |
| 53 | + log.error("인증 처리 중 에러 발생: ", e); |
| 54 | + |
| 55 | + handleUnauthorizedException(response, e); |
| 56 | + return; |
| 57 | + } |
| 58 | + |
| 59 | + filterChain.doFilter(request, response); |
| 60 | + } |
| 61 | + |
| 62 | + private boolean isAllowedUri(String requestUri) { |
| 63 | + boolean allowed = false; |
| 64 | + |
| 65 | + for (String pattern : allowedUris) { |
| 66 | + if (pathMatcher.match(pattern, requestUri)) { |
| 67 | + allowed = true; |
| 68 | + break; |
| 69 | + } |
| 70 | + } |
| 71 | + |
| 72 | + log.info("URI {} is {}allowed", requestUri, allowed ? "" : "not "); |
| 73 | + |
| 74 | + return allowed; |
| 75 | + } |
| 76 | + |
| 77 | + private void checkSessionAndAuthentication(HttpServletRequest request) { |
| 78 | + String sessionId = sessionService.authenticate(request); |
| 79 | + |
| 80 | + saveAuthentication(Long.parseLong(sessionId)); |
| 81 | + } |
| 82 | + |
| 83 | + private void handleUnauthorizedException(HttpServletResponse response, RuntimeException exception) throws |
| 84 | + IOException { |
| 85 | + log.error("인증 실패: ", exception); |
| 86 | + |
| 87 | + response.setStatus(HttpServletResponse.SC_UNAUTHORIZED); |
| 88 | + response.setContentType("application/json;charset=UTF-8"); |
| 89 | + response.getWriter().write(exception.getMessage()); |
| 90 | + } |
| 91 | + |
| 92 | + private void saveAuthentication(Long sessionId) { |
| 93 | + UserDetails userDetails = User.builder() |
| 94 | + .username(String.valueOf(sessionId)) |
| 95 | + .password("") |
| 96 | + .roles("USER") |
| 97 | + .build(); |
| 98 | + |
| 99 | + Authentication authentication = new UsernamePasswordAuthenticationToken(userDetails, null, |
| 100 | + authoritiesMapper.mapAuthorities(userDetails.getAuthorities())); |
| 101 | + |
| 102 | + SecurityContextHolder.getContext().setAuthentication(authentication); |
| 103 | + |
| 104 | + log.info("시큐리티 컨텍스트에 인증 정보 저장 완료 - SessionId: {}", sessionId); |
| 105 | + } |
| 106 | +} |
0 commit comments