Add page that lists all parties.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 31 Jul 2012 06:05:41 +0000 (08:05 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 31 Jul 2012 06:05:41 +0000 (08:05 +0200)
src/main/java/net/pterodactylus/demoscenemusic/page/PartiesPage.java [new file with mode: 0644]
src/main/resources/templates/include/footer
src/main/resources/templates/parties [new file with mode: 0644]
src/main/webapp/WEB-INF/web.xml.template

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 (file)
index 0000000..3749bf2
--- /dev/null
@@ -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 <http://www.gnu.org/licenses/>.
+ */
+
+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 <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+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<Party> allParties = new ArrayList<Party>(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);
+               }
+       }
+
+}
index 8f106c1..7ab7745 100644 (file)
@@ -13,6 +13,8 @@ admin:
 <%/if>
 <a href="artists">artists</a>
 |
 <%/if>
 <a href="artists">artists</a>
 |
+<a href="parties">parties</a>
+|
 <%ifnull currentUser>
 <a href="login">Login</a>
 <%else>
 <%ifnull currentUser>
 <a href="login">Login</a>
 <%else>
diff --git a/src/main/resources/templates/parties b/src/main/resources/templates/parties
new file mode 100644 (file)
index 0000000..4f2410f
--- /dev/null
@@ -0,0 +1,11 @@
+<%include include/header title=="Parties">
+
+<h2>Parties</h2>
+
+<%foreach parties party>
+       <%first><ul><%/first>
+       <li><a href="party?id=<%party.id|html>"><%party.name|html></a> (<%party.releases.size|html> releases)</li>
+       <%last></ul><%/last>
+<%/foreach>
+
+<%include include/footer>
\ No newline at end of file
index 32d5e50..419315d 100644 (file)
                        <param-value>net.pterodactylus.demoscenemusic.page.OpenIdPage</param-value>
                </init-param>
                <init-param>
                        <param-value>net.pterodactylus.demoscenemusic.page.OpenIdPage</param-value>
                </init-param>
                <init-param>
+                       <param-name>parties</param-name>
+                       <param-value>net.pterodactylus.demoscenemusic.page.PartiesPage</param-value>
+               </init-param>
+               <init-param>
                        <param-name>party</param-name>
                        <param-value>net.pterodactylus.demoscenemusic.page.PartyPage</param-value>
                </init-param>
                        <param-name>party</param-name>
                        <param-value>net.pterodactylus.demoscenemusic.page.PartyPage</param-value>
                </init-param>