X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FFollowSonePage.java;h=4083b9985eb34e414109c722c806697f88648c97;hp=39e08f37b134c6c279ede87642a2e1740441c528;hb=c9e306ac8e3ada846e87a0cc256a20fc148f381c;hpb=1d180966fe4bce6bc40cb097782212fb9182506d diff --git a/src/main/java/net/pterodactylus/sone/web/FollowSonePage.java b/src/main/java/net/pterodactylus/sone/web/FollowSonePage.java index 39e08f3..4083b99 100644 --- a/src/main/java/net/pterodactylus/sone/web/FollowSonePage.java +++ b/src/main/java/net/pterodactylus/sone/web/FollowSonePage.java @@ -18,8 +18,10 @@ package net.pterodactylus.sone.web; import net.pterodactylus.sone.data.Sone; -import net.pterodactylus.sone.data.SoneShell; +import net.pterodactylus.sone.web.page.FreenetRequest; import net.pterodactylus.util.template.Template; +import net.pterodactylus.util.template.TemplateContext; +import net.pterodactylus.util.web.Method; /** * This page lets the user follow another Sone. @@ -35,7 +37,7 @@ public class FollowSonePage extends SoneTemplatePage { * The Sone web interface */ public FollowSonePage(Template template, WebInterface webInterface) { - super("followSone.html", template, "Page.FollowSone.Title", webInterface); + super("followSone.html", template, "Page.FollowSone.Title", webInterface, true); } // @@ -46,27 +48,20 @@ public class FollowSonePage extends SoneTemplatePage { * {@inheritDoc} */ @Override - protected void processTemplate(Request request, Template template) throws RedirectException { - super.processTemplate(request, template); - String soneId = request.getHttpRequest().getParam("sone"); - Sone currentSone = getCurrentSone(request.getToadletContext()); - Sone sone = webInterface.core().getSone(soneId); - if (!(sone instanceof SoneShell) && !sone.equals(currentSone)) { - currentSone.addFriendSone(sone); + protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException { + super.processTemplate(request, templateContext); + if (request.getMethod() == Method.POST) { + String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 256); + Sone currentSone = getCurrentSone(request.getToadletContext()); + String soneIds = request.getHttpRequest().getPartAsStringFailsafe("sone", 1200); + for (String soneId : soneIds.split("[ ,]+")) { + if (webInterface.getCore().hasSone(soneId)) { + webInterface.getCore().followSone(currentSone, soneId); + webInterface.getCore().markSoneKnown(webInterface.getCore().getSone(soneId)); + } + } + throw new RedirectException(returnPage); } - throw new RedirectException("viewSone.html?sone=" + soneId); - } - - // - // SONETEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected boolean requiresLogin() { - return true; } }