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

[Feature] - 인증과정 예외처리 #84

Merged
merged 6 commits into from
Jul 22, 2024
Merged

[Feature] - 인증과정 예외처리 #84

merged 6 commits into from
Jul 22, 2024

Conversation

Libienz
Copy link

@Libienz Libienz commented Jul 21, 2024

✅ 작업 내용

  • RestClient 예외처리
  • 로그인 응답 데이터 추가 (닉네임, 프로필 사진 url)
  • 도메인 책임 분리 리팩터링
  • 스웨거 문서 구체화

🙈 참고 사항

  • 외부 api 요청 시 예외가 발생했을 때 4xx을 받으면 클라이언트에게 400을, 5xx를 받으면 500을 내려주도록 처리했습니다.
  • 로그인 응답 데이터가 추가되어 이제 accessToken, nickname, profileImageUrl이 내려집니다.

Copy link

github-actions bot commented Jul 21, 2024

Unit Test Results

0 tests   0 ✔️  0s ⏱️
0 suites  0 💤
0 files    0

Results for commit 90c8cfd.

♻️ This comment has been updated with latest results.

@Libienz Libienz added the BE label Jul 21, 2024
@Libienz Libienz added this to the sprint 2 milestone Jul 21, 2024
@Libienz Libienz linked an issue Jul 21, 2024 that may be closed by this pull request
4 tasks
Copy link

@eunjungL eunjungL left a comment

Choose a reason for hiding this comment

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

질문 하나 남겼습니다~
주말에도 작업하느라 고생하셨어요 리비 👍

import woowacourse.touroot.member.domain.Member;

public record LoginResponse(
@Schema(description = "로그인된 유저의 닉네임") String nickname,

Choose a reason for hiding this comment

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

질문) login이 성공됐다는 응답으로 nickname, prifleImageUrl이 어떤 상황에서 필요한가요? 어디에 쓰이는지 궁금합니당

Choose a reason for hiding this comment

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

제 생각에는 프론트엔드에서 활용할 수 있을 것 같습니다.
따로 사용자 정보 요청 API 호출 없이도 로그인 후에 바로 사용자 정보를 가져갈 수 있지 않을까용?

Copy link
Author

Choose a reason for hiding this comment

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

리건 말이 맞습니다. 여러 서비스에서 로그인 되면 우측 상단에 프로필이미지랑 닉네임 뜨듯이 저희 서비스에서도 사용할 수 있는 맥락을 고려했어요

Copy link

@hangillee hangillee left a comment

Choose a reason for hiding this comment

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

코드 상에 문제는 없어 보입니다! 늦은 시간까지 고생 많으셨습니다!

import woowacourse.touroot.member.domain.Member;

public record LoginResponse(
@Schema(description = "로그인된 유저의 닉네임") String nickname,

Choose a reason for hiding this comment

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

제 생각에는 프론트엔드에서 활용할 수 있을 것 같습니다.
따로 사용자 정보 요청 API 호출 없이도 로그인 후에 바로 사용자 정보를 가져갈 수 있지 않을까용?

Copy link

Test Results

 4 files   4 suites   2s ⏱️
 9 tests  9 ✅ 0 💤 0 ❌
10 runs  10 ✅ 0 💤 0 ❌

Results for commit fb9308c.

@Libienz Libienz merged commit 6cb2dda into develop/be Jul 22, 2024
3 checks passed
@Libienz Libienz deleted the feature/be/#81 branch July 22, 2024 06:26
eunjungL pushed a commit that referenced this pull request Jul 30, 2024
* feat: 로그인 응답에 데이터 추가, Response 생성 방식 캡슐화

- 카카오 닉네임, 프로필 이미지 경로

* refactor: RestClient 예외 처리 작성

* feat: 서버 내부 에러 처리 핸들러 작성

* feat: Swagger api 정보 추가

* fix: 최상위 예외 처리 코드 제거 개선
hangillee pushed a commit to hangillee/2024-touroot that referenced this pull request Aug 20, 2024
* feat: 로그인 응답에 데이터 추가, Response 생성 방식 캡슐화

- 카카오 닉네임, 프로필 이미지 경로

* refactor: RestClient 예외 처리 작성

* feat: 서버 내부 에러 처리 핸들러 작성

* feat: Swagger api 정보 추가

* fix: 최상위 예외 처리 코드 제거 개선
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

[Feature] - 인증과정 예외처리
3 participants