Merged
Conversation
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. 🗂️ Base branches to auto review (1)
Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the 개요이 PR은 Firebase 기반 인증으로 전환하고, 관심사 관리 기능을 제거하며, 키워드 기반 장소 분류 체계를 도입하고, 회원 장소 추적 기능을 강화하며, GitHub 프로젝트 자동 관리 기능을 추가합니다. 변경 사항
시퀀스 다이어그램Firebase 인증 플로우sequenceDiagram
participant Client
participant AuthService
participant FirebaseTokenService
participant FirebaseAuth
participant NicknameService
participant MemberRepository
Client->>AuthService: signIn(firebaseIdToken)
AuthService->>FirebaseTokenService: verifyIdToken(token)
FirebaseTokenService->>FirebaseAuth: verifyIdToken(token)
FirebaseAuth-->>FirebaseTokenService: decodedToken
FirebaseTokenService-->>AuthService: FirebaseToken
AuthService->>FirebaseTokenService: extractUserInfo(decodedToken)
FirebaseTokenService-->>AuthService: FirebaseUserInfo
AuthService->>MemberRepository: findByUid(uid)
alt 첫 로그인
MemberRepository-->>AuthService: null
AuthService->>NicknameService: generateUniqueNickname()
NicknameService-->>AuthService: uniqueNickname
AuthService->>MemberRepository: save(newMember)
else 기존 회원
MemberRepository-->>AuthService: member
end
AuthService-->>Client: SignInResponse(isFirstLogin, onboarding)
키워드 추출 및 장소 연결 플로우sequenceDiagram
participant AI as AI Server
participant AiCallbackService
participant KeywordService
participant KeywordRepository
participant PlaceKeywordRepository
participant PlaceService
AI->>AiCallbackService: onAiProcessing(Content, PlaceInfo[])
loop 각 PlaceInfo에 대해
AiCallbackService->>PlaceService: createOrGetPlace(placeInfo)
PlaceService-->>AiCallbackService: place
AiCallbackService->>KeywordService: linkKeywordsToPlace(place, keywords)
loop 각 키워드
KeywordService->>KeywordRepository: findByKeyword(keyword)
alt 키워드 존재
KeywordRepository-->>KeywordService: keyword (count++)
else 새 키워드
KeywordService->>KeywordRepository: save(newKeyword)
end
KeywordService->>PlaceKeywordRepository: save(PlaceKeyword)
end
end
AiCallbackService-->>AI: ContentProcessingResponse
예상 코드 검토 난이도🎯 4 (복잡함) | ⏱️ ~50분 분석 근거:
관련 PR
Comment |
Contributor
Author
|
@coderabbitai summary |
✅ Actions performedSummary regeneration triggered. |
|
✅ 변경사항이 자동으로 deploy 브랜치에 적용되었습니다. PR을 수동으로 닫아주세요. |
This was referenced Jan 28, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary by CodeRabbit
릴리스 노트
New Features
Bug Fixes
Chores
✏️ Tip: You can customize this high-level summary in your review settings.