From: David ‘Bombe’ Roden Date: Tue, 31 Jul 2012 06:05:41 +0000 (+0200) Subject: Add page that lists all parties. X-Git-Url: https://git.pterodactylus.net/?p=demoscenemusic.git;a=commitdiff_plain;h=257828c82cfc12f1146387f741ce4c27ab2d94d3 Add page that lists all parties. --- diff --git a/src/main/java/net/pterodactylus/demoscenemusic/page/PartiesPage.java b/src/main/java/net/pterodactylus/demoscenemusic/page/PartiesPage.java new file mode 100644 index 0000000..3749bf2 --- /dev/null +++ b/src/main/java/net/pterodactylus/demoscenemusic/page/PartiesPage.java @@ -0,0 +1,73 @@ +/* + * DemosceneMusic - PartiesPage.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; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +import net.pterodactylus.demoscenemusic.core.Core; +import net.pterodactylus.demoscenemusic.data.DefaultParty; +import net.pterodactylus.demoscenemusic.data.Party; +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.RedirectException; + +/** + * Page that lists all parties. + * + * @author David ‘Bombe’ Roden + */ +public class PartiesPage extends BasePage { + + /** + * Creates a new parties page. + * + * @param core + * The core + * @param templateContextFactory + * The template context factory + * @param template + * The template to render + */ + public PartiesPage(Core core, TemplateContextFactory templateContextFactory, Template template) { + super(core, templateContextFactory, template, "party"); + } + + // + // BASEPAGE METHODS + // + + /** + * {@inheritDoc} + */ + @Override + protected void processTemplate(TemplateContext templateContext, ServletRequest request) throws RedirectException { + super.processTemplate(templateContext, request); + try { + List allParties = new ArrayList(getCore().getDataManager().getAllParties()); + Collections.sort(allParties, DefaultParty.NAME_YEAR_COMPARATOR); + templateContext.set("parties", allParties); + } catch (DatabaseException de1) { + throw new RuntimeException("Could not load parties.", de1); + } + } + +} diff --git a/src/main/resources/templates/include/footer b/src/main/resources/templates/include/footer index 8f106c1..7ab7745 100644 --- a/src/main/resources/templates/include/footer +++ b/src/main/resources/templates/include/footer @@ -13,6 +13,8 @@ admin: <%/if> artists | +parties +| <%ifnull currentUser> Login <%else> diff --git a/src/main/resources/templates/parties b/src/main/resources/templates/parties new file mode 100644 index 0000000..4f2410f --- /dev/null +++ b/src/main/resources/templates/parties @@ -0,0 +1,11 @@ +<%include include/header title=="Parties"> + +

Parties

+ +<%foreach parties party> + <%first><%/last> +<%/foreach> + +<%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 32d5e50..419315d 100644 --- a/src/main/webapp/WEB-INF/web.xml.template +++ b/src/main/webapp/WEB-INF/web.xml.template @@ -55,6 +55,10 @@ net.pterodactylus.demoscenemusic.page.OpenIdPage + parties + net.pterodactylus.demoscenemusic.page.PartiesPage + + party net.pterodactylus.demoscenemusic.page.PartyPage