2 * Sone - IndexPage.java - Copyright © 2010–2016 David Roden
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.
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.
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/>.
18 package net.pterodactylus.sone.web;
20 import static net.pterodactylus.sone.utils.NumberParsers.parseInt;
22 import java.util.ArrayList;
23 import java.util.Collection;
24 import java.util.Collections;
25 import java.util.List;
27 import net.pterodactylus.sone.data.Post;
28 import net.pterodactylus.sone.data.Sone;
29 import net.pterodactylus.sone.notify.PostVisibilityFilter;
30 import net.pterodactylus.sone.web.page.FreenetRequest;
31 import net.pterodactylus.util.collection.Pagination;
32 import net.pterodactylus.util.template.Template;
33 import net.pterodactylus.util.template.TemplateContext;
35 import com.google.common.base.Optional;
36 import com.google.common.collect.Collections2;
39 * The index page shows the main page of Sone. This page will contain the posts
40 * of all friends of the current user.
42 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
44 public class IndexPage extends SoneTemplatePage {
46 private final PostVisibilityFilter postVisibilityFilter;
48 public IndexPage(Template template, WebInterface webInterface, PostVisibilityFilter postVisibilityFilter) {
49 super("index.html", template, "Page.Index.Title", webInterface, true);
50 this.postVisibilityFilter = postVisibilityFilter;
54 // TEMPLATEPAGE METHODS
61 protected void handleRequest(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
62 final Sone currentSone = getCurrentSone(request.getToadletContext());
63 Collection<Post> allPosts = new ArrayList<Post>();
64 allPosts.addAll(currentSone.getPosts());
65 for (String friendSoneId : currentSone.getFriends()) {
66 Optional<Sone> friendSone = webInterface.getCore().getSone(friendSoneId);
67 if (!friendSone.isPresent()) {
70 allPosts.addAll(friendSone.get().getPosts());
72 for (Sone sone : webInterface.getCore().getSones()) {
73 for (Post post : sone.getPosts()) {
74 if (currentSone.equals(post.getRecipient().orNull()) && !allPosts.contains(post)) {
79 allPosts = Collections2.filter(allPosts, postVisibilityFilter.isVisible(currentSone));
80 List<Post> sortedPosts = new ArrayList<Post>(allPosts);
81 Collections.sort(sortedPosts, Post.TIME_COMPARATOR);
82 Pagination<Post> pagination = new Pagination<Post>(sortedPosts, webInterface.getCore().getPreferences().getPostsPerPage()).setPage(parseInt(request.getHttpRequest().getParam("page"), 0));
83 templateContext.set("pagination", pagination);
84 templateContext.set("posts", pagination.getItems());