X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FIndexPage.java;h=00ccc35ccec41de61ce1ba014d05db4a6398b81a;hb=62ebf3da00001abb841c92128c4fdb57d0795ee2;hp=0e72938b5f89aa55f77da025a6b1822d28aeed4e;hpb=a76953c600f2078049dc12bf1dcbab416716b776;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/IndexPage.java b/src/main/java/net/pterodactylus/sone/web/IndexPage.java index 0e72938..00ccc35 100644 --- a/src/main/java/net/pterodactylus/sone/web/IndexPage.java +++ b/src/main/java/net/pterodactylus/sone/web/IndexPage.java @@ -17,6 +17,12 @@ package net.pterodactylus.sone.web; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +import net.pterodactylus.sone.data.Post; +import net.pterodactylus.sone.data.Sone; import net.pterodactylus.util.template.Template; /** @@ -34,7 +40,7 @@ public class IndexPage extends SoneTemplatePage { * The Sone web interface */ public IndexPage(Template template, WebInterface webInterface) { - super("index.html", template, "Page.Index.Title", webInterface); + super("index.html", template, "Page.Index.Title", webInterface, true); } // @@ -45,8 +51,19 @@ public class IndexPage extends SoneTemplatePage { * {@inheritDoc} */ @Override - protected boolean requiresLogin() { - return true; + protected void processTemplate(Request request, Template template) throws RedirectException { + super.processTemplate(request, template); + Sone sone = getCurrentSone(request.getToadletContext()); + List allPosts = new ArrayList(); + allPosts.addAll(sone.getPosts()); + for (String friendSoneId : sone.getFriends()) { + if (!webInterface.getCore().hasSone(friendSoneId)) { + continue; + } + allPosts.addAll(webInterface.getCore().getSone(friendSoneId).getPosts()); + } + Collections.sort(allPosts, Post.TIME_COMPARATOR); + template.set("posts", allPosts); } }