Open-source multiplayer game server compatible with the RuneScape client
https://www.openrs2.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
832 B
27 lines
832 B
package org.openrs2.archive
|
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper
|
|
import jakarta.inject.Inject
|
|
import jakarta.inject.Provider
|
|
import org.openrs2.yaml.Yaml
|
|
import java.nio.file.Files
|
|
import java.nio.file.Path
|
|
|
|
public class ArchiveConfigProvider @Inject constructor(
|
|
@Yaml private val mapper: ObjectMapper
|
|
) : Provider<ArchiveConfig> {
|
|
override fun get(): ArchiveConfig {
|
|
if (Files.notExists(CONFIG_PATH)) {
|
|
Files.copy(EXAMPLE_CONFIG_PATH, CONFIG_PATH)
|
|
}
|
|
|
|
return Files.newBufferedReader(CONFIG_PATH).use { reader ->
|
|
mapper.readValue(reader, ArchiveConfig::class.java)
|
|
}
|
|
}
|
|
|
|
private companion object {
|
|
private val CONFIG_PATH = Path.of("etc/archive.yaml")
|
|
private val EXAMPLE_CONFIG_PATH = Path.of("etc/archive.example.yaml")
|
|
}
|
|
}
|
|
|