-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: 현재 로그인한 멤버 조회하는 유틸리티 구현 #41
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package com.gdschongik.gdsc.global.util; | ||
|
||
import com.gdschongik.gdsc.domain.member.dao.MemberRepository; | ||
import com.gdschongik.gdsc.domain.member.domain.Member; | ||
import com.gdschongik.gdsc.global.exception.CustomException; | ||
import com.gdschongik.gdsc.global.exception.ErrorCode; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.security.core.Authentication; | ||
import org.springframework.security.core.context.SecurityContextHolder; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
@RequiredArgsConstructor | ||
public class MemberUtil { | ||
|
||
private final MemberRepository memberRepository; | ||
|
||
private Long getCurrentMemberIdFromSecurityContext() { | ||
Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); | ||
try { | ||
return Long.parseLong(authentication.getName()); | ||
} catch (Exception e) { | ||
throw new CustomException(ErrorCode.AUTH_NOT_FOUND); | ||
} | ||
} | ||
|
||
public Long getCurrentMemberId() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 취향 차이일 수 있는데, 사실 저희 코드 보면서 항상 속으로만 생각하던 건데 의견 나눠보고 싶어 글 남깁니다! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
return getCurrentMemberIdFromSecurityContext(); | ||
} | ||
|
||
public Member getCurrentMember() { | ||
return memberRepository | ||
.findById(getCurrentMemberIdFromSecurityContext()) | ||
.orElseThrow(() -> new CustomException(ErrorCode.MEMBER_NOT_FOUND)); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아래 한 줄에서 발생할 수 있는 예외들은 어떤 것들이 있을까요?
따로 검증하지 않고, Exception으로 한번에 처리하는 이유는 예상하지 못한 예외에 대비하기 위함일까요?
아니면, 여러 예외 상황을 한번에 처리하기 위함일까요?
제가 시큐리티를 잘 몰라서 그런지 따로 검증하지 않으니,
저 한줄에서 어떤 예외가 발생할 수 있는지 궁금한데, 추측하기 어렵네요.
(예외도 Exception으로 되어 있어서)
제가 생각나는 경우는 아래 두가지 정도인데, 재현님이 생각하는 경우는 다르거나 더 있을 것 같아요
읽는 사람도 어떤 예외가 발생할 수도 있는지 예상해볼 수 있도록,
먼저 검증해보는 것은 어떤지 의견 여쭈어 봅니다.
예시
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Authentication
이 null인 경우 -> 서비스 레이어에서는 내부적으로MemberUtil
을 사용하는데, 이 서비스 레이어를 테스트할 때 실수로SecurityContext
에Authentication
을 set 해주지 않은 경우 NPE가 발생할 수도 있습니다.파싱 실패하는 경우 ->
AnonymouseAuthentication
이 set 된 경우getName()
이memberId
가 아닌anonymousUser
라는 String을 리턴하기 때문에 파싱에 실패합니다.말씀하신대로 두 가지 케이스르 분리할 수 있을 것 같습니다. 좋은 의견 감사해요~