X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FUnfollowSonePage.java;h=f07880d642796bd379809b81392814d7663626d0;hp=60f6355c583fd9d0bfa42b088994e9506719a09a;hb=c9e306ac8e3ada846e87a0cc256a20fc148f381c;hpb=95a22740635b701511784d477cee57efa75f5f8a diff --git a/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java b/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java index 60f6355..f07880d 100644 --- a/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java +++ b/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java @@ -1,5 +1,5 @@ /* - * Sone - FollowSonePage.java - Copyright © 2010 David Roden + * Sone - UnfollowSonePage.java - Copyright © 2010 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,7 +18,10 @@ package net.pterodactylus.sone.web; import net.pterodactylus.sone.data.Sone; +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 unfollow another Sone. @@ -34,7 +37,7 @@ public class UnfollowSonePage extends SoneTemplatePage { * The Sone web interface */ public UnfollowSonePage(Template template, WebInterface webInterface) { - super("unfollowSone.html", template, "Page.UnfollowSone.Title", webInterface); + super("unfollowSone.html", template, "Page.UnfollowSone.Title", webInterface, true); } // @@ -45,27 +48,17 @@ public class UnfollowSonePage 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.equals(currentSone)) { - currentSone.removeFriend(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", 2000); + for (String soneId : soneIds.split("[ ,]+")) { + webInterface.getCore().unfollowSone(currentSone, soneId); + } + throw new RedirectException(returnPage); } - throw new RedirectException("viewSone.html?sone=" + soneId); - } - - // - // SONETEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected boolean requiresLogin() { - return true; } }