X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FUnfollowSonePage.java;h=e026a9a588a0a4d7dfaf52079b47c6d616c3c05a;hb=85fd1173da553ee8c1afbe0c4638cc9bbce8d44f;hp=6a9466d5e3d599d470d8df6837d4046810546c3b;hpb=5276a350f8a43e23d1cd3e30f0b8a815068f9e21;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java b/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java index 6a9466d..e026a9a 100644 --- a/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java +++ b/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java @@ -20,6 +20,7 @@ package net.pterodactylus.sone.web; import net.pterodactylus.sone.data.Sone; import net.pterodactylus.sone.web.page.Page.Request.Method; import net.pterodactylus.util.template.Template; +import net.pterodactylus.util.template.TemplateContext; /** * This page lets the user unfollow another Sone. @@ -35,7 +36,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); } // @@ -46,30 +47,16 @@ public class UnfollowSonePage extends SoneTemplatePage { * {@inheritDoc} */ @Override - protected void processTemplate(Request request, Template template) throws RedirectException { - super.processTemplate(request, template); + protected void processTemplate(Request request, TemplateContext templateContext) throws RedirectException { + super.processTemplate(request, templateContext); if (request.getMethod() == Method.POST) { - String soneId = request.getHttpRequest().getPartAsStringFailsafe("sone", 36); - String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64); + String soneId = request.getHttpRequest().getPartAsStringFailsafe("sone", 44); + String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 256); Sone currentSone = getCurrentSone(request.getToadletContext()); - Sone sone = webInterface.core().getSone(soneId); - if (!sone.equals(currentSone)) { - currentSone.removeFriend(sone); - } + currentSone.removeFriend(soneId); + webInterface.getCore().saveSone(currentSone); throw new RedirectException(returnPage); } } - // - // SONETEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected boolean requiresLogin() { - return true; - } - }