5946a57663c2638714c9dceb7b2721ddb3c2e3d6
[Sone.git] / src / main / java / net / pterodactylus / sone / web / pages / IndexPage.java
1 /*
2  * Sone - IndexPage.java - Copyright © 2010–2016 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.pages;
19
20 import static net.pterodactylus.sone.utils.NumberParsers.parseInt;
21
22 import java.util.ArrayList;
23 import java.util.Collection;
24 import java.util.Collections;
25 import java.util.List;
26
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.WebInterface;
31 import net.pterodactylus.sone.web.page.FreenetRequest;
32 import net.pterodactylus.util.collection.Pagination;
33 import net.pterodactylus.util.template.Template;
34 import net.pterodactylus.util.template.TemplateContext;
35
36 import com.google.common.base.Optional;
37 import com.google.common.collect.Collections2;
38
39 /**
40  * The index page shows the main page of Sone. This page will contain the posts
41  * of all friends of the current user.
42  *
43  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
44  */
45 public class IndexPage extends SoneTemplatePage {
46
47         private final PostVisibilityFilter postVisibilityFilter;
48
49         public IndexPage(Template template, WebInterface webInterface, PostVisibilityFilter postVisibilityFilter) {
50                 super("index.html", template, "Page.Index.Title", webInterface, true);
51                 this.postVisibilityFilter = postVisibilityFilter;
52         }
53
54         //
55         // TEMPLATEPAGE METHODS
56         //
57
58         /**
59          * {@inheritDoc}
60          */
61         @Override
62         protected void handleRequest(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
63                 final Sone currentSone = getCurrentSone(request.getToadletContext());
64                 Collection<Post> allPosts = new ArrayList<Post>();
65                 allPosts.addAll(currentSone.getPosts());
66                 for (String friendSoneId : currentSone.getFriends()) {
67                         Optional<Sone> friendSone = webInterface.getCore().getSone(friendSoneId);
68                         if (!friendSone.isPresent()) {
69                                 continue;
70                         }
71                         allPosts.addAll(friendSone.get().getPosts());
72                 }
73                 for (Sone sone : webInterface.getCore().getSones()) {
74                         for (Post post : sone.getPosts()) {
75                                 if (currentSone.equals(post.getRecipient().orNull()) && !allPosts.contains(post)) {
76                                         allPosts.add(post);
77                                 }
78                         }
79                 }
80                 allPosts = Collections2.filter(allPosts, postVisibilityFilter.isVisible(currentSone));
81                 List<Post> sortedPosts = new ArrayList<Post>(allPosts);
82                 Collections.sort(sortedPosts, Post.NEWEST_FIRST);
83                 Pagination<Post> pagination = new Pagination<Post>(sortedPosts, webInterface.getCore().getPreferences().getPostsPerPage()).setPage(parseInt(request.getHttpRequest().getParam("page"), 0));
84                 templateContext.set("pagination", pagination);
85                 templateContext.set("posts", pagination.getItems());
86         }
87
88 }