-
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
[FEAT] 디스코드 알림 로직 추가 #126
Merged
Merged
[FEAT] 디스코드 알림 로직 추가 #126
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
1861f1a
chore: discord bot 의존성 추가
coli-geonwoo d27aeb1
feat: discord properties 구현
coli-geonwoo 1da6066
feat: discord notifier 구현
coli-geonwoo a9c2954
feat: discord notification aop 작성
coli-geonwoo e66a393
fix: discord 에러 픽스
coli-geonwoo 1035ea2
feat: 디스코드 알림 기능 구현
coli-geonwoo e84d4d3
style: 개행 추가
coli-geonwoo 1cedd98
chore: 테스트용 yml 파일 수정
coli-geonwoo 06da828
refactor: channelNotifier 인터페이스화
coli-geonwoo 073962d
test: 테스트에 controller mocking
coli-geonwoo 97e577e
test: channelNotifier 모킹
coli-geonwoo 713f971
chore: ChannelNotifier 리네임
coli-geonwoo 0815fa6
chore: discord 설정을 prod,dev yml파일에 반영
coli-geonwoo c2ec37b
chore: client 패키지 구조화
coli-geonwoo 2e39b21
refactor: config 파일로 프로파이별 의존성 관리
coli-geonwoo 620144a
chore : test base에서 notifier 모킹 제거
coli-geonwoo 16a8c06
refactor: discordnotifier 수동빈 등록에 따른 컴포넌트화 제거
coli-geonwoo f2eba9a
refactor: norifierConfig에서 properties 임포트
coli-geonwoo 01e2eac
refactor: ConsoleNotifier에 에러메시지 출력기능도 추가
coli-geonwoo 8898de9
refactor : DiscordProperties 가 특정 프로파일에만 등록되도록 변경
leegwichan c7ce165
refactor: ConsoleNotifier에 log로 출력
coli-geonwoo 5b24092
refactor: 디스코드 기준 개행문자로 통일
coli-geonwoo 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
15 changes: 15 additions & 0 deletions
15
src/main/java/com/debatetimer/client/notifier/ConsoleNotifier.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,15 @@ | ||
package com.debatetimer.client.notifier; | ||
|
||
import lombok.extern.slf4j.Slf4j; | ||
|
||
@Slf4j | ||
public class ConsoleNotifier implements ErrorNotifier { | ||
|
||
private static final String ERROR_SEND_MESSAGE = "에러 정보가 채널로 발송되었습니다."; | ||
|
||
@Override | ||
public void sendErrorMessage(Throwable throwable) { | ||
log.error(ERROR_SEND_MESSAGE); | ||
log.error(throwable.getMessage()); | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
src/main/java/com/debatetimer/client/notifier/DiscordNotifier.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,54 @@ | ||
package com.debatetimer.client.notifier; | ||
|
||
import com.debatetimer.exception.custom.DTInitializationException; | ||
import com.debatetimer.exception.errorcode.InitializationErrorCode; | ||
import java.util.Arrays; | ||
import java.util.stream.Collectors; | ||
import lombok.extern.slf4j.Slf4j; | ||
import net.dv8tion.jda.api.JDA; | ||
import net.dv8tion.jda.api.JDABuilder; | ||
import net.dv8tion.jda.api.entities.channel.concrete.TextChannel; | ||
|
||
@Slf4j | ||
public class DiscordNotifier implements ErrorNotifier { | ||
|
||
private static final String NOTIFICATION_PREFIX = ":rotating_light: [**Error 발생!**]\n```\n"; | ||
private static final String DISCORD_LINE_SEPARATOR = "/n"; | ||
private static final int STACK_TRACE_LENGTH = 10; | ||
|
||
private final DiscordProperties properties; | ||
private final JDA jda; | ||
|
||
public DiscordNotifier(DiscordProperties discordProperties) { | ||
this.properties = discordProperties; | ||
this.jda = initializeJda(properties.getToken()); | ||
} | ||
|
||
private JDA initializeJda(String token) { | ||
try { | ||
return JDABuilder.createDefault(token).build().awaitReady(); | ||
} catch (InterruptedException e) { | ||
throw new DTInitializationException(InitializationErrorCode.JDA_INITIALIZATION_FAIL); | ||
} | ||
} | ||
|
||
public void sendErrorMessage(Throwable throwable) { | ||
TextChannel channel = jda.getTextChannelById(properties.getChannelId()); | ||
String errorMessage = throwable.getMessage(); | ||
String stackTrace = getStackTraceAsString(throwable); | ||
|
||
String errorNotification = NOTIFICATION_PREFIX | ||
+ errorMessage | ||
+ DISCORD_LINE_SEPARATOR | ||
+ stackTrace; | ||
channel.sendMessage(errorNotification).queue(); | ||
} | ||
|
||
private String getStackTraceAsString(Throwable throwable) { | ||
return Arrays.stream(throwable.getStackTrace()) | ||
.map(StackTraceElement::toString) | ||
.limit(STACK_TRACE_LENGTH) | ||
.collect(Collectors.joining(System.lineSeparator())); | ||
} | ||
} | ||
|
27 changes: 27 additions & 0 deletions
27
src/main/java/com/debatetimer/client/notifier/DiscordProperties.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,27 @@ | ||
package com.debatetimer.client.notifier; | ||
|
||
import com.debatetimer.exception.custom.DTInitializationException; | ||
import com.debatetimer.exception.errorcode.InitializationErrorCode; | ||
import lombok.Getter; | ||
import org.springframework.boot.context.properties.ConfigurationProperties; | ||
|
||
@Getter | ||
@ConfigurationProperties(prefix = "discord") | ||
public class DiscordProperties { | ||
|
||
private final String token; | ||
private final String channelId; | ||
|
||
public DiscordProperties(String token, String channelId) { | ||
validate(token); | ||
validate(channelId); | ||
this.token = token; | ||
this.channelId = channelId; | ||
} | ||
|
||
private void validate(String element) { | ||
if (element == null || element.isBlank()) { | ||
throw new DTInitializationException(InitializationErrorCode.DISCORD_PROPERTIES_EMPTY); | ||
} | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/com/debatetimer/client/notifier/ErrorNotifier.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,6 @@ | ||
package com.debatetimer.client.notifier; | ||
|
||
public interface ErrorNotifier { | ||
|
||
void sendErrorMessage(Throwable throwable); | ||
} |
2 changes: 1 addition & 1 deletion
2
...a/com/debatetimer/client/OAuthClient.java → ...debatetimer/client/oauth/OAuthClient.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
2 changes: 1 addition & 1 deletion
2
...m/debatetimer/client/OAuthProperties.java → ...tetimer/client/oauth/OAuthProperties.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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package com.debatetimer.config; | ||
|
||
|
||
import com.debatetimer.client.notifier.ConsoleNotifier; | ||
import com.debatetimer.client.notifier.DiscordNotifier; | ||
import com.debatetimer.client.notifier.DiscordProperties; | ||
import com.debatetimer.client.notifier.ErrorNotifier; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.boot.context.properties.EnableConfigurationProperties; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.Profile; | ||
|
||
public class NotifierConfig { | ||
|
||
@Profile({"dev", "prod"}) | ||
@Configuration | ||
@RequiredArgsConstructor | ||
@EnableConfigurationProperties(DiscordProperties.class) | ||
public static class DiscordNotifierConfig { | ||
|
||
private final DiscordProperties discordProperties; | ||
|
||
@Bean | ||
public ErrorNotifier discordNotifier() { | ||
return new DiscordNotifier(discordProperties); | ||
} | ||
} | ||
|
||
@Profile({"test", "local"}) | ||
@Configuration | ||
public static class ConsoleNotifierConfig { | ||
|
||
@Bean | ||
public ErrorNotifier consoleNotifier() { | ||
return new ConsoleNotifier(); | ||
} | ||
} | ||
} |
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
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: 5 additions & 0 deletions
5
src/test/java/com/debatetimer/DebateTimerApplicationTest.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
36 changes: 36 additions & 0 deletions
36
src/test/java/com/debatetimer/client/DiscordPropertiesTest.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,36 @@ | ||
package com.debatetimer.client; | ||
|
||
import static org.assertj.core.api.Assertions.assertThatThrownBy; | ||
|
||
import com.debatetimer.client.notifier.DiscordProperties; | ||
import com.debatetimer.exception.custom.DTInitializationException; | ||
import com.debatetimer.exception.errorcode.InitializationErrorCode; | ||
import org.junit.jupiter.api.Nested; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.NullAndEmptySource; | ||
import org.junit.jupiter.params.provider.ValueSource; | ||
|
||
class DiscordPropertiesTest { | ||
|
||
@Nested | ||
class Validate { | ||
|
||
@ParameterizedTest | ||
@NullAndEmptySource | ||
@ValueSource(strings = {"\n", "\t "}) | ||
void 디스코드봇_토큰이_비어있을_경우_예외를_발생시킨다(String empty) { | ||
assertThatThrownBy(() -> new DiscordProperties(empty, "channelId")) | ||
.isInstanceOf(DTInitializationException.class) | ||
.hasMessage(InitializationErrorCode.DISCORD_PROPERTIES_EMPTY.getMessage()); | ||
} | ||
|
||
@ParameterizedTest | ||
@NullAndEmptySource | ||
@ValueSource(strings = {"\n", "\t "}) | ||
void 디스코드_채널_아이디가_비어있을_경우_예외를_발생시킨다(String empty) { | ||
assertThatThrownBy(() -> new DiscordProperties("token", empty)) | ||
.isInstanceOf(DTInitializationException.class) | ||
.hasMessage(InitializationErrorCode.DISCORD_PROPERTIES_EMPTY.getMessage()); | ||
} | ||
} | ||
} |
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
2 changes: 1 addition & 1 deletion
2
src/test/java/com/debatetimer/controller/BaseControllerTest.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
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.
c.f. 프로파일이 여러 개 일 경우 앞에서부터 값을 세팅하고, 뒤의 프로파일에 값이 겹치는게 있다면 덮어씌워버립니다.
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.
오 이거 처음 알았네요