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.
 
 
 
 
openrs2/archive/src/main/kotlin/org/openrs2/archive/web/KeysController.kt

27 lines
821 B

package org.openrs2.archive.web
import io.ktor.application.ApplicationCall
import io.ktor.response.respond
import io.ktor.thymeleaf.ThymeleafContent
import org.openrs2.archive.key.KeyExporter
import javax.inject.Inject
import javax.inject.Singleton
@Singleton
public class KeysController @Inject constructor(
private val exporter: KeyExporter
) {
public suspend fun index(call: ApplicationCall) {
val stats = exporter.count()
val analysis = exporter.analyse()
call.respond(ThymeleafContent("keys/index.html", mapOf("stats" to stats, "analysis" to analysis)))
}
public suspend fun exportAll(call: ApplicationCall) {
call.respond(exporter.exportAll())
}
public suspend fun exportValid(call: ApplicationCall) {
call.respond(exporter.exportValid())
}
}