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

일반 회원이 소셜 로그인 가입 클릭 시 홈으로 리다이렉트 #834

Conversation

jschoi-96
Copy link
Contributor

@jschoi-96 jschoi-96 commented Jan 1, 2025

💡 작업 내용

  • 소셜 로그인 로직 수정

💡 자세한 설명

소셜 로그인으로 회원 가입 시, 두가지 분기 처리를 해주고 있었습니다.

스크린샷 2025-01-01 오후 6 19 08

DB에서 조회하여 회원이 없는 경우엔, 새 회원을 DB에 저장하고 홈으로 리다이렉트 하도록 구현했습니다.

회원이 있는 경우엔, 해당 회원 정보만 반환값으로 리턴하고 회원이 존재하기 때문에 https://pick0.com?status=already_registered로 리다이렉트 하도록 구현했습니다.


현재 문제가 됐던 부분은, 일반 회원가입으로 가입한 뒤 동일한 이메일 주소로 소셜 회원가입을 클릭했을 때 역시 https://pick0.com?status=already_registered 로 리다이렉트를 해주고 있었습니다.

따라서, 해당 회원이 일반 회원가입을 진행했다면, 홈으로 리다이렉트 되도록 한번 더 분기 처리를 해줬습니다.

스크린샷 2025-01-01 오후 6 23 24

📗 참고 자료 (선택)

📢 리뷰 요구 사항 (선택)

🚩 후속 작업 (선택)

✅ 셀프 체크리스트

  • PR 제목을 형식에 맞게 작성했나요?
  • 브랜치 전략에 맞는 브랜치에 PR을 올리고 있나요?
  • 이슈는 close 했나요?
  • Reviewers, Labels, Projects를 등록했나요?
  • 작업 도중 문서 수정이 필요한 경우 잘 수정했나요?
  • 테스트는 잘 통과했나요?
  • 불필요한 코드는 제거했나요?

closes #833

Summary by CodeRabbit

  • 새로운 기능
    • 소셜 로그인 후 회원 가입 유형에 따라 다른 리다이렉션 로직 추가
    • 표준 회원과 기존 회원에 대한 로그인 흐름 개선

@jschoi-96 jschoi-96 added ✨ feature 구현, 개선 사항 관련 부분 D-1 labels Jan 1, 2025
@jschoi-96 jschoi-96 self-assigned this Jan 1, 2025
Copy link
Contributor

coderabbitai bot commented Jan 1, 2025

Walkthrough

이 변경사항은 CustomOAuth2UserService 클래스의 loadUser 메서드에 새로운 조건부 로직을 추가했습니다. 이제 메서드는 회원의 가입 유형(STANDARD)에 따라 다른 리다이렉트 URL을 반환합니다. 표준 회원의 경우 홈 페이지로 리다이렉트되며, 다른 유형의 회원은 기존과 동일한 동작을 유지합니다.

Changes

파일 변경 요약
src/main/java/balancetalk/global/oauth2/service/CustomOAuth2UserService.java loadUser 메서드에 회원 가입 유형에 따른 조건부 리다이렉트 로직 추가

Assessment against linked issues

목표 해결 여부 설명
소셜 로그인 리다이렉트 오류 해결 [#833]

Poem

🐰 토끼의 코드 춤, OAuth의 노래
로그인 길 열리니 반짝반짝
표준 회원아, 홈으로 가자
리다이렉트의 마법을 담아
코드는 춤추고 기쁨은 커져 🌈


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 33e2d82 and d198fe0.

📒 Files selected for processing (1)
  • src/main/java/balancetalk/global/oauth2/service/CustomOAuth2UserService.java (1 hunks)
🧰 Additional context used
📓 Learnings (1)
src/main/java/balancetalk/global/oauth2/service/CustomOAuth2UserService.java (1)
Learnt from: jschoi-96
PR: JECT-Study/PICK-O-Server#802
File: src/main/java/balancetalk/global/oauth2/service/CustomOAuth2UserService.java:0-0
Timestamp: 2024-12-13T07:10:55.795Z
Learning: `CustomOAuth2UserService` 클래스에서 회원이 이미 존재할 경우, 해당 회원 정보를 반환하면서 동시에 `redirectUrl`을 전송하도록 설정되어 있습니다.
🔇 Additional comments (1)
src/main/java/balancetalk/global/oauth2/service/CustomOAuth2UserService.java (1)

76-78: STANDARD 회원일 때의 리다이렉트 처리 확인이 필요합니다.

이 분기 로직에 따라 일반 회원이라면 홈으로, 이미 소셜로 가입된 회원이라면 alreadyRegisteredUrl로 이동하도록 되어 있습니다. 의도에 맞게 정상 동작하는지 테스트(단위 및 통합 테스트 등)를 통해 추가 검증하길 권장합니다.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

sonarqubecloud bot commented Jan 1, 2025

@jschoi-96 jschoi-96 added 🛠️ fix 오류 수정 and removed ✨ feature 구현, 개선 사항 관련 부분 labels Jan 1, 2025
@Hanjaemo Hanjaemo added D-0 긴급 이슈에 대한 작업 and removed D-1 labels Jan 1, 2025
@jschoi-96 jschoi-96 merged commit 8a59b11 into main Jan 2, 2025
4 checks passed
@jschoi-96 jschoi-96 deleted the 833-소셜-로그인으로-가입하지-않은-이메일로-로그인시-리다이렉트-오류 branch January 2, 2025 16:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
D-0 긴급 이슈에 대한 작업 🛠️ fix 오류 수정
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

소셜 로그인으로 가입하지 않은 이메일로 로그인시 리다이렉트 오류
3 participants