1 package net.pterodactylus.sone.web.pages
3 import net.pterodactylus.sone.data.Sone
4 import net.pterodactylus.sone.utils.isPOST
5 import net.pterodactylus.sone.utils.parameters
6 import net.pterodactylus.sone.web.WebInterface
7 import net.pterodactylus.sone.web.page.FreenetRequest
8 import net.pterodactylus.util.template.Template
9 import net.pterodactylus.util.template.TemplateContext
10 import javax.inject.Inject
13 * This page lets the user unfollow another Sone.
15 class UnfollowSonePage @Inject constructor(template: Template, webInterface: WebInterface) :
16 LoggedInPage("unfollowSone.html", template, "Page.UnfollowSone.Title", webInterface) {
18 override fun handleRequest(freenetRequest: FreenetRequest, currentSone: Sone, templateContext: TemplateContext) {
19 if (freenetRequest.isPOST) {
20 freenetRequest.parameters["sone"]!!.split(Regex("[ ,]+"))
21 .forEach { webInterface.core.unfollowSone(currentSone, it) }
22 throw RedirectException(freenetRequest.parameters["returnPage", 256])