Fix ALL the logging!
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ImageBrowserPage.java
index ed31283..5bb75d1 100644 (file)
 
 package net.pterodactylus.sone.web;
 
+import java.net.URI;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
 import net.pterodactylus.sone.data.Album;
 import net.pterodactylus.sone.data.Image;
 import net.pterodactylus.sone.data.Sone;
@@ -67,13 +72,35 @@ public class ImageBrowserPage extends SoneTemplatePage {
                        templateContext.set("image", image);
                        return;
                }
-               Sone sone = getCurrentSone(request.getToadletContext(), false);
                String soneId = request.getHttpRequest().getParam("sone", null);
                if (soneId != null) {
-                       sone = webInterface.getCore().getSone(soneId, false);
+                       Sone sone = webInterface.getCore().getSone(soneId, false);
+                       templateContext.set("soneRequested", true);
+                       templateContext.set("sone", sone);
+                       return;
                }
+               String mode = request.getHttpRequest().getParam("mode", null);
+               if ("gallery".equals(mode)) {
+                       templateContext.set("galleryRequested", true);
+                       List<Album> albums = new ArrayList<Album>();
+                       for (Sone sone : webInterface.getCore().getSones()) {
+                               albums.addAll(sone.getAllAlbums());
+                       }
+                       Collections.sort(albums, Album.TITLE_COMPARATOR);
+                       templateContext.set("albums", albums);
+                       return;
+               }
+               Sone sone = getCurrentSone(request.getToadletContext(), false);
                templateContext.set("soneRequested", true);
                templateContext.set("sone", sone);
        }
 
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       public boolean isLinkExcepted(URI link) {
+               return true;
+       }
+
 }