Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TNT-160] feat: 로그아웃 기능 구현 #25

Merged
merged 14 commits into from
Jan 25, 2025
Merged

Conversation

fakerdeft
Copy link
Contributor

📋 Checklist

  • 🔀 PR 제목의 형식을 잘 작성했나요? (e.g. [APP2-77] feat: 회원 인증 Filter 구현)
  • 💯 테스트는 잘 통과했나요?
  • 🏗️ 빌드에 성공했나요?
  • 🧹 불필요한 코드는 제거했나요?

🎟️ Issue

✅ Tasks

로그아웃 기능

  1. 시큐리티 컨텍스트에 등록된 id 가져오고
  2. 해당 id로 등록된 세션들 전부 제거
  3. 시큐리티 컨텍스트에서 해당 회원 정보 제거

🙋🏻 More
로컬 레디스 테스트
1: 로그인 상태
2: 로그아웃 api 요청 시 해당 회원의 세션이 제거된 모습
image

@fakerdeft fakerdeft added the ✨ feature 새로운 기능 개발 label Jan 25, 2025
@fakerdeft fakerdeft self-assigned this Jan 25, 2025
@fakerdeft fakerdeft changed the title [TNT-160] feat: 로그아웃 기능 구현eat: 로그아웃 기능 구현 [TNT-160] feat: 로그아웃 기능 구현 Jan 25, 2025
@ymkim97 ymkim97 self-requested a review January 25, 2025 08:30
Copy link
Contributor

@ymkim97 ymkim97 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다! 테스트 쪽 몇 부분이랑 궁금한거 한가지만 부탁드려요~

@@ -194,7 +188,7 @@ void sign_up_success() {
assertThat(response.name()).isEqualTo(MOCK_NAME);
assertThat(response.profileImageUrl()).isEqualTo(TRAINER_DEFAULT_IMAGE);
assertThat(response.memberType()).isEqualTo(TRAINER);
verify(sessionService).createOrUpdateSession(any(), any());
verify(sessionService).createSession(any(), any());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any()로 너무 포괄적으로 나타내기 보다는 적어도 anyString() 등으로라도 해야 어떤게 들어갈지 예측이 될 거 같아요! 다른 부분들도 확인 부탁드려요~!

Comment on lines 61 to 66
exceptionHandling.authenticationEntryPoint((request, response, authException) -> {
response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
response.setContentType("application/json;charset=UTF-8");
response.getWriter().write("{\"message\":\"요청이 실패했습니다.\"}");
})
);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Question: 이 부분은 어떤 역할인가요? 이전에 작성해주신 ServletExceptionFilter와 차이점이 궁금합니다!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ServletExceptionFilter는 filter 체인 단계에서 예외 핸들링을 하고,
exceptionHandling().authenticationEntryPoint()는 Spring Security의 인증/인가 실패 시점의 예외를 핸들링합니다.
즉, 인증되지 않은 요청에 의한 예외 발생 시 원래 /login 또는 /oauth2/authorization/kakao로 리다이렉트 되었었는데
authenticationEntryPoint 설정을 통해 리다이렉트 대신 401 상태코드와 커스텀 JSON 응답을 반환합니다.
시간만 있으면 따로 authenticationEntryPoint를 상속 받아서 커스텀엔트리포인트를 만들어도 됐는데, 일단 체이닝으로 해결했습니다 !

Request → ServletExceptionFilter → Spring Security → ExceptionHandling → Controller

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아 그래서 아까 응답으로 온게 카카오 로그인이었군요! 알겠습니다~!
그러면 요청이 실패했다기 보다는 사용자 인증을 실패했다는 것은 어떨까요?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

좋습니다 그렇게 수정해서 푸쉬할게요 ~!

@fakerdeft fakerdeft merged commit 44972ba into develop Jan 25, 2025
2 checks passed
@fakerdeft fakerdeft deleted the feature/TNT-160 branch January 25, 2025 12:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ feature 새로운 기능 개발
Projects
None yet
Development

Successfully merging this pull request may close these issues.

로그아웃 기능 구현
2 participants