Add page that always requires a logged-in user
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / LikePage.kt
index 43753a3..7d6af18 100644 (file)
@@ -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,12 +11,11 @@ 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]!!)
@@ -23,7 +23,6 @@ class LikePage(template: Template, webInterface: WebInterface)
                                        }
                                }
                                throw RedirectException(freenetRequest.parameters["returnPage", 256]!!)
-                       }
                }
        }