X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FDeleteSonePage.java;h=ae01573b604d92974fb8e425b1c5c1f07b923f71;hb=6db033602e7c17efc40a4a19efe705d67832fc1a;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..ae01573 100644 --- a/src/main/java/net/pterodactylus/sone/web/DeleteSonePage.java +++ b/src/main/java/net/pterodactylus/sone/web/DeleteSonePage.java @@ -17,6 +17,8 @@ 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; /** @@ -37,7 +39,7 @@ 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); } // @@ -50,18 +52,13 @@ public class DeleteSonePage extends SoneTemplatePage { @Override protected void processTemplate(Request request, Template template) throws RedirectException { super.processTemplate(request, template); - } - - // - // SONETEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected boolean requiresLogin() { - return true; + if (request.getMethod() == Method.POST) { + if (request.getHttpRequest().isPartSet("deleteSone")) { + Sone currentSone = getCurrentSone(request.getToadletContext()); + webInterface.getCore().deleteSone(currentSone); + } + throw new RedirectException("index.html"); + } } }