X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FFollowSoneAjaxPage.kt;h=eea51200769a740cf396bb3e853cc17e27c812fa;hp=b37b48a39893b4b42f7ff3733ebd5c71a9589799;hb=ca45de0dcbd2e361ab630bbee1d47ff6cf34d97c;hpb=e845284d2f10cf6b0b405966d48938ef1fea0a38 diff --git a/src/main/kotlin/net/pterodactylus/sone/web/ajax/FollowSoneAjaxPage.kt b/src/main/kotlin/net/pterodactylus/sone/web/ajax/FollowSoneAjaxPage.kt index b37b48a..eea5120 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/ajax/FollowSoneAjaxPage.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/ajax/FollowSoneAjaxPage.kt @@ -1,22 +1,22 @@ package net.pterodactylus.sone.web.ajax import net.pterodactylus.sone.data.Sone -import net.pterodactylus.sone.utils.also -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 net.pterodactylus.sone.web.page.* +import javax.inject.Inject /** * AJAX page that lets a Sone follow another Sone. */ -class FollowSoneAjaxPage(webInterface: WebInterface) : LoggedInJsonPage("followSone.ajax", webInterface) { +@ToadletPath("followSone.ajax") +class FollowSoneAjaxPage @Inject constructor(webInterface: WebInterface) : LoggedInJsonPage(webInterface) { override fun createJsonObject(currentSone: Sone, request: FreenetRequest) = request.parameters["sone"] - .let(webInterface.core::getSone) - ?.also { webInterface.core.followSone(currentSone, it.id) } - ?.also(webInterface.core::markSoneKnown) + ?.let(core::getSone) + ?.also { core.followSone(currentSone, it.id) } + ?.also(core::markSoneKnown) ?.let { createSuccessJsonObject() } ?: createErrorJsonObject("invalid-sone-id")