1 package net.pterodactylus.sone.web.pages
3 import net.pterodactylus.sone.data.Album.Modifier.AlbumTitleMustNotBeEmpty
4 import net.pterodactylus.sone.text.TextFilter
5 import net.pterodactylus.sone.utils.isPOST
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
12 * Page that lets the user create a new album.
14 class CreateAlbumPage(template: Template, webInterface: WebInterface):
15 SoneTemplatePage("createAlbum.html", template, "Page.CreateAlbum.Title", webInterface, true) {
17 override fun handleRequest(request: FreenetRequest, templateContext: TemplateContext) {
19 val name = request.httpRequest.getPartAsStringFailsafe("name", 64).trim()
21 templateContext["nameMissing"] = true
24 val description = request.httpRequest.getPartAsStringFailsafe("description", 256).trim()
25 val currentSone = webInterface.getCurrentSoneCreatingSession(request.toadletContext)
26 val parentId = request.httpRequest.getPartAsStringFailsafe("parent", 36)
27 val parent = if (parentId == "") currentSone.rootAlbum else webInterface.core.getAlbum(parentId)
28 val album = webInterface.core.createAlbum(currentSone, parent)
30 album.modify().apply {
32 setDescription(TextFilter.filter(request.httpRequest.getHeader("Host"), description))
34 } catch (e: AlbumTitleMustNotBeEmpty) {
35 throw RedirectException("emptyAlbumTitle.html")
37 webInterface.core.touchConfiguration()
38 throw RedirectException("imageBrowser.html?album=${album.id}")