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

[Refactor] #238 - Discord 회원가입 로직 이벤트 Pub-Sub 구조로 리팩토링 #239

Merged
merged 3 commits into from
Mar 5, 2024

Conversation

its-sky
Copy link
Member

@its-sky its-sky commented Mar 5, 2024

🚀PullRequest🚀

📟 관련 이슈

💻 작업 내용

  • UserService에서 DiscordAppender의 의존성이 직접적으로 사용되는 것을 고쳤습니다.
  • 유저가 회원가입 시 DiscordAppender.signInAppend() 메소드를 직접 호출하는 방식을 제거하고 SignUpEvent를 만들었습니다.

흐름은 다음과 같습니다.

  • UserService에서 ApplicationEventPublisher(ApplicationContext 가 구현해줘서 주입받아 그냥 사용하면 됨)를 주입받아 eventPublisher.publishEvent(new SignUpEvent()); 를 호출합니다.
  • moonshot-external 모듈에 있는 discord 패키지에 SignUpEventListener를 만들고 해당 리스너에서 이벤트를 구독합니다.
  • 해당 이벤트를 구독하고 의존성으로 주입되어 있는 DiscordAppender.signInAppend() 메소드를 호출합니다.

이로서 얻는 이점

  • UserService와 DiscordAppender(알림 서비스) 와의 강한 결합도를 느슨하게 만들었습니다.

단점

  • 로직의 흐름을 직접적으로 파악하기 어려울 수 있으니 코드리뷰하시고 이해가 안되는 부분은 리뷰 달아주세요!~~

📝 리뷰 노트

@its-sky its-sky requested a review from 0lynny March 5, 2024 05:40
@its-sky its-sky self-assigned this Mar 5, 2024
Copy link
Member

@0lynny 0lynny left a comment

Choose a reason for hiding this comment

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

아주 좋군요 ! 작업 수고많으셨습니다 ~!!!

@its-sky its-sky merged commit 50b9e21 into develop Mar 5, 2024
1 check passed
@its-sky its-sky deleted the feature/#238 branch March 12, 2024 15:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Refactor] Discord 회원가입 로직 이벤트 Pub-Sub 구조로 리팩토링
2 participants