Merge branch 'release-0.6.2'
[Sone.git] / src / main / java / net / pterodactylus / sone / web / IndexPage.java
1 /*
2  * Sone - IndexPage.java - Copyright © 2010 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.List;
23
24 import net.pterodactylus.sone.data.Post;
25 import net.pterodactylus.sone.data.Sone;
26 import net.pterodactylus.util.collection.Pagination;
27 import net.pterodactylus.util.filter.Filters;
28 import net.pterodactylus.util.number.Numbers;
29 import net.pterodactylus.util.template.Template;
30 import net.pterodactylus.util.template.TemplateContext;
31
32 /**
33  * The index page shows the main page of Sone. This page will contain the posts
34  * of all friends of the current user.
35  *
36  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
37  */
38 public class IndexPage extends SoneTemplatePage {
39
40         /**
41          * @param template
42          *            The template to render
43          * @param webInterface
44          *            The Sone web interface
45          */
46         public IndexPage(Template template, WebInterface webInterface) {
47                 super("index.html", template, "Page.Index.Title", webInterface, true);
48         }
49
50         //
51         // TEMPLATEPAGE METHODS
52         //
53
54         /**
55          * {@inheritDoc}
56          */
57         @Override
58         protected void processTemplate(Request request, TemplateContext templateContext) throws RedirectException {
59                 super.processTemplate(request, templateContext);
60                 Sone currentSone = getCurrentSone(request.getToadletContext());
61                 List<Post> allPosts = new ArrayList<Post>();
62                 allPosts.addAll(currentSone.getPosts());
63                 for (String friendSoneId : currentSone.getFriends()) {
64                         if (!webInterface.getCore().hasSone(friendSoneId)) {
65                                 continue;
66                         }
67                         allPosts.addAll(webInterface.getCore().getSone(friendSoneId).getPosts());
68                 }
69                 for (Sone sone : webInterface.getCore().getSones()) {
70                         for (Post post : sone.getPosts()) {
71                                 if (currentSone.equals(post.getRecipient()) && !allPosts.contains(post)) {
72                                         allPosts.add(post);
73                                 }
74                         }
75                 }
76                 allPosts = Filters.filteredList(allPosts, Post.FUTURE_POSTS_FILTER);
77                 Collections.sort(allPosts, Post.TIME_COMPARATOR);
78                 Pagination<Post> pagination = new Pagination<Post>(allPosts, 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 }