37268ecbd576e2acca68a74f428330d1ab351ce8
[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 com.google.common.base.Optional;
26 import com.google.common.collect.FluentIterable;
27
28 import net.pterodactylus.sone.data.Album;
29 import net.pterodactylus.sone.data.Image;
30 import net.pterodactylus.sone.data.Sone;
31 import net.pterodactylus.sone.web.page.FreenetRequest;
32 import net.pterodactylus.util.collection.Pagination;
33 import net.pterodactylus.util.number.Numbers;
34 import net.pterodactylus.util.template.Template;
35 import net.pterodactylus.util.template.TemplateContext;
36
37 /**
38  * The image browser page is the entry page for the image management.
39  *
40  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
41  */
42 public class ImageBrowserPage extends SoneTemplatePage {
43
44         /**
45          * Creates a new image browser page.
46          *
47          * @param template
48          *            The template to render
49          * @param webInterface
50          *            The Sone web interface
51          */
52         public ImageBrowserPage(Template template, WebInterface webInterface) {
53                 super("imageBrowser.html", template, "Page.ImageBrowser.Title", webInterface, true);
54         }
55
56         //
57         // SONETEMPLATEPAGE METHODS
58         //
59
60         /**
61          * {@inheritDoc}
62          */
63         @Override
64         protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
65                 super.processTemplate(request, templateContext);
66                 String albumId = request.getHttpRequest().getParam("album", null);
67                 if (albumId != null) {
68                         Album album = webInterface.getCore().getAlbum(albumId, false);
69                         templateContext.set("albumRequested", true);
70                         templateContext.set("album", album);
71                         templateContext.set("page", request.getHttpRequest().getParam("page"));
72                         return;
73                 }
74                 String imageId = request.getHttpRequest().getParam("image", null);
75                 if (imageId != null) {
76                         Image image = webInterface.getCore().getImage(imageId, false);
77                         templateContext.set("imageRequested", true);
78                         templateContext.set("image", image);
79                         return;
80                 }
81                 String soneId = request.getHttpRequest().getParam("sone", null);
82                 if (soneId != null) {
83                         Optional<Sone> sone = webInterface.getCore().getSone(soneId);
84                         templateContext.set("soneRequested", true);
85                         templateContext.set("sone", sone.orNull());
86                         return;
87                 }
88                 String mode = request.getHttpRequest().getParam("mode", null);
89                 if ("gallery".equals(mode)) {
90                         templateContext.set("galleryRequested", true);
91                         List<Album> albums = new ArrayList<Album>();
92                         for (Sone sone : webInterface.getCore().getSones()) {
93                                 albums.addAll(FluentIterable.from(sone.getAlbums()).transformAndConcat(Album.FLATTENER).toList());
94                         }
95                         Collections.sort(albums, Album.TITLE_COMPARATOR);
96                         Pagination<Album> albumPagination = new Pagination<Album>(albums, 12).setPage(Numbers.safeParseInteger(request.getHttpRequest().getParam("page"), 0));
97                         templateContext.set("albumPagination", albumPagination);
98                         templateContext.set("albums", albumPagination.getItems());
99                         return;
100                 }
101                 Sone sone = getCurrentSone(request.getToadletContext(), false);
102                 templateContext.set("soneRequested", true);
103                 templateContext.set("sone", sone);
104         }
105
106         /**
107          * {@inheritDoc}
108          */
109         @Override
110         public boolean isLinkExcepted(URI link) {
111                 return true;
112         }
113
114 }