+++ /dev/null
-/*
- * 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 <http://www.gnu.org/licenses/>.
- */
-
-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 <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
- */
-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);
- }
-
-}
--- /dev/null
+package net.pterodactylus.sone.web
+
+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.POST
+
+/**
+ * Page that lets the user delete an {@link Album}.
+ */
+class DeleteAlbumPage(template: Template, webInterface: WebInterface):
+ SoneTemplatePage("deleteAlbum.html", template, "Page.DeleteAlbum.Title", webInterface, true) {
+
+ override fun handleRequest(request: FreenetRequest, templateContext: TemplateContext) {
+ val album = webInterface.core.getAlbum(request.httpRequest.getPartAsStringFailsafe("album", 36))
+ templateContext["album"] = album ?: throw RedirectException("invalid.html")
+ if (request.method == POST) {
+ if (!album.sone.isLocal) {
+ throw RedirectException("noPermission.html")
+ }
+ if (request.httpRequest.getPartAsStringFailsafe("abortDelete", 4) == "true") {
+ throw RedirectException("imageBrowser.html?album=${album.id}")
+ }
+ webInterface.core.deleteAlbum(album)
+ throw RedirectException(if (album.parent.isRoot) "imageBrowser.html?sone=${album.sone.id}" else "imageBrowser.html?album=${album.parent.id}")
+ }
+ }
+
+}
/**
* Unit test for [DeleteAlbumPage].
*/
-class DeleteAlbumPageTest : WebPageTest() {
+class DeleteAlbumPageTest: WebPageTest() {
private val page = DeleteAlbumPage(template, webInterface)
whenever(sone.id).thenReturn("sone-id")
whenever(sone.isLocal).thenReturn(true)
whenever(parentAlbum.id).thenReturn("parent-id")
+ whenever(parentAlbum.isRoot).thenReturn(true)
whenever(album.id).thenReturn("album-id")
whenever(album.sone).thenReturn(sone)
whenever(album.parent).thenReturn(parentAlbum)
}
@Test
+ fun `page returns correct path`() {
+ assertThat(page.path, equalTo("deleteAlbum.html"))
+ }
+
+ @Test
+ fun `page requires login`() {
+ assertThat(page.requiresLogin(), equalTo(true))
+ }
+
+ @Test
fun `get request with invalid album ID results in redirect to invalid page`() {
request("", GET)
whenever(core.getAlbum(anyString())).thenReturn(null)
val album = mock<Album>()
addAlbum("album-id", album)
addHttpRequestParameter("album", "album-id")
- page.handleRequest(freenetRequest, templateContext)
+ page.processTemplate(freenetRequest, templateContext)
assertThat(templateContext["album"], equalTo<Any>(album))
}
@Test
fun `album is deleted and page redirects to album if parent album is not root album`() {
request("", POST)
+ whenever(parentAlbum.isRoot).thenReturn(false)
whenever(sone.rootAlbum).thenReturn(mock<Album>())
addAlbum("album-id", album)
addHttpRequestParameter("album", "album-id")