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

Fix: #303 로그인 요청에 withCredentials 설정 추가 #304

Merged
merged 1 commit into from
Dec 18, 2024

Conversation

Seok93
Copy link
Contributor

@Seok93 Seok93 commented Dec 18, 2024

PR Type

What kind of change does this PR introduce?

  • [Fix] 버그를 수정했어요.

Related Issues

What does this PR do?

  • 로그인 요청 withCredential : true 설정 추가

Other information

참고자료

  1. MDN: withCredential

@Seok93 Seok93 added the 💉 Fix 에러 혹은 버그를 수정했어요 label Dec 18, 2024
@Seok93 Seok93 self-assigned this Dec 18, 2024
Copy link
Contributor

@ice-bear98 ice-bear98 left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link

coderabbitai bot commented Dec 18, 2024

Walkthrough

authService.ts 파일에서 Axios 요청 구성에 withCredentials: true 옵션을 추가하여 로그인, 액세스 토큰 가져오기, 로그아웃 작업 시 자격 증명을 포함하도록 변경했습니다. 이 수정은 서브 도메인 간 쿠키 생성 문제를 해결하기 위한 것으로, 크로스 오리진 요청 시 자격 증명을 포함할 수 있게 합니다.

Changes

파일 변경 요약
src/services/authService.ts - login 함수에 withCredentials: true 추가
- getAccessToken 함수에 withCredentials: true 추가
- logout 함수에 withCredentials: true 추가

Assessment against linked issues

목표 해결 여부 설명
서브 도메인 쿠키 생성 문제 해결 [#303]

Poem

🐰 쿠키를 심는 토끼의 노래 🍪

도메인 넘나드는 요청의 날개
withCredentials로 문을 열어요
서브도메인에 쿠키 꽃 피우니
인증의 토끼, 기쁨을 노래해요!

Tip

CodeRabbit's docstrings feature is now available as part of our Early Access Program! Simply use the command @coderabbitai generate docstrings to have CodeRabbit automatically generate docstrings for your pull request. We would love to hear your feedback on Discord.


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

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🔭 Outside diff range comments (1)
src/services/authService.ts (1)

Line range hint 66-68: 소셜 로그인에도 withCredentials 설정이 필요합니다

현재 socialLogin 함수에는 withCredentials 설정이 누락되어 있습니다. 소셜 로그인도 인증 쿠키를 처리해야 하므로, 다른 인증 관련 엔드포인트와 동일하게 설정이 필요합니다.

export async function socialLogin(provider: SocialLoginProvider, code: string, axiosConfig: AxiosRequestConfig = {}) {
-  return defaultAxios.post(`user/login/${provider}`, { code }, axiosConfig);
+  return defaultAxios.post(`user/login/${provider}`, { code }, { ...axiosConfig, withCredentials: true });
}
🧹 Nitpick comments (2)
src/services/authService.ts (2)

Line range hint 77-77: 토큰 갱신 요청의 보안 강화가 필요합니다

withCredentials 설정이 올바르게 추가되었습니다. 토큰 갱신 과정의 보안을 더욱 강화하기 위해 다음 사항들도 고려해보시기 바랍니다:

  1. 리프레시 토큰의 만료 시간 검증
  2. 토큰 갱신 실패 시 자동 로그아웃 처리
  3. 동시 다발적인 토큰 갱신 요청 방지 (토큰 갱신 중복 방지)

Line range hint 102-102: 로그아웃 시 세션 정리가 필요합니다

withCredentials 설정이 올바르게 추가되었습니다. 로그아웃 기능의 완성도를 높이기 위해 다음 작업들도 함께 수행되는지 확인해주세요:

  1. 클라이언트 측 저장소(localStorage, sessionStorage) 정리
  2. 메모리에 저장된 인증 상태 초기화
  3. 쿠키 삭제 확인
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between cb6b923 and c927abd.

📒 Files selected for processing (1)
  • src/services/authService.ts (1 hunks)
🔇 Additional comments (1)
src/services/authService.ts (1)

54-54: CORS 설정 확인이 필요합니다

withCredentials: true 설정이 올바르게 추가되었습니다. 하지만 이 설정이 제대로 작동하려면 백엔드 서버에서도 적절한 CORS 설정이 필요합니다.

서버 측에서 다음 설정이 되어있는지 확인해주세요:

  • Access-Control-Allow-Credentials: true
  • Access-Control-Allow-Origin이 와일드카드(*)가 아닌 구체적인 오리진으로 설정

@Seok93 Seok93 merged commit 596df76 into develop Dec 18, 2024
1 check passed
@Seok93 Seok93 deleted the feature/#303-fix-login-option branch December 18, 2024 10:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💉 Fix 에러 혹은 버그를 수정했어요
Projects
None yet
Development

Successfully merging this pull request may close these issues.

서브 도메인(www.growup.kr)에서 쿠키가 생성되지 않는 문제
2 participants