✨ Use @TemplatePath annotations on most pages
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / DeleteAlbumPage.kt
1 package net.pterodactylus.sone.web.pages
2
3 import net.pterodactylus.sone.data.Sone
4 import net.pterodactylus.sone.main.*
5 import net.pterodactylus.sone.utils.isPOST
6 import net.pterodactylus.sone.web.WebInterface
7 import net.pterodactylus.sone.web.page.*
8 import net.pterodactylus.util.template.Template
9 import net.pterodactylus.util.template.TemplateContext
10 import javax.inject.Inject
11
12 /**
13  * Page that lets the user delete an {@link Album}.
14  */
15 @TemplatePath("/templates/deleteAlbum.html")
16 class DeleteAlbumPage @Inject constructor(template: Template, webInterface: WebInterface, loaders: Loaders, templateRenderer: TemplateRenderer):
17                 LoggedInPage("deleteAlbum.html", template, "Page.DeleteAlbum.Title", webInterface, loaders, templateRenderer) {
18
19         override fun handleRequest(soneRequest: SoneRequest, currentSone: Sone, templateContext: TemplateContext) {
20                 if (soneRequest.isPOST) {
21                         val album = soneRequest.core.getAlbum(soneRequest.httpRequest.getPartAsStringFailsafe("album", 36)) ?: throw RedirectException("invalid.html")
22                         if (!album.sone.isLocal) {
23                                 throw RedirectException("noPermission.html")
24                         }
25                         if (soneRequest.httpRequest.getPartAsStringFailsafe("abortDelete", 4) == "true") {
26                                 throw RedirectException("imageBrowser.html?album=${album.id}")
27                         }
28                         soneRequest.core.deleteAlbum(album)
29                         throw RedirectException(if (album.parent.isRoot) "imageBrowser.html?sone=${album.sone.id}" else "imageBrowser.html?album=${album.parent.id}")
30                 }
31                 val album = soneRequest.core.getAlbum(soneRequest.httpRequest.getParam("album"))
32                 templateContext["album"] = album ?: throw RedirectException("invalid.html")
33         }
34
35 }