-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[LINKER-X] fix: 비회원 로그인시 일단 무조건 회원가입 (#30)
- Loading branch information
Showing
9 changed files
with
62 additions
and
50 deletions.
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); | ||
|
||
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