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

[FIX #116] 일반 회원가입시 ATK, RTK 함께 반환하도록 수정 & JwtAuthenticationFilter 클래스 주석처리 해제 #117

Merged
merged 2 commits into from
Aug 20, 2024

Conversation

JungYoonShin
Copy link
Member

@JungYoonShin JungYoonShin commented Aug 14, 2024

📄 Work Description

  • 일반 회원가입시 ATK, RTK를 같이 반환핟록 수정하였습니다.

⚙️ ISSUE

📷 Screenshot

스크린샷 2024-08-14 오전 11 25 06

💬 To Reviewers

  1. 일반 회원가입시에 바로 ATK, RTK를 주지 않아서 회원가입 후 로그인을 거쳐야하는 번거로움이 있어서 해당 로직을 수정했습니다!
    Authentication을 기반으로 토큰을 생성했었는데, 사용자 email(고유한 값)으로 토큰을 생성하도록 로직을 수정했습니다!
    이유는 충분히 사용자 email을 기반으로 고유한 토큰을 만들어 낼 수 있는데 Authentication을 만들면서 리소스를 쓸 필요가 없다 판단하였습니다!
    https://github.com/UMC5th-bias/Server/blob/69e9340b9551f4adac1b8660d1456697821f3021/src/main/java/com/favoriteplace/global/security/provider/JwtTokenProvider.java#L32-L51

2. JwtAuthenticationFilter 클래스 shouldNotFilter 주석처리 해제를 해제했습니다! 해당코드가 주석처리가 되어있지 않아야 인증이 필요없는 API의 경우 필터를 통과하지 않게 되는데, 주석처리가 되어있어서 해제하였습니다!

https://github.com/UMC5th-bias/Server/blob/69e9340b9551f4adac1b8660d1456697821f3021/src/main/java/com/favoriteplace/global/security/Filter/JwtAuthenticationFilter.java#L62-L69

🔗 Reference

문제를 해결하면서 도움이 되었거나, 참고했던 사이트(코드링크)

- 인증 필요 없는 API의 경우 필터 통과하지 않도록 shouldNotFilter 메서드 주석 처리 해제
- JwtTokenProvider에서 claim의 subject를 Authentication에서 유저 email 로 수정
- 일반 회원가입 로직 수정
@JungYoonShin JungYoonShin added 🐛 bug Something isn't working 로그인/회원가입 로그인/회원가입 labels Aug 14, 2024
@JungYoonShin JungYoonShin self-assigned this Aug 14, 2024
@JungYoonShin JungYoonShin changed the title Fix/#116 [FIX/#116] 일반 회원가입시 ATK, RTK 함께 반환하도록 수정 & JwtAuthenticationFilter 클래스 주석처리 해제 Aug 14, 2024
Copy link
Contributor

@jorippppong jorippppong left a comment

Choose a reason for hiding this comment

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

확인했습니다 👍

@JungYoonShin JungYoonShin merged commit 72bf4d1 into develop Aug 20, 2024
1 check passed
@JungYoonShin JungYoonShin deleted the fix/#116 branch August 20, 2024 08:44
@JungYoonShin JungYoonShin changed the title [FIX/#116] 일반 회원가입시 ATK, RTK 함께 반환하도록 수정 & JwtAuthenticationFilter 클래스 주석처리 해제 [FIX #116] 일반 회원가입시 ATK, RTK 함께 반환하도록 수정 & JwtAuthenticationFilter 클래스 주석처리 해제 Aug 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 bug Something isn't working 로그인/회원가입 로그인/회원가입
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FIX] 일반 회원가입 로직 수정
2 participants