🚧 Add Loaders to all template-using pages
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / IndexPage.kt
1 package net.pterodactylus.sone.web.pages
2
3 import net.pterodactylus.sone.data.Sone
4 import net.pterodactylus.sone.main.*
5 import net.pterodactylus.sone.notify.PostVisibilityFilter
6 import net.pterodactylus.sone.utils.paginate
7 import net.pterodactylus.sone.utils.parameters
8 import net.pterodactylus.sone.web.WebInterface
9 import net.pterodactylus.sone.web.page.*
10 import net.pterodactylus.util.template.Template
11 import net.pterodactylus.util.template.TemplateContext
12 import javax.inject.Inject
13
14 /**
15  * The index page shows the main page of Sone. This page will contain the posts
16  * of all friends of the current user.
17  */
18 @MenuName("Index")
19 class IndexPage @Inject constructor(template: Template, webInterface: WebInterface, loaders: Loaders, private val postVisibilityFilter: PostVisibilityFilter) :
20                 LoggedInPage("index.html", template, "Page.Index.Title", webInterface, loaders) {
21
22         override fun handleRequest(soneRequest: SoneRequest, currentSone: Sone, templateContext: TemplateContext) {
23                 (currentSone.posts +
24                                 currentSone.friends
25                                                 .mapNotNull(soneRequest.core::getSone)
26                                                 .flatMap { it.posts } +
27                                 soneRequest.core.getDirectedPosts(currentSone.id)
28                                 ).distinct()
29                                 .filter { postVisibilityFilter.isVisible(currentSone).apply(it) }
30                                 .sortedByDescending { it.time }
31                                 .let { posts ->
32                                         posts.paginate(soneRequest.core.preferences.postsPerPage)
33                                                         .turnTo(soneRequest.parameters["page"]?.toIntOrNull() ?: 0)
34                                                         .let { pagination ->
35                                                                 templateContext["pagination"] = pagination
36                                                                 templateContext["posts"] = pagination.items
37                                                         }
38                                 }
39         }
40
41 }