-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #121 from mash-up-kr/feature/fcm_fine_remind_batch
Implement Remind Fine Batch
- Loading branch information
Showing
20 changed files
with
238 additions
and
8 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
3 changes: 3 additions & 0 deletions
3
moit-api/src/main/kotlin/com/mashup/moit/controller/user/dto/UserFcmTokenRequest.kt
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,3 @@ | ||
package com.mashup.moit.controller.user.dto | ||
|
||
data class UserFcmTokenRequest(val fcmToken: String?) |
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
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
71 changes: 71 additions & 0 deletions
71
moit-api/src/main/kotlin/com/mashup/moit/scheduler/FineRemindNotiPushScheduler.kt
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,71 @@ | ||
package com.mashup.moit.scheduler | ||
|
||
import com.mashup.moit.domain.fine.FineService | ||
import com.mashup.moit.domain.moit.MoitService | ||
import com.mashup.moit.domain.study.StudyService | ||
import com.mashup.moit.domain.user.UserService | ||
import com.mashup.moit.infra.event.EventProducer | ||
import com.mashup.moit.infra.event.RemindFineNotificationPushEvent | ||
import com.mashup.moit.infra.fcm.FCMNotificationService | ||
import com.mashup.moit.infra.fcm.FineRemindNotification | ||
import org.joda.time.LocalDateTime | ||
import org.slf4j.Logger | ||
import org.slf4j.LoggerFactory | ||
import org.springframework.scheduling.annotation.Async | ||
import org.springframework.scheduling.annotation.Scheduled | ||
import org.springframework.stereotype.Component | ||
|
||
@Component | ||
class FineRemindNotiPushScheduler( | ||
private val userService: UserService, | ||
private val moitService: MoitService, | ||
private val studyService: StudyService, | ||
private val fineService: FineService, | ||
private val fcmNotificationService: FCMNotificationService, | ||
private val eventProducer: EventProducer | ||
) { | ||
|
||
val logger: Logger = LoggerFactory.getLogger(FineRemindNotiPushScheduler::class.java) | ||
|
||
@Scheduled(cron = "0 30 10 * * *") | ||
@Async("pushSchedulerExecutor") | ||
fun pushRemindFineNotification() { | ||
val scheduleContext = LocalDateTime.now() | ||
|
||
val unrequestedFines = fineService.getUnrequestedFines() | ||
logger.info("Remind {} fines! Start Push Notification at {}.", unrequestedFines.size, scheduleContext) | ||
|
||
val unrequestedFineUserMap = userService | ||
.findUsersById( | ||
unrequestedFines.map { fine -> fine.userId }.distinct() | ||
) | ||
.associateBy { user -> user.id } | ||
val unrequestedFineMoitMap = moitService | ||
.getMoitsByIds( | ||
unrequestedFines.map { fine -> fine.moitId }.toSet() | ||
) | ||
.associateBy { moit -> moit.id } | ||
val unrequestedFineStudyMap = studyService | ||
.findByStudyIds( | ||
unrequestedFines.map { fine -> fine.studyId }.distinct() | ||
) | ||
.associateBy { study -> study.id } | ||
|
||
for (fine in unrequestedFines) { | ||
val user = unrequestedFineUserMap[fine.userId] ?: continue | ||
val moit = unrequestedFineMoitMap[fine.moitId] ?: continue | ||
val study = unrequestedFineStudyMap[fine.studyId] ?: continue | ||
FineRemindNotification.of( | ||
user = user, | ||
moit = moit, | ||
study = study | ||
)?.let { notification -> fcmNotificationService.pushRemindFineNotification(notification) } | ||
} | ||
eventProducer.produce( | ||
RemindFineNotificationPushEvent( | ||
fineIds = unrequestedFines.map { fine -> fine.id }.toSet(), | ||
flushAt = java.time.LocalDateTime.now()) | ||
) | ||
logger.info("Done Push notification for {} fines, at {}", unrequestedFines.size, LocalDateTime.now()) | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -12,4 +12,5 @@ data class User( | |
val profileImage: Int, | ||
val email: String, | ||
val roles: Set<UserRole>, | ||
val fcmToken: String? | ||
) |
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
Oops, something went wrong.