9e06c4aecfc08b4c395e883aab326e43f2c250f2
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / ImageBrowserPage.kt
1 package net.pterodactylus.sone.web.pages
2
3 import net.pterodactylus.sone.data.*
4 import net.pterodactylus.sone.main.*
5 import net.pterodactylus.sone.utils.*
6 import net.pterodactylus.sone.web.*
7 import net.pterodactylus.sone.web.page.*
8 import net.pterodactylus.util.template.*
9 import java.net.*
10 import javax.inject.*
11
12 /**
13  * The image browser page is the entry page for the image management.
14  */
15 @MenuName("ImageBrowser")
16 @TemplatePath("/templates/imageBrowser.html")
17 class ImageBrowserPage @Inject constructor(webInterface: WebInterface, loaders: Loaders, templateRenderer: TemplateRenderer):
18                 LoggedInPage("imageBrowser.html", "Page.ImageBrowser.Title", webInterface, loaders, templateRenderer) {
19
20         override fun handleRequest(soneRequest: SoneRequest, currentSone: Sone, templateContext: TemplateContext) {
21                 if ("album" in soneRequest.parameters) {
22                         templateContext["albumRequested"] = true
23                         templateContext["album"] = soneRequest.core.getAlbum(soneRequest.parameters["album"]!!)
24                         templateContext["page"] = soneRequest.parameters["page"]
25                 } else if ("image" in soneRequest.parameters) {
26                         templateContext["imageRequested"] = true
27                         templateContext["image"] = soneRequest.core.getImage(soneRequest.parameters["image"])
28                 } else if (soneRequest.parameters["mode"] == "gallery") {
29                         templateContext["galleryRequested"] = true
30                         soneRequest.core.sones
31                                         .map(Sone::getRootAlbum)
32                                         .flatMap(Album::getAlbums)
33                                         .flatMap { Album.FLATTENER.apply(it)!! }
34                                         .filterNot(Album::isEmpty)
35                                         .sortedBy(Album::getTitle)
36                                         .also { albums ->
37                                                 albums.paginate(soneRequest.core.preferences.imagesPerPage)
38                                                                 .turnTo(soneRequest.parameters["page"]?.toIntOrNull() ?: 0)
39                                                                 .also { pagination ->
40                                                         templateContext["albumPagination"] = pagination
41                                                         templateContext["albums"] = pagination.items
42                                                 }
43                                         }
44                 } else {
45                         templateContext["soneRequested"] = true
46                         templateContext["sone"] = soneRequest.core.getSone(soneRequest.httpRequest.getParam("sone")) ?: currentSone
47                 }
48         }
49
50         override fun isLinkExcepted(link: URI) = true
51
52 }