[FIX] Change login identifier from email to kakao ID#110
Closed
[FIX] Change login identifier from email to kakao ID#110
Conversation
Copilot
AI
changed the title
[WIP] [FIX] 라비올리 코드 수정
[FIX] Change login identifier from email to kakao ID
Jul 4, 2025
Copilot stopped work on behalf of
Neo1228 due to an error
July 4, 2025 07:09
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.
This PR implements a comprehensive migration from email-based to kakaoId-based user identification throughout the authentication system, addressing the requirement to use school email for verification while using kakao ID for internal user identification.
Key Changes
🔐 Authentication System
JwtUtillto usekakaoId(Long) instead of email as the primary identifierCustomUserDetails.getUsername()to return kakaoId as stringCustomOAuth2UserServiceto lookup users by kakaoId from Kakao profile🗄️ Database Schema
kakaoIdfield with unique constraintfindByKakaoId()andexistsByKakaoId()methods toMemberRepository🎮 Controllers & Services
Updated all user-facing endpoints to use kakaoId:
📱 DTOs & Communication
ChatMessageSendReq/ChatMessageResnow use kakaoIdKickRequestupdated to target users by kakaoIdStompHandlervalidates room participation using kakaoIdExample Usage
Before (email-based):
After (kakaoId-based):
Benefits
Backward Compatibility
CustomUserDetailsServicemaintains email-based lookup for legacy authenticationTesting
This migration establishes a solid foundation for the upcoming school email verification system while maintaining the security and reliability of the current OAuth implementation.
Fixes #107.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.