Add session provider interface
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / DeleteProfileFieldPage.kt
1 package net.pterodactylus.sone.web.pages
2
3 import net.pterodactylus.sone.utils.isPOST
4 import net.pterodactylus.sone.web.pages.SoneTemplatePage
5 import net.pterodactylus.sone.web.WebInterface
6 import net.pterodactylus.sone.web.page.FreenetRequest
7 import net.pterodactylus.util.template.Template
8 import net.pterodactylus.util.template.TemplateContext
9
10 /**
11  * Page that lets the user confirm the deletion of a profile field.
12  */
13 class DeleteProfileFieldPage(template: Template, webInterface: WebInterface):
14                 SoneTemplatePage("deleteProfileField.html", template, "Page.DeleteProfileField.Title", webInterface, true) {
15
16         override fun handleRequest(request: FreenetRequest, templateContext: TemplateContext) {
17                 val currentSone = getCurrentSone(request.toadletContext)!!
18                 val field = currentSone.profile.getFieldById(request.httpRequest.getPartAsStringFailsafe("field", 36)) ?: throw RedirectException("invalid.html")
19                 templateContext["field"] = field
20                 if (request.isPOST) {
21                         if (request.httpRequest.getPartAsStringFailsafe("confirm", 4) == "true") {
22                                 currentSone.profile = currentSone.profile.apply { removeField(field) }
23                         }
24                         throw RedirectException("editProfile.html#profile-fields")
25                 }
26         }
27
28 }