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