X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fpages%2FLikePage.kt;h=afaee6aaa597451220f495c477628fe18c0b3fd2;hp=9f6191e118f51597aa29b5d3aa6cec32e66c79b8;hb=110a933c2724aba6a604fc5eed6372ff1e1e6144;hpb=c5d8b84dfb9ac96b386de5c4c0115260a73522c5 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 9f6191e..afaee6a 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/pages/LikePage.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/pages/LikePage.kt @@ -1,29 +1,29 @@ package net.pterodactylus.sone.web.pages +import net.pterodactylus.sone.data.Sone +import net.pterodactylus.sone.main.* import net.pterodactylus.sone.utils.isPOST import net.pterodactylus.sone.utils.parameters import net.pterodactylus.sone.web.WebInterface -import net.pterodactylus.sone.web.page.FreenetRequest -import net.pterodactylus.util.template.Template +import net.pterodactylus.sone.web.page.* import net.pterodactylus.util.template.TemplateContext +import javax.inject.Inject /** * 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 @Inject constructor(webInterface: WebInterface, loaders: Loaders, templateRenderer: TemplateRenderer) : + LoggedInPage("like.html", "Page.Like.Title", webInterface, loaders, templateRenderer) { - override fun handleRequest(request: FreenetRequest, templateContext: TemplateContext) { - if (request.isPOST) { - getCurrentSone(request.toadletContext)!!.let { currentSone -> - request.parameters["type", 16]?.also { type -> - when(type) { - "post" -> currentSone.addLikedPostId(request.parameters["post", 36]!!) - "reply" -> currentSone.addLikedReplyId(request.parameters["reply", 36]!!) - } + override fun handleRequest(soneRequest: SoneRequest, currentSone: Sone, templateContext: TemplateContext) { + if (soneRequest.isPOST) { + soneRequest.parameters["type", 16]?.also { type -> + when (type) { + "post" -> currentSone.addLikedPostId(soneRequest.parameters["post", 36]!!) + "reply" -> currentSone.addLikedReplyId(soneRequest.parameters["reply", 36]!!) } - throw RedirectException(request.parameters["returnPage", 256]!!) } + throw RedirectException(soneRequest.parameters["returnPage", 256]!!) } }