-
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.
Browse files
Browse the repository at this point in the history
[feat][#96]kakao login 완료
- Loading branch information
Showing
11 changed files
with
244 additions
and
24 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
68 changes: 68 additions & 0 deletions
68
...in/java/com/server/bbo_gak/domain/auth/dto/response/oauth/KakaoOAuthUserInfoResponse.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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package com.server.bbo_gak.domain.auth.dto.response.oauth; | ||
|
||
import java.time.LocalDateTime; | ||
import java.time.ZoneId; | ||
import java.time.format.DateTimeFormatter; | ||
import java.util.Map; | ||
|
||
public record KakaoOAuthUserInfoResponse( | ||
Long id, | ||
LocalDateTime connected_at, | ||
Map<String, Object> properties, | ||
KakaoAccount kakao_account | ||
) { | ||
|
||
public static KakaoOAuthUserInfoResponse from(Map<String, Object> attributes) { | ||
return new KakaoOAuthUserInfoResponse( | ||
Long.valueOf(String.valueOf(attributes.get("id"))), | ||
LocalDateTime.parse( | ||
String.valueOf(attributes.get("connected_at")), | ||
DateTimeFormatter.ISO_INSTANT.withZone(ZoneId.systemDefault()) | ||
), | ||
(Map<String, Object>) attributes.get("properties"), | ||
KakaoAccount.from((Map<String, Object>) attributes.get("kakao_account")) | ||
); | ||
} | ||
|
||
public String email() { | ||
return this.kakao_account().email(); | ||
} | ||
|
||
public String nickname() { | ||
return this.kakao_account().nickname(); | ||
} | ||
|
||
public record KakaoAccount( | ||
Boolean profileNicknameNeedsAgreement, | ||
Profile profile, | ||
Boolean hasEmail, | ||
Boolean emailNeedsAgreement, | ||
Boolean isEmailValid, | ||
Boolean isEmailVerified, | ||
String email | ||
) { | ||
|
||
public static KakaoAccount from(Map<String, Object> attributes) { | ||
return new KakaoAccount( | ||
Boolean.valueOf(String.valueOf(attributes.get("profile_nickname_needs_agreement"))), | ||
Profile.from((Map<String, Object>) attributes.get("profile")), | ||
Boolean.valueOf(String.valueOf(attributes.get("has_email"))), | ||
Boolean.valueOf(String.valueOf(attributes.get("email_needs_agreement"))), | ||
Boolean.valueOf(String.valueOf(attributes.get("is_email_valid"))), | ||
Boolean.valueOf(String.valueOf(attributes.get("is_email_verified"))), | ||
String.valueOf(attributes.get("email")) | ||
); | ||
} | ||
|
||
public String nickname() { | ||
return this.profile().nickname(); | ||
} | ||
|
||
public record Profile(String nickname) { | ||
|
||
public static Profile from(Map<String, Object> attributes) { | ||
return new Profile(String.valueOf(attributes.get("nickname"))); | ||
} | ||
} | ||
} | ||
} |
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
99 changes: 99 additions & 0 deletions
99
src/main/java/com/server/bbo_gak/domain/auth/service/oauth/KakaoService.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 |
---|---|---|
@@ -0,0 +1,99 @@ | ||
package com.server.bbo_gak.domain.auth.service.oauth; | ||
|
||
import static com.server.bbo_gak.domain.user.entity.OauthProvider.KAKAO; | ||
import static com.server.bbo_gak.global.config.oauth.GoogleOAuthConfig.AUTHORIZATION; | ||
import static com.server.bbo_gak.global.error.exception.ErrorCode.AUTH_GET_USER_INFO_FAILED; | ||
|
||
import com.server.bbo_gak.domain.auth.dto.response.oauth.GoogleTokenServiceResponse; | ||
import com.server.bbo_gak.domain.auth.dto.response.oauth.KakaoOAuthUserInfoResponse; | ||
import com.server.bbo_gak.domain.auth.dto.response.oauth.OauthUserInfoResponse; | ||
import com.server.bbo_gak.global.config.oauth.KakaoOAuthConfig; | ||
import com.server.bbo_gak.global.error.exception.BusinessException; | ||
import lombok.RequiredArgsConstructor; | ||
import lombok.extern.slf4j.Slf4j; | ||
import org.springframework.http.HttpEntity; | ||
import org.springframework.http.HttpHeaders; | ||
import org.springframework.http.HttpStatusCode; | ||
import org.springframework.http.MediaType; | ||
import org.springframework.http.ResponseEntity; | ||
import org.springframework.stereotype.Service; | ||
import org.springframework.util.LinkedMultiValueMap; | ||
import org.springframework.util.MultiValueMap; | ||
import org.springframework.web.client.RestClient; | ||
import org.springframework.web.client.RestClientException; | ||
import org.springframework.web.client.RestTemplate; | ||
|
||
@Slf4j | ||
@RequiredArgsConstructor | ||
@Service | ||
public class KakaoService implements OauthService { | ||
|
||
private final KakaoOAuthConfig kakaoOAuthConfig; | ||
|
||
@Override | ||
public OauthUserInfoResponse getOauthUserInfo(String accessToken) { | ||
KakaoOAuthUserInfoResponse response = getKakaoOauthUserInfo(accessToken); | ||
return new OauthUserInfoResponse(response.id().toString(), response.email(), response.nickname(), KAKAO); | ||
} | ||
|
||
private KakaoOAuthUserInfoResponse getKakaoOauthUserInfo(String accessToken) { | ||
try { | ||
RestClient restClient = RestClient.create(); | ||
return restClient.get() | ||
.uri(KakaoOAuthConfig.KAKAO_USER_INFO_URI) | ||
.header(AUTHORIZATION, KakaoOAuthConfig.TOKEN_PREFIX + accessToken) | ||
.header("Content-type", "application/x-www-form-urlencoded;charset=utf-8") | ||
.retrieve() | ||
.onStatus(HttpStatusCode::is4xxClientError, | ||
(googleRequest, googleResponse) -> { | ||
throw new BusinessException("Client error: " + googleResponse.getStatusCode(), | ||
AUTH_GET_USER_INFO_FAILED); | ||
}) | ||
.onStatus(HttpStatusCode::is5xxServerError, (googleRequest, googleResponse) -> { | ||
throw new BusinessException("Server error: " + googleResponse.getStatusCode(), | ||
AUTH_GET_USER_INFO_FAILED); | ||
}) | ||
.body(KakaoOAuthUserInfoResponse.class); | ||
} catch (RestClientException e) { // RestClient 관련 에러 | ||
throw new BusinessException("RestClientException: " + e.getMessage(), AUTH_GET_USER_INFO_FAILED); | ||
} catch (Exception e) { // 그 외 일반적인 예외 | ||
throw new BusinessException("Unexpected error: " + e.getMessage(), AUTH_GET_USER_INFO_FAILED); | ||
} | ||
|
||
|
||
} | ||
|
||
// 프론트와 연결끝나면 지워도 됨. | ||
public String getKakaoToken(String code) { | ||
RestTemplate restTemplate = new RestTemplate(); | ||
|
||
MultiValueMap<String, String> params = new LinkedMultiValueMap<>(); | ||
params.add("client_id", kakaoOAuthConfig.getKakaoClientId()); | ||
params.add("client_secret", kakaoOAuthConfig.getKakaoClientSecret()); | ||
params.add("code", code); | ||
params.add("grant_type", "authorization_code"); | ||
params.add("redirect_uri", kakaoOAuthConfig.getKakaoRedirectUri()); | ||
|
||
HttpHeaders headers = new HttpHeaders(); | ||
headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED); | ||
// HttpEntity 생성 | ||
HttpEntity<MultiValueMap<String, String>> requestEntity = new HttpEntity<>(params, headers); | ||
|
||
// 요청 URL 설정 | ||
String url = KakaoOAuthConfig.KAKAO_TOKEN_URI; | ||
|
||
// POST 요청 전송 및 응답 수신 | ||
ResponseEntity<GoogleTokenServiceResponse> responseEntity = restTemplate.postForEntity(url, requestEntity, | ||
GoogleTokenServiceResponse.class); | ||
|
||
// 응답 검증 | ||
if (responseEntity.getStatusCode().is2xxSuccessful()) { | ||
GoogleTokenServiceResponse response = responseEntity.getBody(); | ||
assert response != null; | ||
return response.accessToken(); | ||
} else { | ||
// 오류 처리 로직 추가 | ||
throw new RuntimeException("Failed to retrieve token: " + responseEntity.getStatusCode()); | ||
} | ||
} | ||
} |
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
25 changes: 25 additions & 0 deletions
25
src/main/java/com/server/bbo_gak/global/config/oauth/KakaoOAuthConfig.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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package com.server.bbo_gak.global.config.oauth; | ||
|
||
import lombok.Getter; | ||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
@Getter | ||
@Configuration | ||
public class KakaoOAuthConfig { | ||
|
||
public static final String AUTHORIZATION = "Authorization"; | ||
public static final String TOKEN_PREFIX = "Bearer "; | ||
public static final String KAKAO_CODE_URI = "https://kauth.kakao.com/oauth/authorize"; | ||
public static final String KAKAO_TOKEN_URI = "https://kauth.kakao.com/oauth/token"; | ||
public static final String KAKAO_USER_INFO_URI = "https://kapi.kakao.com/v2/user/me"; | ||
|
||
@Value("${kakao.login.client_id}") | ||
private String kakaoClientId; | ||
|
||
@Value("${kakao.login.client_secret}") | ||
private String kakaoClientSecret; | ||
|
||
@Value("${kakao.login.redirect_uri}") | ||
private String kakaoRedirectUri; | ||
} |
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