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

[Feature] JWT Handler 응답 및 API 권한 설정 #134

Merged
merged 3 commits into from
Nov 21, 2023

Conversation

kyeong-hyeok
Copy link
Member

@kyeong-hyeok kyeong-hyeok commented Nov 21, 2023

💡 연관된 이슈

close #133

📝 작업 내용

  • JwtAccessDeniedHandler 허가 받지 않은 사용자의 접근 응답 설정
  • JwtAuthenticationEntryPoint 인증되지 않은 요청 응답 설정
  • 이동봉사자 - 이동봉사 신청에 대한 권한 설정
  • 이동봉사 중개 - 로그인, 회원가입 관련 API 제외 권한 설정

💬 리뷰 요구 사항

@kyeong-hyeok kyeong-hyeok added ✨ Feature 기능 개발 Priority: Medium 우선순위 중간 🐯 Koeyhk 담당자 labels Nov 21, 2023
@kyeong-hyeok kyeong-hyeok linked an issue Nov 21, 2023 that may be closed by this pull request
3 tasks
Copy link
Member

@hojeong2747 hojeong2747 left a comment

Choose a reason for hiding this comment

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

Security 권한 설정까지 고생하셨습니다🥹

@@ -78,6 +78,8 @@ public SecurityFilterChain filterChain(HttpSecurity http, HandlerMappingIntrospe
.requestMatchers(mvcMatcherBuilder.pattern("/v3/api-docs/**")).permitAll()
.requestMatchers(mvcMatcherBuilder.pattern("/volunteers/nickname/isDuplicated")).permitAll()
.requestMatchers(mvcMatcherBuilder.pattern("/fcm-test")).permitAll()
.requestMatchers(mvcMatcherBuilder.pattern("/volunteers/posts/{postId}/applications")).hasRole("AUTH_VOLUNTEER")
.requestMatchers(mvcMatcherBuilder.pattern("/intermediaries/**")).hasRole("AUTH_INTERMEDIARY")
Copy link
Member

Choose a reason for hiding this comment

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

신청을 할 때는 인증 완료한 봉사자만 신청 가능하게 하고, 중개의 경우는 모두 인증된 중개자만 접근하게 하는 권한 설정이네요. 처음 설계할 때 이동 봉사자와 중개를 분리하고, 각각 인증 절차를 거친 후에만 접근 가능한 기능을 구분했던 부분이 이렇게 마무리 되는 기분이에요! (기분 좋습니다😊)

Copy link
Member Author

Choose a reason for hiding this comment

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

맞아요! 각각의 권한으로 테스트를 진행했는데 잘 동작하는 것 같습니다 ㅎ ㅎ

@@ -12,6 +12,8 @@ public enum ErrorCode {
ALREADY_LOGOUT_MEMBER("A3", "이미 로그아웃한 회원입니다"),
EMAIL_SEND_ERROR("A4", "이메일 인증 코드 전송을 실패했습니다."),
UNKNOWN_PROVIDER("A4", "provider 값이 KAKAO 또는 NAVER가 아닙니다."),
Copy link
Member

Choose a reason for hiding this comment

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

인증 코드 중복된 제 부분 메모해 두었어요. 수정하겠습니다!

@@ -12,6 +12,8 @@ public enum ErrorCode {
ALREADY_LOGOUT_MEMBER("A3", "이미 로그아웃한 회원입니다"),
EMAIL_SEND_ERROR("A4", "이메일 인증 코드 전송을 실패했습니다."),
UNKNOWN_PROVIDER("A4", "provider 값이 KAKAO 또는 NAVER가 아닙니다."),
NOT_ALLOWED_MEMBER("A6", "해당 요청에 대한 권한이 없습니다."),
NOT_AUTHENTICATED_REQUEST("A7", "유효한 JWT 토큰이 없습니다."),
Copy link
Member

Choose a reason for hiding this comment

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

역시 센스가 .. A5를 비워두셨네요👍

@Override
public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException accessDeniedException) throws IOException {
// 필요한 권한이 없이 접근하려 할때 403
log.info("허가 받지 않은 사용자의 접근입니다.");
response.sendError(HttpServletResponse.SC_FORBIDDEN);
ErrorResponse errorResponse = ErrorResponse.of(NOT_ALLOWED_MEMBER.getCode(), NOT_ALLOWED_MEMBER.getMessage());
Copy link
Member

Choose a reason for hiding this comment

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

이런 식으로 허가 받지 않은 사용자의 접근 응답 설정을 하는군요! 이렇게 하면 우리가 설정한 기존 에러 방식과 일치하고 좋은 것 같아요 👍

@Override
public void commence(HttpServletRequest request, HttpServletResponse response,
AuthenticationException authException) throws IOException, ServletException {
log.info("인증되지 않은 요청입니다.");
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);
ErrorResponse errorResponse = ErrorResponse.of(NOT_AUTHENTICATED_REQUEST.getCode(), NOT_AUTHENTICATED_REQUEST.getMessage());
String jsonResponse = objectMapper.writeValueAsString(errorResponse);
Copy link
Member

Choose a reason for hiding this comment

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

인증되지 않은 요청 응답 설정도 좋습니다 👍

@kyeong-hyeok kyeong-hyeok merged commit 018e8c7 into develop Nov 21, 2023
1 check passed
@kyeong-hyeok kyeong-hyeok deleted the feat/133-jwt-handler-and-authority-setting branch November 21, 2023 16:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ Feature 기능 개발 🐯 Koeyhk 담당자 Priority: Medium 우선순위 중간
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature] JWT Handler 응답 및 API 권한 설정
2 participants