2 * Sone - BookmarksPage.java - Copyright © 2011–2012 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 java.util.ArrayList;
21 import java.util.Collections;
22 import java.util.List;
25 import net.pterodactylus.sone.data.Post;
26 import net.pterodactylus.sone.web.page.FreenetRequest;
27 import net.pterodactylus.util.collection.Pagination;
28 import net.pterodactylus.util.collection.filter.Filter;
29 import net.pterodactylus.util.collection.filter.Filters;
30 import net.pterodactylus.util.number.Numbers;
31 import net.pterodactylus.util.template.Template;
32 import net.pterodactylus.util.template.TemplateContext;
35 * Page that lets the user browse all his bookmarked posts.
37 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
39 public class BookmarksPage extends SoneTemplatePage {
42 * Creates a new bookmarks page.
45 * The template to render
47 * The Sone web interface
49 public BookmarksPage(Template template, WebInterface webInterface) {
50 super("bookmarks.html", template, "Page.Bookmarks.Title", webInterface);
54 // SONETEMPLATEPAGE METHODS
61 protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
62 super.processTemplate(request, templateContext);
63 Set<Post> allPosts = webInterface.getCore().getBookmarkedPosts();
64 Set<Post> loadedPosts = Filters.filteredSet(allPosts, new Filter<Post>() {
67 public boolean filterObject(Post post) {
68 return post.getSone() != null;
71 List<Post> sortedPosts = new ArrayList<Post>(loadedPosts);
72 Collections.sort(sortedPosts, Post.TIME_COMPARATOR);
73 Pagination<Post> pagination = new Pagination<Post>(sortedPosts, webInterface.getCore().getPreferences().getPostsPerPage()).setPage(Numbers.safeParseInteger(request.getHttpRequest().getParam("page"), 0));
74 templateContext.set("pagination", pagination);
75 templateContext.set("posts", pagination.getItems());
76 templateContext.set("postsNotLoaded", allPosts.size() != loadedPosts.size());