♻️ Use SoneRequest instead of FreenetRequest
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / LikePage.kt
index a92eb44..02f5043 100644 (file)
@@ -4,7 +4,7 @@ import net.pterodactylus.sone.data.Sone
 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.sone.web.page.*
 import net.pterodactylus.util.template.Template
 import net.pterodactylus.util.template.TemplateContext
 import javax.inject.Inject
@@ -15,15 +15,15 @@ import javax.inject.Inject
 class LikePage @Inject constructor(template: Template, webInterface: WebInterface) :
                LoggedInPage("like.html", template, "Page.Like.Title", webInterface) {
 
-       override fun handleRequest(freenetRequest: FreenetRequest, currentSone: Sone, templateContext: TemplateContext) {
-               if (freenetRequest.isPOST) {
-                       freenetRequest.parameters["type", 16]?.also { type ->
+       override fun handleRequest(soneRequest: SoneRequest, currentSone: Sone, templateContext: TemplateContext) {
+               if (soneRequest.isPOST) {
+                       soneRequest.parameters["type", 16]?.also { type ->
                                when (type) {
-                                       "post" -> currentSone.addLikedPostId(freenetRequest.parameters["post", 36]!!)
-                                       "reply" -> currentSone.addLikedReplyId(freenetRequest.parameters["reply", 36]!!)
+                                       "post" -> currentSone.addLikedPostId(soneRequest.parameters["post", 36]!!)
+                                       "reply" -> currentSone.addLikedReplyId(soneRequest.parameters["reply", 36]!!)
                                }
                        }
-                       throw RedirectException(freenetRequest.parameters["returnPage", 256]!!)
+                       throw RedirectException(soneRequest.parameters["returnPage", 256]!!)
                }
        }