X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FDeleteReplyAjaxPage.java;h=e4905f5486d24f6f11009b12d59055a6065eb6c3;hp=75f4b5b0b295999881c11096eb759092c0f8a5d6;hb=419098bcd6215125408b29e60bd888e60979d37b;hpb=01e3bb4076653709656ec3f2e1faf6ba604f75f4 diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/DeleteReplyAjaxPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/DeleteReplyAjaxPage.java index 75f4b5b..e4905f5 100644 --- a/src/main/java/net/pterodactylus/sone/web/ajax/DeleteReplyAjaxPage.java +++ b/src/main/java/net/pterodactylus/sone/web/ajax/DeleteReplyAjaxPage.java @@ -1,5 +1,5 @@ /* - * Sone - DeletePostAjaxPage.java - Copyright © 2010 David Roden + * Sone - DeleteReplyAjaxPage.java - Copyright © 2010–2015 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,10 +17,11 @@ package net.pterodactylus.sone.web.ajax; -import net.pterodactylus.sone.data.Reply; -import net.pterodactylus.sone.data.Sone; +import com.google.common.base.Optional; + +import net.pterodactylus.sone.data.PostReply; import net.pterodactylus.sone.web.WebInterface; -import net.pterodactylus.util.json.JsonObject; +import net.pterodactylus.sone.web.page.FreenetRequest; /** * This AJAX page deletes a reply. @@ -36,7 +37,7 @@ public class DeleteReplyAjaxPage extends JsonPage { * The Sone web interface */ public DeleteReplyAjaxPage(WebInterface webInterface) { - super("ajax/deleteReply.ajax", webInterface); + super("deleteReply.ajax", webInterface); } // @@ -47,21 +48,17 @@ public class DeleteReplyAjaxPage extends JsonPage { * {@inheritDoc} */ @Override - protected JsonObject createJsonObject(Request request) { + protected JsonReturnObject createJsonObject(FreenetRequest request) { String replyId = request.getHttpRequest().getParam("reply"); - Reply reply = webInterface.core().getReply(replyId); - Sone currentSone = getCurrentSone(request.getToadletContext()); - if (reply == null) { - return new JsonObject().put("success", false).put("error", "invalid-reply-id"); - } - if (currentSone == null) { - return new JsonObject().put("success", false).put("error", "auth-required"); + Optional reply = webInterface.getCore().getPostReply(replyId); + if (!reply.isPresent()) { + return createErrorJsonObject("invalid-reply-id"); } - if (!reply.getSone().equals(currentSone)) { - return new JsonObject().put("success", false).put("error", "not-authorized"); + if (!reply.get().getSone().isLocal()) { + return createErrorJsonObject("not-authorized"); } - webInterface.core().deleteReply(reply); - return new JsonObject().put("success", true); + webInterface.getCore().deleteReply(reply.get()); + return createSuccessJsonObject(); } }