1 package net.pterodactylus.sone.web.pages
3 import net.pterodactylus.sone.data.Sone
4 import net.pterodactylus.sone.notify.PostVisibilityFilter
5 import net.pterodactylus.sone.utils.paginate
6 import net.pterodactylus.sone.utils.parameters
7 import net.pterodactylus.sone.web.WebInterface
8 import net.pterodactylus.sone.web.page.FreenetRequest
9 import net.pterodactylus.util.template.Template
10 import net.pterodactylus.util.template.TemplateContext
11 import javax.inject.Inject
14 * The index page shows the main page of Sone. This page will contain the posts
15 * of all friends of the current user.
17 class IndexPage @Inject constructor(template: Template, webInterface: WebInterface, private val postVisibilityFilter: PostVisibilityFilter) :
18 LoggedInPage("index.html", template, "Page.Index.Title", webInterface) {
20 override fun handleRequest(freenetRequest: FreenetRequest, currentSone: Sone, templateContext: TemplateContext) {
23 .mapNotNull(webInterface.core::getSone)
24 .flatMap { it.posts } +
25 webInterface.core.getDirectedPosts(currentSone.id)
27 .filter { postVisibilityFilter.isVisible(currentSone).apply(it) }
28 .sortedByDescending { it.time }
30 posts.paginate(webInterface.core.preferences.postsPerPage)
31 .turnTo(freenetRequest.parameters["page"]?.toIntOrNull() ?: 0)
33 templateContext["pagination"] = pagination
34 templateContext["posts"] = pagination.items