X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FDeleteSonePage.java;h=c62331048d5140849054f0cf6154a67892ef0988;hb=f10d40f746f6c7c716f783da11791d28c1117447;hp=4cccc633840b12bc25e548f3633f22315291ce91;hpb=642ce4ea9884d3f92e952ab29b529a8cce87c3d2;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/DeleteSonePage.java b/src/main/java/net/pterodactylus/sone/web/DeleteSonePage.java index 4cccc63..c623310 100644 --- a/src/main/java/net/pterodactylus/sone/web/DeleteSonePage.java +++ b/src/main/java/net/pterodactylus/sone/web/DeleteSonePage.java @@ -1,5 +1,5 @@ /* - * FreenetSone - DeleteSonePage.java - Copyright © 2010 David Roden + * Sone - DeleteSonePage.java - Copyright © 2010–2013 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 @@ -17,7 +17,11 @@ 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; /** * Lets the user delete a Sone. Of course the Sone is not really deleted from @@ -37,31 +41,23 @@ public class DeleteSonePage extends SoneTemplatePage { * The Sone web interface */ public DeleteSonePage(Template template, WebInterface webInterface) { - super("deleteSone.html", template, "Page.DeleteSone.Title", webInterface); + super("deleteSone.html", template, "Page.DeleteSone.Title", webInterface, true); } // // TEMPLATEPAGE METHODS // - /** - * {@inheritDoc} - */ - @Override - protected void processTemplate(Request request, Template template) throws RedirectException { - super.processTemplate(request, template); - } - - // - // SONETEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ @Override - protected boolean requiresLogin() { - return true; + protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException { + super.processTemplate(request, templateContext); + if (request.getMethod() == Method.POST) { + if (request.getHttpRequest().isPartSet("deleteSone")) { + Sone currentSone = getCurrentSone(request.getToadletContext()); + webInterface.getCore().deleteSone(currentSone); + } + throw new RedirectException("index.html"); + } } }