X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffcp%2FLikePostCommand.java;h=4a88ce10c0a8ce34ba59c7944ed69d5a6fac62c0;hb=2e03e9dddbea4b81aacaf1aa316f5c3ccffd4bf9;hp=214768258e4aa8d9c16ead401f8322d03f86c26c;hpb=45208b1b2ce354f252ef5278bf165395c806c765;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/fcp/LikePostCommand.java b/src/main/java/net/pterodactylus/sone/fcp/LikePostCommand.java index 2147682..4a88ce1 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–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 @@ -39,18 +39,15 @@ 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 { Post post = getPost(parameters, "Post"); - Sone sone = getSone(parameters, "Sone"); - sone.addLikedPostId(post.getId()); - return new Response("PostLiked", new SimpleFieldSetBuilder().put("LikeCount", getCore().getLikes(post).size()).get()); + Sone sone = getMandatoryLocalSone(parameters, "Sone"); + post.like(sone); + return new Response("PostLiked", new SimpleFieldSetBuilder().put("LikeCount", post.getLikes().size()).get()); } }