Replace utils’ Numbers by Guava’s Optional and Ints/Longs.tryParse.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ImageBrowserPage.java
1 /*
2  * Sone - ImageBrowserPage.java - Copyright © 2011–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.net.URI;
21 import java.util.ArrayList;
22 import java.util.Collections;
23 import java.util.List;
24
25 import net.pterodactylus.sone.data.Album;
26 import net.pterodactylus.sone.data.Image;
27 import net.pterodactylus.sone.data.Sone;
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.primitives.Ints;
35
36 /**
37  * The image browser page is the entry page for the image management.
38  *
39  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
40  */
41 public class ImageBrowserPage extends SoneTemplatePage {
42
43         /**
44          * Creates a new image browser page.
45          *
46          * @param template
47          *            The template to render
48          * @param webInterface
49          *            The Sone web interface
50          */
51         public ImageBrowserPage(Template template, WebInterface webInterface) {
52                 super("imageBrowser.html", template, "Page.ImageBrowser.Title", webInterface, true);
53         }
54
55         //
56         // SONETEMPLATEPAGE METHODS
57         //
58
59         /**
60          * {@inheritDoc}
61          */
62         @Override
63         protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
64                 super.processTemplate(request, templateContext);
65                 String albumId = request.getHttpRequest().getParam("album", null);
66                 if (albumId != null) {
67                         Album album = webInterface.getCore().getAlbum(albumId, false);
68                         templateContext.set("albumRequested", true);
69                         templateContext.set("album", album);
70                         templateContext.set("page", request.getHttpRequest().getParam("page"));
71                         return;
72                 }
73                 String imageId = request.getHttpRequest().getParam("image", null);
74                 if (imageId != null) {
75                         Image image = webInterface.getCore().getImage(imageId, false);
76                         templateContext.set("imageRequested", true);
77                         templateContext.set("image", image);
78                         return;
79                 }
80                 String soneId = request.getHttpRequest().getParam("sone", null);
81                 if (soneId != null) {
82                         Sone sone = webInterface.getCore().getSone(soneId, false);
83                         templateContext.set("soneRequested", true);
84                         templateContext.set("sone", sone);
85                         return;
86                 }
87                 String mode = request.getHttpRequest().getParam("mode", null);
88                 if ("gallery".equals(mode)) {
89                         templateContext.set("galleryRequested", true);
90                         List<Album> albums = new ArrayList<Album>();
91                         for (Sone sone : webInterface.getCore().getSones()) {
92                                 albums.addAll(sone.getAllAlbums());
93                         }
94                         Collections.sort(albums, Album.TITLE_COMPARATOR);
95                         Pagination<Album> albumPagination = new Pagination<Album>(albums, 12).setPage(Optional.fromNullable(Ints.tryParse(request.getHttpRequest().getParam("page"))).or(0));
96                         templateContext.set("albumPagination", albumPagination);
97                         templateContext.set("albums", albumPagination.getItems());
98                         return;
99                 }
100                 Sone sone = getCurrentSone(request.getToadletContext(), false);
101                 templateContext.set("soneRequested", true);
102                 templateContext.set("sone", sone);
103         }
104
105         /**
106          * {@inheritDoc}
107          */
108         @Override
109         public boolean isLinkExcepted(URI link) {
110                 return true;
111         }
112
113 }