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

OAuth2 기반 소셜 로그인 추가하기 #23

Merged
merged 25 commits into from
Jun 21, 2024

Conversation

wanniDev
Copy link
Owner

@wanniDev wanniDev commented Jun 21, 2024

목적: 소셜 로그인은 추후 사용자 인증을 수행할 때 활용될 예정

특이사항

  • oauth2 clientRegistration 프로퍼티 값 중 client-id, client-secret은 환경변수로 지정�
  • google, naver, kakao에서 제공하는 attribute 구성이 조금씩 다름 attribute를 받아오는 데이터 모델도 조금씩 달라지고, 비즈니스 로직도 조금씩 달라지는데 이를 단일 Service 인터페이스에 구현하면 코드 결합도가 발생할 수 있음
    • 전략 패턴과 책임연쇄피턴을 활용하여 서비스 제공자의 종류에 따라 코드를 분리하여 결합도를 줄여 유지보수 효율을 높임

예약 인증 플로우

  1. 클라이언트 ui애서 소셜 로그인 호출
  2. 인가 서버로부터 메타데이터 및 attribute 수신
  3. 서버에서 사용자 검색 후 jwt 액세스 토큰, 리프레시 토큰 생성
  4. jwt 리턴

wanniDev added 25 commits June 14, 2024 22:49
1. 소셜 로그인 이후, OAuth2UserRequest를 통해 인가 서버로부터 받아온 AccessToken 및 OAuth2 서비즈 제공자 식별 데이터 및 attribute 수신
2. providerConverter를 통해, OAuth2 서비스 제공자에 맞는 ProviderUser 생성
3. ProviderUser 조회 후, 서버에 등록된 사용자가 아니면 사용자 등록 진행
4. Security의 인증/인가 여부를 판단하기위한 PrincipalUser 객체 리턴
@wanniDev wanniDev added the enhancement New feature or request label Jun 21, 2024
@wanniDev wanniDev self-assigned this Jun 21, 2024
@wanniDev wanniDev merged commit 0752b45 into main Jun 21, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant