Skip to content

Commit

Permalink
Automatically trigger the global update
Browse files Browse the repository at this point in the history
  • Loading branch information
schroda committed Jul 2, 2023
1 parent 61b211f commit d84ef4c
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class SystemPropertyOverrideDelegate(val getConfig: () -> Config, val moduleName
return when (T::class.simpleName) {
"Int" -> combined.toInt()
"Boolean" -> combined.toBoolean()
"Double" -> combined.toDouble()
// add more types as needed
else -> combined // covers String
} as T
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,19 @@ import mu.KotlinLogging
import org.kodein.di.DI
import org.kodein.di.conf.global
import org.kodein.di.instance
import suwayomi.tachidesk.manga.controller.UpdateController
import suwayomi.tachidesk.manga.impl.Category
import suwayomi.tachidesk.manga.impl.CategoryManga
import suwayomi.tachidesk.manga.impl.Chapter
import suwayomi.tachidesk.manga.model.dataclass.CategoryDataClass
import suwayomi.tachidesk.manga.model.dataclass.IncludeInUpdate
import suwayomi.tachidesk.manga.model.dataclass.MangaDataClass
import suwayomi.tachidesk.manga.model.table.MangaStatus
import suwayomi.tachidesk.server.serverConfig
import java.util.Date
import java.util.Timer
import java.util.TimerTask
import java.util.concurrent.ConcurrentHashMap
import java.util.prefs.Preferences

class Updater : IUpdater {
private val logger = KotlinLogging.logger {}
Expand All @@ -43,6 +47,39 @@ class Updater : IUpdater {

private val semaphore = Semaphore(serverConfig.maxParallelUpdateRequests)

private val lastAutomatedUpdateKey = "lastAutomatedUpdateKey"
private val preferences = Preferences.userNodeForPackage(Updater::class.java)

private val updateTimer = Timer()
private var currentUpdateTask: TimerTask? = null

init {
scheduleUpdateTask()
}

private fun scheduleUpdateTask() {
val updateInterval = (serverConfig.globalUpdateInterval * 60 * 60 * 1000).toLong()
val lastAutomaticUpdate = preferences.getLong(lastAutomatedUpdateKey, 0)
val initialDelay = updateInterval - (System.currentTimeMillis() - lastAutomaticUpdate) % updateInterval

currentUpdateTask?.cancel()
currentUpdateTask = object : TimerTask() {
override fun run() {
preferences.putLong(lastAutomatedUpdateKey, System.currentTimeMillis())

if (status.value.running) {
logger.debug { "Global update is already in progress, do not trigger global update" }
return
}

logger.info { "Trigger global update (interval= ${serverConfig.globalUpdateInterval}h, lastAutomaticUpdate= ${Date(lastAutomaticUpdate)})" }
addCategoriesToUpdateQueue(Category.getCategoryList(), true)
}
}

updateTimer.scheduleAtFixedRate(currentUpdateTask, initialDelay, updateInterval)
}

private fun getOrCreateUpdateChannelFor(source: String): Channel<UpdateJob> {
return updateChannels.getOrPut(source) {
logger.debug { "getOrCreateUpdateChannelFor: created channel for $source - channels: ${updateChannels.size + 1}" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class ServerConfig(getConfig: () -> Config, moduleName: String = MODULE_NAME) :
var excludeUnreadChapters: Boolean by overridableConfig
var excludeNotStarted: Boolean by overridableConfig
var excludeCompleted: Boolean by overridableConfig
var globalUpdateInterval: Double by overridableConfig

// Authentication
var basicAuthEnabled: Boolean by overridableConfig
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,12 @@ fun applicationSetup() {
// Application dirs
val applicationDirs = ApplicationDirs()

val updater = Updater()

DI.global.addImport(
DI.Module("Server") {
bind<ApplicationDirs>() with singleton { applicationDirs }
bind<IUpdater>() with singleton { Updater() }
bind<IUpdater>() with singleton { updater }
bind<JsonMapper>() with singleton { JavalinJackson() }
bind<Json>() with singleton { Json { ignoreUnknownKeys = true } }
}
Expand Down
1 change: 1 addition & 0 deletions server/src/main/resources/server-reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ server.maxParallelUpdateRequests = 10 # sets how many sources can be updated in
server.excludeUnreadChapters = true
server.excludeNotStarted = true
server.excludeCompleted = true
server.globalUpdateInterval = 6 # time in hours (doesn't have to be full hours e.g. 5.5) - default: 6 hours - interval in which the global update will be automatically triggered

# Authentication
server.basicAuthEnabled = false
Expand Down

0 comments on commit d84ef4c

Please sign in to comment.