♻️ Move throwing redirect exception into method
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / CreateReplyPage.kt
index 92a015a..7714b77 100644 (file)
@@ -13,8 +13,9 @@ import javax.inject.*
  * This page lets the user post a reply to a post.
  */
 @TemplatePath("/templates/createReply.html")
-class CreateReplyPage @Inject constructor(webInterface: WebInterface, loaders: Loaders, templateRenderer: TemplateRenderer):
-               LoggedInPage("createReply.html", "Page.CreateReply.Title", webInterface, loaders, templateRenderer) {
+@ToadletPath("createReply.html")
+class CreateReplyPage @Inject constructor(webInterface: WebInterface, loaders: Loaders, templateRenderer: TemplateRenderer) :
+               LoggedInPage("Page.CreateReply.Title", webInterface, loaders, templateRenderer) {
 
        override fun handleRequest(soneRequest: SoneRequest, currentSone: Sone, templateContext: TemplateContext) {
                val postId = soneRequest.httpRequest.getPartAsStringFailsafe("post", 36).apply { templateContext["postId"] = this }
@@ -25,10 +26,10 @@ class CreateReplyPage @Inject constructor(webInterface: WebInterface, loaders: L
                                templateContext["errorTextEmpty"] = true
                                return
                        }
-                       val post = soneRequest.core.getPost(postId) ?: throw RedirectException("noPermission.html")
+                       val post = soneRequest.core.getPost(postId) ?: redirectTo("noPermission.html")
                        val sender = soneRequest.core.getLocalSone(soneRequest.httpRequest.getPartAsStringFailsafe("sender", 43)) ?: currentSone
                        soneRequest.core.createReply(sender, post, TextFilter.filter(soneRequest.httpRequest.getHeader("Host"), text))
-                       throw RedirectException(returnPage)
+                       redirectTo(returnPage)
                }
        }