22d27c8c4f5ff43ea502ae555d45c1fcb8c509fa
[Sone.git] / src / main / java / net / pterodactylus / sone / web / NewPage.java
1 /*
2  * Sone - NewPage.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.web;
19
20 import java.util.ArrayList;
21 import java.util.Collections;
22 import java.util.HashSet;
23 import java.util.List;
24 import java.util.Set;
25
26 import net.pterodactylus.sone.data.Post;
27 import net.pterodactylus.sone.data.PostReply;
28 import net.pterodactylus.sone.notify.ListNotificationFilters;
29 import net.pterodactylus.sone.web.page.FreenetRequest;
30 import net.pterodactylus.util.collection.Pagination;
31 import net.pterodactylus.util.number.Numbers;
32 import net.pterodactylus.util.template.Template;
33 import net.pterodactylus.util.template.TemplateContext;
34
35 /**
36  * Page that displays all new posts and replies. The posts are filtered using
37  * {@link ListNotificationFilters#filterPosts(java.util.Collection, net.pterodactylus.sone.data.Sone)}
38  * and sorted by time.
39  *
40  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
41  */
42 public class NewPage extends SoneTemplatePage {
43
44         /**
45          * Creates a new “new posts and replies” page.
46          *
47          * @param template
48          *            The template to render
49          * @param webInterface
50          *            The Sone web interface
51          */
52         public NewPage(Template template, WebInterface webInterface) {
53                 super("new.html", template, "Page.New.Title", webInterface);
54         }
55
56         //
57         // SONETEMPLATEPAGE METHODS
58         //
59
60         /**
61          * {@inheritDoc}
62          */
63         @Override
64         protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
65                 super.processTemplate(request, templateContext);
66
67                 /* collect new elements from notifications. */
68                 Set<Post> posts = new HashSet<Post>(webInterface.getNewPosts());
69                 for (PostReply reply : webInterface.getNewReplies()) {
70                         posts.add(reply.getPost().get());
71                 }
72
73                 /* filter and sort them. */
74                 List<Post> sortedPosts = ListNotificationFilters.filterPosts(new ArrayList<Post>(posts), webInterface.getCurrentSone(request.getToadletContext(), false));
75                 Collections.sort(sortedPosts, Post.TIME_COMPARATOR);
76
77                 /* paginate them. */
78                 Pagination<Post> pagination = new Pagination<Post>(sortedPosts, webInterface.getCore().getPreferences().getPostsPerPage()).setPage(Numbers.safeParseInteger(request.getHttpRequest().getParam("page"), 0));
79                 templateContext.set("pagination", pagination);
80                 templateContext.set("posts", pagination.getItems());
81         }
82
83 }