X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffcp%2FDeletePostCommand.java;h=5d599e18798e54ef10b9b4281118b317f19a4fb8;hp=e4e42f0185ddccfeadc3ab41c670dcb865c89394;hb=438378deab1514f0f608d975ef65f5b7aea44ccb;hpb=b8628d48bb269c5acf67f84c078d92a132a630ff diff --git a/src/main/java/net/pterodactylus/sone/fcp/DeletePostCommand.java b/src/main/java/net/pterodactylus/sone/fcp/DeletePostCommand.java index e4e42f0..5d599e1 100644 --- a/src/main/java/net/pterodactylus/sone/fcp/DeletePostCommand.java +++ b/src/main/java/net/pterodactylus/sone/fcp/DeletePostCommand.java @@ -1,5 +1,5 @@ /* - * Sone - DeletePostCommand.java - Copyright © 2011 David Roden + * Sone - DeletePostCommand.java - Copyright © 2011–2020 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 @@ -22,13 +22,11 @@ import net.pterodactylus.sone.data.Post; import net.pterodactylus.sone.freenet.SimpleFieldSetBuilder; import net.pterodactylus.sone.freenet.fcp.FcpException; import freenet.support.SimpleFieldSet; -import freenet.support.api.Bucket; /** * FCP command that deletes a {@link Post}. * * @see Core#deletePost(Post) - * @author David ‘Bombe’ Roden */ public class DeletePostCommand extends AbstractSoneCommand { @@ -39,18 +37,19 @@ public class DeletePostCommand extends AbstractSoneCommand { * The Sone core */ public DeletePostCommand(Core core) { - super(core); + super(core, true); } /** * {@inheritDoc} */ @Override - public Response execute(SimpleFieldSet parameters, Bucket data, AccessType accessType) throws FcpException { + public Response execute(SimpleFieldSet parameters) throws FcpException { Post post = getPost(parameters, "Post"); - if (!getCore().isLocalSone(post.getSone())) { + if (!post.getSone().isLocal()) { return new ErrorResponse(401, "Not allowed."); } + getCore().deletePost(post); return new Response("PostDeleted", new SimpleFieldSetBuilder().get()); }