X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffcp%2FLikePostCommand.java;h=058045ab20e0023ed03eabdaa5b5e28ce7e94995;hp=42ca40960e559d87c1d4b624d6072ee3757a9bb3;hb=faf66247a34f64946990a985d2ea3003465969cb;hpb=6326513ecf086da2a2909a0d2a61913078b2870a diff --git a/src/main/java/net/pterodactylus/sone/fcp/LikePostCommand.java b/src/main/java/net/pterodactylus/sone/fcp/LikePostCommand.java index 42ca409..058045a 100644 --- a/src/main/java/net/pterodactylus/sone/fcp/LikePostCommand.java +++ b/src/main/java/net/pterodactylus/sone/fcp/LikePostCommand.java @@ -1,5 +1,5 @@ /* - * Sone - LikePostCommand.java - Copyright © 2011 David Roden + * Sone - LikePostCommand.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 @@ -23,12 +23,9 @@ import net.pterodactylus.sone.data.Sone; import net.pterodactylus.sone.freenet.SimpleFieldSetBuilder; import net.pterodactylus.sone.freenet.fcp.FcpException; import freenet.support.SimpleFieldSet; -import freenet.support.api.Bucket; /** * Implements the “LikePost” FCP command which allows the user to like a post. - * - * @author David ‘Bombe’ Roden */ public class LikePostCommand extends AbstractSoneCommand { @@ -39,18 +36,18 @@ public class LikePostCommand extends AbstractSoneCommand { * The Sone core */ protected LikePostCommand(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"); - Sone sone = getSone(parameters, "Sone"); + Sone sone = getSone(parameters, "Sone", true); sone.addLikedPostId(post.getId()); - return new Response(new SimpleFieldSetBuilder().put("Message", "PostLiked").put("LikeCount", getCore().getLikes(post).size()).get()); + return new Response("PostLiked", new SimpleFieldSetBuilder().put("LikeCount", getCore().getLikes(post).size()).get()); } }