-
Notifications
You must be signed in to change notification settings - Fork 0
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
Refactor/#548 notification 리팩토링 #549
Open
BackFoxx
wants to merge
8
commits into
dev
Choose a base branch
from
refactor/#548_notification_리팩토링
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
The head ref may contain hidden characters: "refactor/#548_notification_\uB9AC\uD329\uD1A0\uB9C1"
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hectick
reviewed
Nov 20, 2023
public String getActiveDeviceToken() { | ||
return devices.stream().filter(Device::isActive) | ||
.map(Device::getDeviceToken) | ||
.findAny().orElseThrow(); |
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.
throw하는 에러를 적어주면 좋지 않을까요!
BusinessLogicException이라덩가......
hectick
approved these changes
Nov 22, 2023
이돈이면 팀 : sendNotificaiton의 파라미터로 Member 대신 MemberId와 디바이스 토큰만 받도록 최적화하자 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🔥 연관 이슈
📝 작업 요약
반려생활 면접 과정에서 CTO님과 함께 논의했던 리팩토링 포인트들을 반영했습니다.
🔎 작업 상세 설명
크게 3개의 개선 포인트를 찾아냈습니다.
Receiver 객체의 파라미터로 엔티티 대신 필요한 정보만 뽑아 건네주어 테스트하기 쉬운 구조 만들기
-> Reciever에서는 회원의 토큰 정보만 필요로 하므로, 생성자로 Member 대신 토큰 문자열만 받도록 변경하여 Reciever와 Member의 의존관계를 끊어냈습니다.
디바이스 토큰이 존재하는지 검사하는 코드 개선하기
-> Optional 반환이 안티 패턴이라는 피드백을 받아 알아보았더니 일리가 있었습니다. 반환값이 Optional인 메서드에서 규칙을 무시하고 null을 반환한다면 optional.isEmpty() 같은 메서드를 호출하는 순간 NPE가 발생하기 떄문이었습니다.
그래서 deviceToken이 존재하는 지 확인하는 hasDeviceToken 메서드를 따로 만들고, getDeviceToken 메서드는 Optional 대신 값 원본을 리턴하도록 변경했습니다. 리턴값이 존재하지 않을 경우 예외가 발생합니다.
회원의 탈퇴 여부를 검증하는 코드를 대체할 수 있는 방안 찾기
-> 요건 해결하지 못했습니다! '탈퇴한 회원의 디바이스로 알림을 전송하지 않겠다' 라는 요구사항은 어떤 알림을 보내든 공통인데, sendNotification()에서 한 번에 관리하던 코드가 외부 코드에 분산되니 응집성이 너무 떨어져 정말 마음에 안 들더라구요 🥹
상태 별(회원가입 안됨, 회원가입 됨, 탈퇴함) 회원 객체를 만들어 사용하면 어떨까라는 건의를 인터뷰 중에 했었는데, 회원 도메인이 크게 변경되는 작업이라 별도의 이슈를 파서 작업해야 할 것 같아요!
🌟 리뷰 요구 사항
큰 변경이 없는 작업이라 빠르게 리뷰할 수 있을 거에요~