-
Notifications
You must be signed in to change notification settings - Fork 0
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
[LINKER-X] 비회원 로그인시 일단 무조건 회원가입 #30
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
5 changes: 3 additions & 2 deletions
5
domain/src/main/java/com/imlinker/domain/user/UserRepository.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
package com.imlinker.domain.user; | ||
|
||
import com.imlinker.domain.common.Email; | ||
import com.imlinker.domain.auth.OAuthVendor; | ||
import java.util.Optional; | ||
|
||
public interface UserRepository { | ||
|
||
Optional<User> findById(Long id); | ||
|
||
Optional<User> findByEmail(Email email); | ||
Optional<User> findByOAuthVendorAndOAuthIdentifier( | ||
OAuthVendor oAuthVendor, String oAuthIdentifier); | ||
Comment on lines
+10
to
+11
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이메일은 변경 가능한 값이기 떄문에, kakao에서 내려주는 id(oAuthIdentifier)와 |
||
|
||
User save(User user); | ||
} |
29 changes: 27 additions & 2 deletions
29
domain/src/main/java/com/imlinker/domain/user/UserService.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,40 @@ | ||
package com.imlinker.domain.user; | ||
|
||
import com.imlinker.domain.auth.OAuthVendor; | ||
import com.imlinker.domain.common.Email; | ||
import com.imlinker.domain.common.URL; | ||
import lombok.RequiredArgsConstructor; | ||
import lombok.extern.slf4j.Slf4j; | ||
import org.springframework.stereotype.Service; | ||
|
||
@Slf4j | ||
@Service | ||
@RequiredArgsConstructor | ||
public class UserService { | ||
private final UserRepository userRepository; | ||
|
||
public boolean isMember(Email email) { | ||
return userRepository.findByEmail(email).isPresent(); | ||
public boolean isMember(OAuthVendor oAuthVendor, String oAuthIdentifier) { | ||
return userRepository | ||
.findByOAuthVendorAndOAuthIdentifier(oAuthVendor, oAuthIdentifier) | ||
.isPresent(); | ||
} | ||
|
||
public User createUser( | ||
String oAuthId, String name, Email email, URL profileImgUrl, OAuthVendor oAuthVendor) { | ||
log.info( | ||
"[회원가입][시작] oAuthId: {}, name: {}, email: {}, profileImgUrl: {}, oAuthVendor: {}", | ||
oAuthId, | ||
name, | ||
email, | ||
profileImgUrl, | ||
oAuthVendor); | ||
return userRepository.save( | ||
User.builder() | ||
.oAuthIdentifier(oAuthId) | ||
.name(name) | ||
.email(email) | ||
.profileImgUrl(profileImgUrl) | ||
.oAuthVendor(oAuthVendor) | ||
.build()); | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
최종적으로 비회원도 회원가입 진행후 동일하게 accessToken과 refreshToken을 내립니다