✨ Add @ToadletPath annotation
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / UnlikePage.kt
1 package net.pterodactylus.sone.web.pages
2
3 import net.pterodactylus.sone.data.*
4 import net.pterodactylus.sone.main.*
5 import net.pterodactylus.sone.utils.*
6 import net.pterodactylus.sone.web.*
7 import net.pterodactylus.sone.web.page.*
8 import net.pterodactylus.util.template.*
9 import javax.inject.*
10
11 /**
12  * Page that lets the user unlike a [net.pterodactylus.sone.data.Post] or [net.pterodactylus.sone.data.Reply].
13  */
14 @ToadletPath("unlike.html")
15 class UnlikePage @Inject constructor(webInterface: WebInterface, loaders: Loaders, templateRenderer: TemplateRenderer) :
16                 LoggedInPage("unlike.html", "Page.Unlike.Title", webInterface, loaders, templateRenderer) {
17
18         override fun handleRequest(soneRequest: SoneRequest, currentSone: Sone, templateContext: TemplateContext) {
19                 if (soneRequest.isPOST) {
20                         when (soneRequest.parameters["type"]) {
21                                 "post" -> currentSone.removeLikedPostId(soneRequest.parameters["post"]!!)
22                                 "reply" -> currentSone.removeLikedReplyId(soneRequest.parameters["reply"]!!)
23                         }
24                         throw RedirectException(soneRequest.parameters["returnPage", 256])
25                 }
26         }
27
28 }