🎨 Clean up imports
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / UnfollowSonePage.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  * This page lets the user unfollow another Sone.
13  */
14 class UnfollowSonePage @Inject constructor(webInterface: WebInterface, loaders: Loaders, templateRenderer: TemplateRenderer) :
15                 LoggedInPage("unfollowSone.html", "Page.UnfollowSone.Title", webInterface, loaders, templateRenderer) {
16
17         override fun handleRequest(soneRequest: SoneRequest, currentSone: Sone, templateContext: TemplateContext) {
18                 if (soneRequest.isPOST) {
19                         soneRequest.parameters["sone"]!!.split(Regex("[ ,]+"))
20                                         .forEach { soneRequest.core.unfollowSone(currentSone, it) }
21                         throw RedirectException(soneRequest.parameters["returnPage", 256])
22                 }
23         }
24
25 }