From 57ad2880b3ffa0ba6d65f57fb442d7d91765b795 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Thu, 26 Jul 2012 07:27:34 +0200 Subject: [PATCH] Add page to add an artist. --- .../demoscenemusic/page/admin/AddArtistPage.java | 72 ++++++++++++++++++++++ src/main/resources/templates/admin.add-artist | 12 ++++ src/main/resources/templates/admin.artists | 2 +- src/main/webapp/WEB-INF/web.xml.template | 4 ++ 4 files changed, 89 insertions(+), 1 deletion(-) create mode 100644 src/main/java/net/pterodactylus/demoscenemusic/page/admin/AddArtistPage.java create mode 100644 src/main/resources/templates/admin.add-artist diff --git a/src/main/java/net/pterodactylus/demoscenemusic/page/admin/AddArtistPage.java b/src/main/java/net/pterodactylus/demoscenemusic/page/admin/AddArtistPage.java new file mode 100644 index 0000000..f38a19a --- /dev/null +++ b/src/main/java/net/pterodactylus/demoscenemusic/page/admin/AddArtistPage.java @@ -0,0 +1,72 @@ +/* + * DemosceneMusic - AddArtistPage.java - Copyright © 2012 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.demoscenemusic.page.admin; + +import net.pterodactylus.demoscenemusic.core.Core; +import net.pterodactylus.demoscenemusic.data.Artist; +import net.pterodactylus.demoscenemusic.page.ServletRequest; +import net.pterodactylus.util.database.DatabaseException; +import net.pterodactylus.util.template.Template; +import net.pterodactylus.util.template.TemplateContext; +import net.pterodactylus.util.template.TemplateContextFactory; +import net.pterodactylus.util.web.Method; +import net.pterodactylus.util.web.RedirectException; + +/** + * Page that lets the user add an artist. + * + * @author David ‘Bombe’ Roden + */ +public class AddArtistPage extends AdminBasePage { + + /** + * Creates a new “add artist” page. + * + * @param core + * The core + * @param templateContextFactory + * The template context factory + * @param template + * The template to render + */ + public AddArtistPage(Core core, TemplateContextFactory templateContextFactory, Template template) { + super(core, templateContextFactory, template, "admin.add-artist"); + } + + // + // BASEPAGE METHODS + // + + /** + * {@inheritDoc} + */ + @Override + protected void processTemplate(TemplateContext templateContext, ServletRequest request) throws RedirectException { + super.processTemplate(templateContext, request); + if (request.getMethod() == Method.POST) { + String name = request.getServletRequest().getParameter("name"); + try { + Artist artist = getCore().getDataManager().createArtist(name); + throw new RedirectException("admin.edit-artist?artist=" + artist.getId()); + } catch (DatabaseException de1) { + throw new RuntimeException("Could not create artist.", de1); + } + } + } + +} diff --git a/src/main/resources/templates/admin.add-artist b/src/main/resources/templates/admin.add-artist new file mode 100644 index 0000000..889edde --- /dev/null +++ b/src/main/resources/templates/admin.add-artist @@ -0,0 +1,12 @@ +<%include include/header title=artist.name> + +

Add Artist

+ +
+ + + + +
+ +<%include include/footer> \ No newline at end of file diff --git a/src/main/resources/templates/admin.artists b/src/main/resources/templates/admin.artists index b902c4c..5dfa578 100644 --- a/src/main/resources/templates/admin.artists +++ b/src/main/resources/templates/admin.artists @@ -8,6 +8,6 @@ <%last><%/last> <%/foreach> -add new artist +add new artist <%include include/footer> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/web.xml.template b/src/main/webapp/WEB-INF/web.xml.template index 258819c..d1bc98e 100644 --- a/src/main/webapp/WEB-INF/web.xml.template +++ b/src/main/webapp/WEB-INF/web.xml.template @@ -69,6 +69,10 @@ net.pterodactylus.demoscenemusic.page.TrackPage + admin.add-artist + net.pterodactylus.demoscenemusic.page.admin.AddArtistPage + + admin.artists net.pterodactylus.demoscenemusic.page.admin.ArtistsAdminPage -- 2.7.4