X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FDeleteAlbumPage.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FDeleteAlbumPage.java;h=0000000000000000000000000000000000000000;hb=58418a5d13a1e8da185f1982f662c34eec2c4b1a;hp=581266dfbcf3770733a06cf3c427a87ba57305d5;hpb=9c61b749711a041a40a5370c17fdaa23c10e7696;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/DeleteAlbumPage.java b/src/main/java/net/pterodactylus/sone/web/DeleteAlbumPage.java deleted file mode 100644 index 581266d..0000000 --- a/src/main/java/net/pterodactylus/sone/web/DeleteAlbumPage.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Sone - DeleteAlbumPage.java - Copyright © 2011–2016 David Roden - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package net.pterodactylus.sone.web; - -import net.pterodactylus.sone.data.Album; -import net.pterodactylus.sone.web.page.FreenetRequest; -import net.pterodactylus.util.template.Template; -import net.pterodactylus.util.template.TemplateContext; -import net.pterodactylus.util.web.Method; - -/** - * Page that lets the user delete an {@link Album}. - * - * @author David ‘Bombe’ Roden - */ -public class DeleteAlbumPage extends SoneTemplatePage { - - /** - * Creates a new “delete album” page. - * - * @param template - * The template to render - * @param webInterface - * The Sone web interface - */ - public DeleteAlbumPage(Template template, WebInterface webInterface) { - super("deleteAlbum.html", template, "Page.DeleteAlbum.Title", webInterface, true); - } - - /** - * {@inheritDoc} - */ - @Override - protected void handleRequest(FreenetRequest request, TemplateContext templateContext) throws RedirectException { - if (request.getMethod() == Method.POST) { - String albumId = request.getHttpRequest().getPartAsStringFailsafe("album", 36); - Album album = webInterface.getCore().getAlbum(albumId); - if (album == null) { - throw new RedirectException("invalid.html"); - } - if (!album.getSone().isLocal()) { - throw new RedirectException("noPermission.html"); - } - if (request.getHttpRequest().isPartSet("abortDelete")) { - throw new RedirectException("imageBrowser.html?album=" + album.getId()); - } - Album parentAlbum = album.getParent(); - webInterface.getCore().deleteAlbum(album); - if (parentAlbum.equals(album.getSone().getRootAlbum())) { - throw new RedirectException("imageBrowser.html?sone=" + album.getSone().getId()); - } - throw new RedirectException("imageBrowser.html?album=" + parentAlbum.getId()); - } - String albumId = request.getHttpRequest().getParam("album"); - Album album = webInterface.getCore().getAlbum(albumId); - if (album == null) { - throw new RedirectException("invalid.html"); - } - templateContext.set("album", album); - } - -}