Skip to content
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

[HOTFIX/#25] 속성 파일 인식 불가 이슈 해결 및 외부 파일 주입 방식 적용 #26

Merged
merged 11 commits into from
Dec 7, 2024

Conversation

yummygyudon
Copy link
Member

Related Issue 🚀

Work Description ✏️

PR Point 📸

- 의미 전달을 위해 이름에 `OAuth` 키워드를 추가함으로서 쓰이는 범위를 명시했습니다.
- 부족하게 정의되어 있는 `playground` 에 대한 내용을 `external.yaml`에 반영했습니다.
… Bean 등록 제거

- 사용되지 않는 `AuthProperty` 클래스를 삭제하고 이에 대해 등록 Config 파일에서도 제거했습니다.
`-Dspring.config.additional-location` 명령 옵션 추가를 통해 볼륨 마운트로 주입되는 외부 파일을 인식할 수 있도록 했습니다.
@yummygyudon yummygyudon added the 🔨 fix 버그를 발견하여 코드를 수정한 경우(spring boot 내의 기능 코드) label Dec 6, 2024
@yummygyudon yummygyudon self-assigned this Dec 6, 2024
@yummygyudon yummygyudon linked an issue Dec 6, 2024 that may be closed by this pull request
5 tasks
Copy link

height bot commented Dec 6, 2024

Link Height tasks by mentioning a task ID in the pull request title or commit messages, or description and comments with the keyword link (e.g. "Link T-123").

💡Tip: You can also use "Close T-X" to automatically close a task when the pull request is merged.

Copy link
Contributor

@sung-silver sung-silver left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다! 현욱오빠가 이거 머지되면 고치는게 더 나을까요??

@@ -73,18 +73,17 @@ private FormBody createTokenRequestFormBody(final String code) {
private String createClientSecret() {
Date now = new Date();
PrivateKey privateKey =
KeyFileUtil.getPrivateKey(appleProperty.apple().key().path())
KeyFileUtil.getPrivateKey(appleOAuthProperty.key().path())
.orElseThrow(() -> new ClientRequestException(FAIL_READ_APPLE_PRIVATE_KEY_FILE));

return Jwts.builder() // 토큰 생성 로직은 tokenProvider? 근데 얘는 parse는 없음
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

저의.. 고민의 흔적을 안지웠네요 나중에 지우겠습니다 ㅋㅋㅋ ㅜ

Comment on lines -98 to -113

@Bean
public CorsConfigurationSource corsConfigurationSource() {
CorsConfiguration configuration = new CorsConfiguration();

configuration.addAllowedOrigin(authProperty.client().url());
configuration.addAllowedHeader(ALL);
configuration.addAllowedMethod(ALL);
configuration.setAllowCredentials(true);

UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();

source.registerCorsConfiguration(PATTERN_ALL, configuration);

return source;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확인했습니다!

@yummygyudon yummygyudon merged commit 7b9a101 into dev Dec 7, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🔨 fix 버그를 발견하여 코드를 수정한 경우(spring boot 내의 기능 코드) size/L
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[HOT FIX] 속성 파일 불일치 및 배포 환경 파일 주입 방식 해결
2 participants