5c1abdf0d8f58ed698997579b5191590f5f22360
[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                 if (request.isPOST) {
19                         val field = currentSone.profile.getFieldById(request.httpRequest.getPartAsStringFailsafe("field", 36)) ?: throw RedirectException("invalid.html")
20                         if (request.httpRequest.getPartAsStringFailsafe("confirm", 4) == "true") {
21                                 currentSone.profile = currentSone.profile.apply { removeField(field) }
22                         }
23                         throw RedirectException("editProfile.html#profile-fields")
24                 }
25                 val field = currentSone.profile.getFieldById(request.httpRequest.getParam("field")) ?: throw RedirectException("invalid.html")
26                 templateContext["field"] = field
27         }
28
29 }