X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fpages%2FLikePage.kt;h=ef622df8d8002baa7e024703a046febab7276797;hb=d63b7445567b65ffdbd50fa8f7ffbfea1304dff9;hp=43753a329d1fb31aaf0c8afadfc1b408b19f648b;hpb=ffd92ca2374c0b2218e583d02e0bdd24b8c110ae;p=Sone.git diff --git a/src/main/kotlin/net/pterodactylus/sone/web/pages/LikePage.kt b/src/main/kotlin/net/pterodactylus/sone/web/pages/LikePage.kt index 43753a3..ef622df 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/pages/LikePage.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/pages/LikePage.kt @@ -1,5 +1,6 @@ package net.pterodactylus.sone.web.pages +import net.pterodactylus.sone.data.Sone import net.pterodactylus.sone.utils.isPOST import net.pterodactylus.sone.utils.parameters import net.pterodactylus.sone.web.WebInterface @@ -10,20 +11,18 @@ import net.pterodactylus.util.template.TemplateContext /** * Page that lets the user like [net.pterodactylus.sone.data.Post]s and [net.pterodactylus.sone.data.Reply]s. */ -class LikePage(template: Template, webInterface: WebInterface) - : SoneTemplatePage("like.html", template, "Page.Like.Title", webInterface, true) { +class LikePage(template: Template, webInterface: WebInterface) : + LoggedInPage("like.html", template, "Page.Like.Title", webInterface) { - override fun handleRequest(freenetRequest: FreenetRequest, templateContext: TemplateContext) { + override fun handleRequest(freenetRequest: FreenetRequest, currentSone: Sone, templateContext: TemplateContext) { if (freenetRequest.isPOST) { - getCurrentSone(freenetRequest.toadletContext)!!.let { currentSone -> - freenetRequest.parameters["type", 16]?.also { type -> - when(type) { - "post" -> currentSone.addLikedPostId(freenetRequest.parameters["post", 36]!!) - "reply" -> currentSone.addLikedReplyId(freenetRequest.parameters["reply", 36]!!) - } + freenetRequest.parameters["type", 16]?.also { type -> + when (type) { + "post" -> currentSone.addLikedPostId(freenetRequest.parameters["post", 36]!!) + "reply" -> currentSone.addLikedReplyId(freenetRequest.parameters["reply", 36]!!) } - throw RedirectException(freenetRequest.parameters["returnPage", 256]!!) } + throw RedirectException(freenetRequest.parameters["returnPage", 256]!!) } }