feat(content-ranking): 랭킹 공개 시각 정책을 추가한다

This commit is contained in:
2026-06-24 23:44:42 +09:00
parent 6b702de932
commit 9489458b35
3 changed files with 23 additions and 0 deletions

View File

@@ -25,7 +25,15 @@ class CreatorRankingPeriodPolicy {
)
}
fun resolveVisibleFromAtUtc(aggregationEndAtKst: LocalDateTime): LocalDateTime {
return aggregationEndAtKst.plusHours(VISIBLE_DELAY_HOURS)
.atZone(KST_ZONE)
.withZoneSameInstant(UTC_ZONE)
.toLocalDateTime()
}
companion object {
private const val VISIBLE_DELAY_HOURS = 9L
private val KST_ZONE: ZoneId = ZoneId.of("Asia/Seoul")
private val UTC_ZONE: ZoneId = ZoneId.of("UTC")
}

View File

@@ -0,0 +1,5 @@
package kr.co.vividnext.sodalive.v2.ranking.domain
enum class CreatorRankingType {
WEEKLY
}