Merge branch 'release-0.9.8'
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / TrustPage.kt
index a93dc2e..758ae07 100644 (file)
@@ -1,7 +1,7 @@
 package net.pterodactylus.sone.web.pages
 
+import net.pterodactylus.sone.data.Sone
 import net.pterodactylus.sone.utils.isPOST
-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
@@ -12,17 +12,15 @@ import net.pterodactylus.util.template.TemplateContext
  * Page that lets the user trust another Sone. This will assign a configurable
  * amount of trust to an identity.
  */
-class TrustPage(template: Template, webInterface: WebInterface):
-               SoneTemplatePage("trust.html", template, "Page.Trust.Title", webInterface, true) {
+class TrustPage(template: Template, webInterface: WebInterface) :
+               LoggedInPage("trust.html", template, "Page.Trust.Title", webInterface) {
 
-       override fun handleRequest(request: FreenetRequest, templateContext: TemplateContext) {
-               if (request.isPOST) {
-                       getCurrentSone(request.toadletContext)?.also { currentSone ->
-                               webInterface.core.getSone(request.parameters["sone"]).let { sone ->
-                                       webInterface.core.trustSone(currentSone, sone)
-                               }
+       override fun handleRequest(freenetRequest: FreenetRequest, currentSone: Sone, templateContext: TemplateContext) {
+               if (freenetRequest.isPOST) {
+                       webInterface.core.getSone(freenetRequest.parameters["sone"]!!)?.let { sone ->
+                               webInterface.core.trustSone(currentSone, sone)
                        }
-                       throw RedirectException(request.parameters["returnPage", 256])
+                       throw RedirectException(freenetRequest.parameters["returnPage", 256])
                }
        }