Replace utils’ Numbers by Guava’s Optional and Ints/Longs.tryParse.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / IndexPage.java
1 /*
2  * Sone - IndexPage.java - Copyright © 2010–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.Collection;
22 import java.util.Collections;
23 import java.util.List;
24
25 import net.pterodactylus.sone.data.Post;
26 import net.pterodactylus.sone.data.Sone;
27 import net.pterodactylus.sone.notify.ListNotificationFilters;
28 import net.pterodactylus.sone.web.page.FreenetRequest;
29 import net.pterodactylus.util.collection.Pagination;
30 import net.pterodactylus.util.template.Template;
31 import net.pterodactylus.util.template.TemplateContext;
32
33 import com.google.common.base.Optional;
34 import com.google.common.base.Predicate;
35 import com.google.common.collect.Collections2;
36 import com.google.common.primitives.Ints;
37
38 /**
39  * The index page shows the main page of Sone. This page will contain the posts
40  * of all friends of the current user.
41  *
42  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
43  */
44 public class IndexPage extends SoneTemplatePage {
45
46         /**
47          * @param template
48          *            The template to render
49          * @param webInterface
50          *            The Sone web interface
51          */
52         public IndexPage(Template template, WebInterface webInterface) {
53                 super("index.html", template, "Page.Index.Title", webInterface, true);
54         }
55
56         //
57         // TEMPLATEPAGE 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                 final Sone currentSone = getCurrentSone(request.getToadletContext());
67                 Collection<Post> allPosts = new ArrayList<Post>();
68                 allPosts.addAll(currentSone.getPosts());
69                 for (String friendSoneId : currentSone.getFriends()) {
70                         if (!webInterface.getCore().hasSone(friendSoneId)) {
71                                 continue;
72                         }
73                         allPosts.addAll(webInterface.getCore().getSone(friendSoneId).getPosts());
74                 }
75                 for (Sone sone : webInterface.getCore().getSones()) {
76                         for (Post post : sone.getPosts()) {
77                                 if (currentSone.equals(post.getRecipient()) && !allPosts.contains(post)) {
78                                         allPosts.add(post);
79                                 }
80                         }
81                 }
82                 allPosts = Collections2.filter(allPosts, new Predicate<Post>() {
83
84                         @Override
85                         public boolean apply(Post post) {
86                                 return ListNotificationFilters.isPostVisible(currentSone, post);
87                         }
88                 });
89                 allPosts = Collections2.filter(allPosts, Post.FUTURE_POSTS_FILTER);
90                 List<Post> sortedPosts = new ArrayList<Post>(allPosts);
91                 Collections.sort(sortedPosts, Post.TIME_COMPARATOR);
92                 Pagination<Post> pagination = new Pagination<Post>(sortedPosts, webInterface.getCore().getPreferences().getPostsPerPage()).setPage(Optional.fromNullable(Ints.tryParse(request.getHttpRequest().getParam("page"))).or(0));
93                 templateContext.set("pagination", pagination);
94                 templateContext.set("posts", pagination.getItems());
95         }
96
97 }