X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fpages%2FNewPage.kt;fp=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fpages%2FNewPage.kt;h=d1841d495e3e7147f08cd55925f50a68755fc283;hb=65e3c95fe9d44b5654b2ac76fc09b9aaac50ca9c;hp=0000000000000000000000000000000000000000;hpb=4931e11b371842eea6fdf9bea7504eed63ea298c;p=Sone.git diff --git a/src/main/kotlin/net/pterodactylus/sone/web/pages/NewPage.kt b/src/main/kotlin/net/pterodactylus/sone/web/pages/NewPage.kt new file mode 100644 index 0000000..d1841d4 --- /dev/null +++ b/src/main/kotlin/net/pterodactylus/sone/web/pages/NewPage.kt @@ -0,0 +1,33 @@ +package net.pterodactylus.sone.web.pages + +import net.pterodactylus.sone.utils.Pagination +import net.pterodactylus.sone.utils.mapPresent +import net.pterodactylus.sone.utils.parameters +import net.pterodactylus.sone.web.WebInterface +import net.pterodactylus.sone.web.page.FreenetRequest +import net.pterodactylus.util.template.Template +import net.pterodactylus.util.template.TemplateContext + +/** + * Page that displays all new posts and replies. The posts are filtered using + * [PostVisibilityFilter.isPostVisible(Sone, Post)] and sorted by time. + */ +class NewPage(template: Template, webInterface: WebInterface): + SoneTemplatePage("new.html", template, "Page.New.Title", webInterface, false) { + + override fun handleRequest(request: FreenetRequest, templateContext: TemplateContext) = + getCurrentSone(request.toadletContext).let { currentSone -> + (webInterface.getNewPosts(currentSone) + webInterface.getNewReplies(currentSone).mapPresent { it.post }) + .distinct() + .sortedByDescending { it.time } + .let { posts -> + Pagination(posts, webInterface.core.preferences.postsPerPage).apply { + page = request.parameters["page"]?.toIntOrNull() ?: 0 + }.let { pagination -> + templateContext["pagination"] = pagination + templateContext["posts"] = pagination.items + } + } + } + +}