597734975eb0b940947cd67ac77b91a138a6539d
[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 static net.pterodactylus.sone.utils.NumberParsers.parseInt;
21
22 import java.util.ArrayList;
23 import java.util.Collections;
24 import java.util.HashSet;
25 import java.util.List;
26 import java.util.Set;
27
28 import com.google.common.collect.Collections2;
29
30 import net.pterodactylus.sone.data.Post;
31 import net.pterodactylus.sone.data.PostReply;
32 import net.pterodactylus.sone.notify.ListNotificationFilters;
33 import net.pterodactylus.sone.web.page.FreenetRequest;
34 import net.pterodactylus.util.collection.Pagination;
35 import net.pterodactylus.util.template.Template;
36 import net.pterodactylus.util.template.TemplateContext;
37
38 /**
39  * Page that displays all new posts and replies. The posts are filtered using
40  * {@link ListNotificationFilters#filterPosts(java.util.Collection, net.pterodactylus.sone.data.Sone)}
41  * and sorted by time.
42  *
43  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
44  */
45 public class NewPage extends SoneTemplatePage {
46
47         /**
48          * Creates a new “new posts and replies” page.
49          *
50          * @param template
51          *            The template to render
52          * @param webInterface
53          *            The Sone web interface
54          */
55         public NewPage(Template template, WebInterface webInterface) {
56                 super("new.html", template, "Page.New.Title", webInterface);
57         }
58
59         //
60         // SONETEMPLATEPAGE METHODS
61         //
62
63         /**
64          * {@inheritDoc}
65          */
66         @Override
67         protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
68                 super.processTemplate(request, templateContext);
69
70                 /* collect new elements from notifications. */
71                 Set<Post> posts = new HashSet<Post>(webInterface.getNewPosts());
72                 for (PostReply reply : Collections2.filter(webInterface.getNewReplies(), PostReply.HAS_POST_FILTER)) {
73                         posts.add(reply.getPost().get());
74                 }
75
76                 /* filter and sort them. */
77                 List<Post> sortedPosts = ListNotificationFilters.filterPosts(new ArrayList<Post>(posts), webInterface.getCurrentSone(request.getToadletContext(), false));
78                 Collections.sort(sortedPosts, Post.TIME_COMPARATOR);
79
80                 /* paginate them. */
81                 Pagination<Post> pagination = new Pagination<Post>(sortedPosts, webInterface.getCore().getPreferences().getPostsPerPage()).setPage(parseInt(request.getHttpRequest().getParam("page"), 0));
82                 templateContext.set("pagination", pagination);
83                 templateContext.set("posts", pagination.getItems());
84         }
85
86 }