X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FDistrustAjaxPage.kt;h=10384dfd159ed669aa9b98820b1d34825c3659ab;hp=0c56341efcfd624f462d249d812d887874e9137c;hb=210f03a3afc928e3bdba697957daa35bd8ffe4e5;hpb=be0349bd60c00fb7bc32d5b6d62270e1a46abdda diff --git a/src/main/kotlin/net/pterodactylus/sone/web/ajax/DistrustAjaxPage.kt b/src/main/kotlin/net/pterodactylus/sone/web/ajax/DistrustAjaxPage.kt index 0c56341..10384df 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/ajax/DistrustAjaxPage.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/ajax/DistrustAjaxPage.kt @@ -1,26 +1,29 @@ package net.pterodactylus.sone.web.ajax import net.pterodactylus.sone.core.Core +import net.pterodactylus.sone.data.Sone import net.pterodactylus.sone.utils.let import net.pterodactylus.sone.utils.parameters import net.pterodactylus.sone.web.WebInterface import net.pterodactylus.sone.web.page.FreenetRequest +import javax.inject.Inject /** * AJAX page that lets the user distrust a Sone. * * @see Core.distrustSone(Sone, Sone) */ -class DistrustAjaxPage(webInterface: WebInterface) : JsonPage("distrustSone.ajax", webInterface) { +class DistrustAjaxPage @Inject constructor(webInterface: WebInterface) : + LoggedInJsonPage("distrustSone.ajax", webInterface) { - override fun createJsonObject(request: FreenetRequest) = + override fun createJsonObject(currentSone: Sone, request: FreenetRequest) = request.parameters["sone"] - .let(webInterface.core::getSone) + ?.let(core::getSone) ?.let { sone -> createSuccessJsonObject() - .put("trustValue", webInterface.core.preferences.negativeTrust) + .put("trustValue", core.preferences.negativeTrust) .also { - webInterface.core.distrustSone(getCurrentSone(request.toadletContext), sone) + core.distrustSone(currentSone, sone) } } ?: createErrorJsonObject("invalid-sone-id")