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()) } }