-
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
Feature/#1 알림 기능 구현
- Loading branch information
Showing
10 changed files
with
135 additions
and
31 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
12 changes: 12 additions & 0 deletions
12
...o/io/urdego_notification_service/common/exception/notification/InvalidNotificationId.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,12 @@ | ||
package urdego.io.urdego_notification_service.common.exception.notification; | ||
|
||
import urdego.io.urdego_notification_service.common.exception.BaseException; | ||
import urdego.io.urdego_notification_service.common.exception.ExceptionMessage; | ||
|
||
public class InvalidNotificationId extends BaseException { | ||
public static final BaseException EXCEPTION = new InvalidNotificationId(); | ||
|
||
private InvalidNotificationId() { | ||
super(ExceptionMessage.INVALID_NOTIFICATION_ID); | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...go/io/urdego_notification_service/common/exception/notification/NotFoundNotification.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,12 @@ | ||
package urdego.io.urdego_notification_service.common.exception.notification; | ||
|
||
import urdego.io.urdego_notification_service.common.exception.BaseException; | ||
import urdego.io.urdego_notification_service.common.exception.ExceptionMessage; | ||
|
||
public class NotFoundNotification extends BaseException { | ||
public static final BaseException EXCEPTION = new NotFoundNotification(); | ||
|
||
private NotFoundNotification() { | ||
super(ExceptionMessage.NOT_FOUND_NOTIFICATION); | ||
} | ||
} |
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
9 changes: 9 additions & 0 deletions
9
src/main/java/urdego/io/urdego_notification_service/controller/dto/request/ReplyRequest.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,9 @@ | ||
package urdego.io.urdego_notification_service.controller.dto.request; | ||
|
||
import java.util.UUID; | ||
|
||
public record ReplyRequest( | ||
boolean isAccepted, | ||
String notificationId | ||
) { | ||
} |
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
20 changes: 10 additions & 10 deletions
20
src/main/java/urdego/io/urdego_notification_service/domain/service/NotificationService.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,24 +1,24 @@ | ||
package urdego.io.urdego_notification_service.domain.service; | ||
|
||
import urdego.io.urdego_notification_service.controller.dto.request.notification.NotificationRequest; | ||
import org.springframework.stereotype.Service; | ||
import urdego.io.urdego_notification_service.controller.dto.WebSocketMessage; | ||
import urdego.io.urdego_notification_service.controller.dto.request.ReplyRequest; | ||
import urdego.io.urdego_notification_service.controller.dto.request.notification.NotificationRequest; | ||
import urdego.io.urdego_notification_service.domain.entity.Notification; | ||
|
||
import java.util.List; | ||
import java.util.UUID; | ||
|
||
public interface NotificationService { | ||
//저장 | ||
void saveNotification(Notification notification); | ||
|
||
//메세지 발행 | ||
public WebSocketMessage<Notification> publishNotification(NotificationRequest notificationRequest); | ||
|
||
//사용자 별 메세지 확인 | ||
List<Object> getUserNotifications(Long userId); | ||
// 답장 및 읽음 상태 변경 | ||
Notification updateReadStatus(ReplyRequest request, Long userId); | ||
|
||
// 읽음 상태 저장 | ||
void updateReadStatus(Long userId, String lastReadMessageId); | ||
|
||
//읽음 상태 조회 | ||
String getLastReadMessage(String userId); | ||
|
||
void saveNotification(Notification notification); | ||
//조회 | ||
List<Notification> readNotificationList(Long userId); | ||
} |
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